{
  "info": {
    "_postman_id": "a16376fa-5d4b-4afd-ac19-b2f286075ca0",
    "name": "Cisco IOS-XE 17.18.1 RESTCONF - v2 Part 2 (Deep Path Specs)",
    "description": "Complete Postman collection for Cisco IOS-XE 17.18.1 RESTCONF APIs.\n\n**Auto-generated** from 747 OpenAPI 3.0 specs covering:\n- 34,694 RESTCONF endpoints\n- 58,001 operations (GET/PUT/POST/PATCH/DELETE)\n- 848 YANG modules across 9 categories (v1 + v2 deep-path)\n\n**Setup:**\n1. Import the companion environment: `IOS-XE-RESTCONF.postman_environment.json`\n2. Set your device IP, username, and password in the environment\n3. Disable SSL certificate verification (Settings → General → SSL)\n\n**Authentication:** Uses Basic Auth from environment variables.\n\n**Source:** https://github.com/jeremycohoe/cisco-ios-xe-openapi-swagger",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "basic",
    "basic": [
      {
        "key": "username",
        "value": "{{username}}",
        "type": "string"
      },
      {
        "key": "password",
        "value": "{{password}}",
        "type": "string"
      }
    ]
  },
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "type": "text/javascript",
        "exec": [
          "// Disable SSL verification for self-signed certs",
          "pm.request.headers.add({key: 'Accept', value: 'application/yang-data+json'});"
        ]
      }
    }
  ],
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://{{device}}:{{port}}/restconf",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "4b - IETF v2 (Deep Paths)",
      "description": "19 YANG specs | 438 endpoints | 1122 operations\n\nTree-based deep-path specs with full depth coverage.",
      "item": [
        {
          "name": "ietf-diffserv-action",
          "description": "Cisco IOS-XE IETF - ietf-diffserv-action\n\nIETF standard data from `ietf-diffserv-action` module.\n\n**Root containers:** 6 (marking-cfg, priority-cfg, meter-cfg, min-rate-cfg, max-rate-cfg...)\n**Paths:** 65 | **Operations:** 260\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 65 | Operations: 260",
          "item": [
            {
              "name": "GET Get marking-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:marking-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:marking-cfg"
                  ]
                },
                "description": "Retrieve marking-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace marking-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:marking-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:marking-cfg"
                  ]
                },
                "description": "Create or replace marking-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dscp\": \"46\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update marking-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:marking-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:marking-cfg"
                  ]
                },
                "description": "Partially update marking-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dscp\": \"46\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete marking-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:marking-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:marking-cfg"
                  ]
                },
                "description": "Remove marking-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:marking-cfg/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:marking-cfg",
                    "dscp"
                  ]
                },
                "description": "Retrieve dscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dscp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:marking-cfg/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:marking-cfg",
                    "dscp"
                  ]
                },
                "description": "Create or replace dscp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"46\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dscp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:marking-cfg/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:marking-cfg",
                    "dscp"
                  ]
                },
                "description": "Partially update dscp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"46\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dscp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:marking-cfg/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:marking-cfg",
                    "dscp"
                  ]
                },
                "description": "Remove dscp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get priority-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg"
                  ]
                },
                "description": "Retrieve priority-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace priority-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg"
                  ]
                },
                "description": "Create or replace priority-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"priority-level\": 1,\n  \"rate-burst\": {\n    \"rate\": 1000000,\n    \"absolute-rate-metric\": \"configured-value\",\n    \"absolute-rate-units\": \"configured-value\",\n    \"rate-percent\": \"50\",\n    \"rate-ratio\": 50,\n    \"burst-size\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update priority-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg"
                  ]
                },
                "description": "Partially update priority-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"priority-level\": 1,\n  \"rate-burst\": {\n    \"rate\": 1000000,\n    \"absolute-rate-metric\": \"configured-value\",\n    \"absolute-rate-units\": \"configured-value\",\n    \"rate-percent\": \"50\",\n    \"rate-ratio\": 50,\n    \"burst-size\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete priority-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg"
                  ]
                },
                "description": "Remove priority-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get priority-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/priority-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "priority-level"
                  ]
                },
                "description": "Retrieve priority-level from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace priority-level",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/priority-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "priority-level"
                  ]
                },
                "description": "Create or replace priority-level on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update priority-level",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/priority-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "priority-level"
                  ]
                },
                "description": "Partially update priority-level on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete priority-level",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/priority-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "priority-level"
                  ]
                },
                "description": "Remove priority-level from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rate-burst",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst"
                  ]
                },
                "description": "Retrieve rate-burst from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rate-burst",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst"
                  ]
                },
                "description": "Create or replace rate-burst on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"rate\": 1000000,\n  \"absolute-rate-metric\": \"configured-value\",\n  \"absolute-rate-units\": \"configured-value\",\n  \"rate-percent\": \"50\",\n  \"rate-ratio\": 50,\n  \"burst-size\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rate-burst",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst"
                  ]
                },
                "description": "Partially update rate-burst on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"rate\": 1000000,\n  \"absolute-rate-metric\": \"configured-value\",\n  \"absolute-rate-units\": \"configured-value\",\n  \"rate-percent\": \"50\",\n  \"rate-ratio\": 50,\n  \"burst-size\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rate-burst",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst"
                  ]
                },
                "description": "Remove rate-burst from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "rate"
                  ]
                },
                "description": "Retrieve rate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rate",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "rate"
                  ]
                },
                "description": "Create or replace rate on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1000000",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rate",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "rate"
                  ]
                },
                "description": "Partially update rate on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1000000",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rate",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "rate"
                  ]
                },
                "description": "Remove rate from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get absolute-rate-metric",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/absolute-rate-metric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "absolute-rate-metric"
                  ]
                },
                "description": "Retrieve absolute-rate-metric from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace absolute-rate-metric",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/absolute-rate-metric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "absolute-rate-metric"
                  ]
                },
                "description": "Create or replace absolute-rate-metric on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update absolute-rate-metric",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/absolute-rate-metric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "absolute-rate-metric"
                  ]
                },
                "description": "Partially update absolute-rate-metric on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete absolute-rate-metric",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/absolute-rate-metric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "absolute-rate-metric"
                  ]
                },
                "description": "Remove absolute-rate-metric from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get absolute-rate-units",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/absolute-rate-units",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "absolute-rate-units"
                  ]
                },
                "description": "Retrieve absolute-rate-units from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace absolute-rate-units",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/absolute-rate-units",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "absolute-rate-units"
                  ]
                },
                "description": "Create or replace absolute-rate-units on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update absolute-rate-units",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/absolute-rate-units",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "absolute-rate-units"
                  ]
                },
                "description": "Partially update absolute-rate-units on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete absolute-rate-units",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/absolute-rate-units",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "absolute-rate-units"
                  ]
                },
                "description": "Remove absolute-rate-units from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rate-percent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/rate-percent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "rate-percent"
                  ]
                },
                "description": "Retrieve rate-percent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rate-percent",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/rate-percent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "rate-percent"
                  ]
                },
                "description": "Create or replace rate-percent on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rate-percent",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/rate-percent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "rate-percent"
                  ]
                },
                "description": "Partially update rate-percent on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rate-percent",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/rate-percent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "rate-percent"
                  ]
                },
                "description": "Remove rate-percent from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rate-ratio",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/rate-ratio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "rate-ratio"
                  ]
                },
                "description": "Retrieve rate-ratio from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rate-ratio",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/rate-ratio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "rate-ratio"
                  ]
                },
                "description": "Create or replace rate-ratio on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "50",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rate-ratio",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/rate-ratio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "rate-ratio"
                  ]
                },
                "description": "Partially update rate-ratio on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "50",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rate-ratio",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/rate-ratio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "rate-ratio"
                  ]
                },
                "description": "Remove rate-ratio from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get burst-size",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/burst-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "burst-size"
                  ]
                },
                "description": "Retrieve burst-size from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace burst-size",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/burst-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "burst-size"
                  ]
                },
                "description": "Create or replace burst-size on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update burst-size",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/burst-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "burst-size"
                  ]
                },
                "description": "Partially update burst-size on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete burst-size",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:priority-cfg/rate-burst/burst-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:priority-cfg",
                    "rate-burst",
                    "burst-size"
                  ]
                },
                "description": "Remove burst-size from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get meter-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg"
                  ]
                },
                "description": "Retrieve meter-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace meter-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg"
                  ]
                },
                "description": "Create or replace meter-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"meter-list\": [\n    {\n      \"meter-id\": 1,\n      \"meter-rate\": 1,\n      \"burst-size\": 1,\n      \"color\": {\n        \"classifier-entry-name\": {},\n        \"classifier-entry-descr\": {},\n        \"classifier-entry-filter-operation\": {}\n      },\n      \"succeed-action\": {\n        \"meter-action-type\": {},\n        \"next-meter-id\": {},\n        \"dscp\": {}\n      },\n      \"fail-action\": {\n        \"meter-action-type\": {},\n        \"next-meter-id\": {},\n        \"dscp\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update meter-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg"
                  ]
                },
                "description": "Partially update meter-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"meter-list\": [\n    {\n      \"meter-id\": 1,\n      \"meter-rate\": 1,\n      \"burst-size\": 1,\n      \"color\": {\n        \"classifier-entry-name\": {},\n        \"classifier-entry-descr\": {},\n        \"classifier-entry-filter-operation\": {}\n      },\n      \"succeed-action\": {\n        \"meter-action-type\": {},\n        \"next-meter-id\": {},\n        \"dscp\": {}\n      },\n      \"fail-action\": {\n        \"meter-action-type\": {},\n        \"next-meter-id\": {},\n        \"dscp\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete meter-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg"
                  ]
                },
                "description": "Remove meter-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get meter-list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list"
                  ]
                },
                "description": "Retrieve meter-list from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace meter-list",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list"
                  ]
                },
                "description": "Create or replace meter-list on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"meter-id\": 1,\n    \"meter-rate\": 1,\n    \"burst-size\": 1,\n    \"color\": {\n      \"classifier-entry-name\": \"example-1\",\n      \"classifier-entry-descr\": \"configured-value\",\n      \"classifier-entry-filter-operation\": \"50\"\n    },\n    \"succeed-action\": {\n      \"meter-action-type\": \"configured-value\",\n      \"next-meter-id\": 1,\n      \"dscp\": \"46\"\n    },\n    \"fail-action\": {\n      \"meter-action-type\": \"configured-value\",\n      \"next-meter-id\": 1,\n      \"dscp\": \"46\"\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update meter-list",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list"
                  ]
                },
                "description": "Partially update meter-list on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"meter-id\": 1,\n    \"meter-rate\": 1,\n    \"burst-size\": 1,\n    \"color\": {\n      \"classifier-entry-name\": \"example-1\",\n      \"classifier-entry-descr\": \"configured-value\",\n      \"classifier-entry-filter-operation\": \"50\"\n    },\n    \"succeed-action\": {\n      \"meter-action-type\": \"configured-value\",\n      \"next-meter-id\": 1,\n      \"dscp\": \"46\"\n    },\n    \"fail-action\": {\n      \"meter-action-type\": \"configured-value\",\n      \"next-meter-id\": 1,\n      \"dscp\": \"46\"\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete meter-list",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list"
                  ]
                },
                "description": "Remove meter-list from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get meter-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/meter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "meter-id"
                  ]
                },
                "description": "Retrieve meter-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace meter-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/meter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "meter-id"
                  ]
                },
                "description": "Create or replace meter-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update meter-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/meter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "meter-id"
                  ]
                },
                "description": "Partially update meter-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete meter-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/meter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "meter-id"
                  ]
                },
                "description": "Remove meter-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get meter-rate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/meter-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "meter-rate"
                  ]
                },
                "description": "Retrieve meter-rate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace meter-rate",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/meter-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "meter-rate"
                  ]
                },
                "description": "Create or replace meter-rate on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update meter-rate",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/meter-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "meter-rate"
                  ]
                },
                "description": "Partially update meter-rate on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete meter-rate",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/meter-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "meter-rate"
                  ]
                },
                "description": "Remove meter-rate from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get burst-size",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/burst-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "burst-size"
                  ]
                },
                "description": "Retrieve burst-size from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace burst-size",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/burst-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "burst-size"
                  ]
                },
                "description": "Create or replace burst-size on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update burst-size",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/burst-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "burst-size"
                  ]
                },
                "description": "Partially update burst-size on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete burst-size",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/burst-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "burst-size"
                  ]
                },
                "description": "Remove burst-size from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get color",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/color",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "color"
                  ]
                },
                "description": "Retrieve color from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace color",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/color",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "color"
                  ]
                },
                "description": "Create or replace color on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"classifier-entry-name\": \"example-1\",\n  \"classifier-entry-descr\": \"configured-value\",\n  \"classifier-entry-filter-operation\": \"50\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update color",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/color",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "color"
                  ]
                },
                "description": "Partially update color on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"classifier-entry-name\": \"example-1\",\n  \"classifier-entry-descr\": \"configured-value\",\n  \"classifier-entry-filter-operation\": \"50\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete color",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/color",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "color"
                  ]
                },
                "description": "Remove color from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classifier-entry-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/color/classifier-entry-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "color",
                    "classifier-entry-name"
                  ]
                },
                "description": "Retrieve classifier-entry-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace classifier-entry-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/color/classifier-entry-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "color",
                    "classifier-entry-name"
                  ]
                },
                "description": "Create or replace classifier-entry-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update classifier-entry-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/color/classifier-entry-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "color",
                    "classifier-entry-name"
                  ]
                },
                "description": "Partially update classifier-entry-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete classifier-entry-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/color/classifier-entry-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "color",
                    "classifier-entry-name"
                  ]
                },
                "description": "Remove classifier-entry-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classifier-entry-descr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/color/classifier-entry-descr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "color",
                    "classifier-entry-descr"
                  ]
                },
                "description": "Retrieve classifier-entry-descr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace classifier-entry-descr",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/color/classifier-entry-descr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "color",
                    "classifier-entry-descr"
                  ]
                },
                "description": "Create or replace classifier-entry-descr on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update classifier-entry-descr",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/color/classifier-entry-descr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "color",
                    "classifier-entry-descr"
                  ]
                },
                "description": "Partially update classifier-entry-descr on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete classifier-entry-descr",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/color/classifier-entry-descr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "color",
                    "classifier-entry-descr"
                  ]
                },
                "description": "Remove classifier-entry-descr from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classifier-entry-filter-operation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/color/classifier-entry-filter-operation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "color",
                    "classifier-entry-filter-operation"
                  ]
                },
                "description": "Retrieve classifier-entry-filter-operation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace classifier-entry-filter-operation",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/color/classifier-entry-filter-operation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "color",
                    "classifier-entry-filter-operation"
                  ]
                },
                "description": "Create or replace classifier-entry-filter-operation on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update classifier-entry-filter-operation",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/color/classifier-entry-filter-operation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "color",
                    "classifier-entry-filter-operation"
                  ]
                },
                "description": "Partially update classifier-entry-filter-operation on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete classifier-entry-filter-operation",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/color/classifier-entry-filter-operation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "color",
                    "classifier-entry-filter-operation"
                  ]
                },
                "description": "Remove classifier-entry-filter-operation from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get succeed-action",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/succeed-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "succeed-action"
                  ]
                },
                "description": "Retrieve succeed-action from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace succeed-action",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/succeed-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "succeed-action"
                  ]
                },
                "description": "Create or replace succeed-action on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"meter-action-type\": \"configured-value\",\n  \"next-meter-id\": 1,\n  \"dscp\": \"46\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update succeed-action",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/succeed-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "succeed-action"
                  ]
                },
                "description": "Partially update succeed-action on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"meter-action-type\": \"configured-value\",\n  \"next-meter-id\": 1,\n  \"dscp\": \"46\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete succeed-action",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/succeed-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "succeed-action"
                  ]
                },
                "description": "Remove succeed-action from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get meter-action-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/succeed-action/meter-action-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "succeed-action",
                    "meter-action-type"
                  ]
                },
                "description": "Retrieve meter-action-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace meter-action-type",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/succeed-action/meter-action-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "succeed-action",
                    "meter-action-type"
                  ]
                },
                "description": "Create or replace meter-action-type on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update meter-action-type",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/succeed-action/meter-action-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "succeed-action",
                    "meter-action-type"
                  ]
                },
                "description": "Partially update meter-action-type on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete meter-action-type",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/succeed-action/meter-action-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "succeed-action",
                    "meter-action-type"
                  ]
                },
                "description": "Remove meter-action-type from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get next-meter-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/succeed-action/next-meter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "succeed-action",
                    "next-meter-id"
                  ]
                },
                "description": "Retrieve next-meter-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace next-meter-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/succeed-action/next-meter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "succeed-action",
                    "next-meter-id"
                  ]
                },
                "description": "Create or replace next-meter-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update next-meter-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/succeed-action/next-meter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "succeed-action",
                    "next-meter-id"
                  ]
                },
                "description": "Partially update next-meter-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete next-meter-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/succeed-action/next-meter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "succeed-action",
                    "next-meter-id"
                  ]
                },
                "description": "Remove next-meter-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/succeed-action/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "succeed-action",
                    "dscp"
                  ]
                },
                "description": "Retrieve dscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dscp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/succeed-action/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "succeed-action",
                    "dscp"
                  ]
                },
                "description": "Create or replace dscp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"46\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dscp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/succeed-action/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "succeed-action",
                    "dscp"
                  ]
                },
                "description": "Partially update dscp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"46\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dscp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/succeed-action/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "succeed-action",
                    "dscp"
                  ]
                },
                "description": "Remove dscp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get fail-action",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/fail-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "fail-action"
                  ]
                },
                "description": "Retrieve fail-action from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace fail-action",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/fail-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "fail-action"
                  ]
                },
                "description": "Create or replace fail-action on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"meter-action-type\": \"configured-value\",\n  \"next-meter-id\": 1,\n  \"dscp\": \"46\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update fail-action",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/fail-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "fail-action"
                  ]
                },
                "description": "Partially update fail-action on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"meter-action-type\": \"configured-value\",\n  \"next-meter-id\": 1,\n  \"dscp\": \"46\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete fail-action",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/fail-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "fail-action"
                  ]
                },
                "description": "Remove fail-action from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get meter-action-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/fail-action/meter-action-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "fail-action",
                    "meter-action-type"
                  ]
                },
                "description": "Retrieve meter-action-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace meter-action-type",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/fail-action/meter-action-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "fail-action",
                    "meter-action-type"
                  ]
                },
                "description": "Create or replace meter-action-type on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update meter-action-type",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/fail-action/meter-action-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "fail-action",
                    "meter-action-type"
                  ]
                },
                "description": "Partially update meter-action-type on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete meter-action-type",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/fail-action/meter-action-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "fail-action",
                    "meter-action-type"
                  ]
                },
                "description": "Remove meter-action-type from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get next-meter-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/fail-action/next-meter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "fail-action",
                    "next-meter-id"
                  ]
                },
                "description": "Retrieve next-meter-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace next-meter-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/fail-action/next-meter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "fail-action",
                    "next-meter-id"
                  ]
                },
                "description": "Create or replace next-meter-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update next-meter-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/fail-action/next-meter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "fail-action",
                    "next-meter-id"
                  ]
                },
                "description": "Partially update next-meter-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete next-meter-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/fail-action/next-meter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "fail-action",
                    "next-meter-id"
                  ]
                },
                "description": "Remove next-meter-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/fail-action/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "fail-action",
                    "dscp"
                  ]
                },
                "description": "Retrieve dscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dscp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/fail-action/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "fail-action",
                    "dscp"
                  ]
                },
                "description": "Create or replace dscp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"46\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dscp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/fail-action/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "fail-action",
                    "dscp"
                  ]
                },
                "description": "Partially update dscp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"46\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dscp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:meter-cfg/meter-list/fail-action/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:meter-cfg",
                    "meter-list",
                    "fail-action",
                    "dscp"
                  ]
                },
                "description": "Remove dscp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get min-rate-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg"
                  ]
                },
                "description": "Retrieve min-rate-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace min-rate-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg"
                  ]
                },
                "description": "Create or replace min-rate-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"min-rate\": 1,\n  \"absolute-rate-metric\": \"configured-value\",\n  \"absolute-rate-units\": \"configured-value\",\n  \"rate-percent\": \"50\",\n  \"rate-ratio\": 50,\n  \"bw-excess-share-cfg\": {\n    \"value\": 1,\n    \"absolute-rate-metric\": \"configured-value\",\n    \"absolute-rate-units\": \"configured-value\",\n    \"rate-percent\": \"50\",\n    \"rate-ratio\": 50\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update min-rate-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg"
                  ]
                },
                "description": "Partially update min-rate-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"min-rate\": 1,\n  \"absolute-rate-metric\": \"configured-value\",\n  \"absolute-rate-units\": \"configured-value\",\n  \"rate-percent\": \"50\",\n  \"rate-ratio\": 50,\n  \"bw-excess-share-cfg\": {\n    \"value\": 1,\n    \"absolute-rate-metric\": \"configured-value\",\n    \"absolute-rate-units\": \"configured-value\",\n    \"rate-percent\": \"50\",\n    \"rate-ratio\": 50\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete min-rate-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg"
                  ]
                },
                "description": "Remove min-rate-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get min-rate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/min-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "min-rate"
                  ]
                },
                "description": "Retrieve min-rate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace min-rate",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/min-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "min-rate"
                  ]
                },
                "description": "Create or replace min-rate on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update min-rate",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/min-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "min-rate"
                  ]
                },
                "description": "Partially update min-rate on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete min-rate",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/min-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "min-rate"
                  ]
                },
                "description": "Remove min-rate from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get absolute-rate-metric",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/absolute-rate-metric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "absolute-rate-metric"
                  ]
                },
                "description": "Retrieve absolute-rate-metric from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace absolute-rate-metric",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/absolute-rate-metric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "absolute-rate-metric"
                  ]
                },
                "description": "Create or replace absolute-rate-metric on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update absolute-rate-metric",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/absolute-rate-metric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "absolute-rate-metric"
                  ]
                },
                "description": "Partially update absolute-rate-metric on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete absolute-rate-metric",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/absolute-rate-metric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "absolute-rate-metric"
                  ]
                },
                "description": "Remove absolute-rate-metric from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get absolute-rate-units",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/absolute-rate-units",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "absolute-rate-units"
                  ]
                },
                "description": "Retrieve absolute-rate-units from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace absolute-rate-units",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/absolute-rate-units",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "absolute-rate-units"
                  ]
                },
                "description": "Create or replace absolute-rate-units on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update absolute-rate-units",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/absolute-rate-units",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "absolute-rate-units"
                  ]
                },
                "description": "Partially update absolute-rate-units on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete absolute-rate-units",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/absolute-rate-units",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "absolute-rate-units"
                  ]
                },
                "description": "Remove absolute-rate-units from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rate-percent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/rate-percent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "rate-percent"
                  ]
                },
                "description": "Retrieve rate-percent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rate-percent",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/rate-percent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "rate-percent"
                  ]
                },
                "description": "Create or replace rate-percent on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rate-percent",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/rate-percent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "rate-percent"
                  ]
                },
                "description": "Partially update rate-percent on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rate-percent",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/rate-percent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "rate-percent"
                  ]
                },
                "description": "Remove rate-percent from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rate-ratio",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/rate-ratio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "rate-ratio"
                  ]
                },
                "description": "Retrieve rate-ratio from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rate-ratio",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/rate-ratio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "rate-ratio"
                  ]
                },
                "description": "Create or replace rate-ratio on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "50",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rate-ratio",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/rate-ratio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "rate-ratio"
                  ]
                },
                "description": "Partially update rate-ratio on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "50",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rate-ratio",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/rate-ratio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "rate-ratio"
                  ]
                },
                "description": "Remove rate-ratio from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bw-excess-share-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg"
                  ]
                },
                "description": "Retrieve bw-excess-share-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bw-excess-share-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg"
                  ]
                },
                "description": "Create or replace bw-excess-share-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"value\": 1,\n  \"absolute-rate-metric\": \"configured-value\",\n  \"absolute-rate-units\": \"configured-value\",\n  \"rate-percent\": \"50\",\n  \"rate-ratio\": 50\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bw-excess-share-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg"
                  ]
                },
                "description": "Partially update bw-excess-share-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"value\": 1,\n  \"absolute-rate-metric\": \"configured-value\",\n  \"absolute-rate-units\": \"configured-value\",\n  \"rate-percent\": \"50\",\n  \"rate-ratio\": 50\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bw-excess-share-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg"
                  ]
                },
                "description": "Remove bw-excess-share-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get value",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/value",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "value"
                  ]
                },
                "description": "Retrieve value from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace value",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/value",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "value"
                  ]
                },
                "description": "Create or replace value on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update value",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/value",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "value"
                  ]
                },
                "description": "Partially update value on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete value",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/value",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "value"
                  ]
                },
                "description": "Remove value from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get absolute-rate-metric",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/absolute-rate-metric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "absolute-rate-metric"
                  ]
                },
                "description": "Retrieve absolute-rate-metric from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace absolute-rate-metric",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/absolute-rate-metric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "absolute-rate-metric"
                  ]
                },
                "description": "Create or replace absolute-rate-metric on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update absolute-rate-metric",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/absolute-rate-metric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "absolute-rate-metric"
                  ]
                },
                "description": "Partially update absolute-rate-metric on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete absolute-rate-metric",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/absolute-rate-metric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "absolute-rate-metric"
                  ]
                },
                "description": "Remove absolute-rate-metric from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get absolute-rate-units",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/absolute-rate-units",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "absolute-rate-units"
                  ]
                },
                "description": "Retrieve absolute-rate-units from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace absolute-rate-units",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/absolute-rate-units",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "absolute-rate-units"
                  ]
                },
                "description": "Create or replace absolute-rate-units on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update absolute-rate-units",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/absolute-rate-units",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "absolute-rate-units"
                  ]
                },
                "description": "Partially update absolute-rate-units on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete absolute-rate-units",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/absolute-rate-units",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "absolute-rate-units"
                  ]
                },
                "description": "Remove absolute-rate-units from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rate-percent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/rate-percent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "rate-percent"
                  ]
                },
                "description": "Retrieve rate-percent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rate-percent",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/rate-percent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "rate-percent"
                  ]
                },
                "description": "Create or replace rate-percent on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rate-percent",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/rate-percent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "rate-percent"
                  ]
                },
                "description": "Partially update rate-percent on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rate-percent",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/rate-percent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "rate-percent"
                  ]
                },
                "description": "Remove rate-percent from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rate-ratio",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/rate-ratio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "rate-ratio"
                  ]
                },
                "description": "Retrieve rate-ratio from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rate-ratio",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/rate-ratio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "rate-ratio"
                  ]
                },
                "description": "Create or replace rate-ratio on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "50",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rate-ratio",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/rate-ratio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "rate-ratio"
                  ]
                },
                "description": "Partially update rate-ratio on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "50",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rate-ratio",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:min-rate-cfg/bw-excess-share-cfg/rate-ratio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:min-rate-cfg",
                    "bw-excess-share-cfg",
                    "rate-ratio"
                  ]
                },
                "description": "Remove rate-ratio from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-rate-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg"
                  ]
                },
                "description": "Retrieve max-rate-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace max-rate-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg"
                  ]
                },
                "description": "Create or replace max-rate-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"absolute-rate\": 1,\n  \"burst-size\": 1,\n  \"absolute-rate-metric\": \"configured-value\",\n  \"absolute-rate-units\": \"configured-value\",\n  \"rate-percent\": \"50\",\n  \"rate-ratio\": 50\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update max-rate-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg"
                  ]
                },
                "description": "Partially update max-rate-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"absolute-rate\": 1,\n  \"burst-size\": 1,\n  \"absolute-rate-metric\": \"configured-value\",\n  \"absolute-rate-units\": \"configured-value\",\n  \"rate-percent\": \"50\",\n  \"rate-ratio\": 50\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete max-rate-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg"
                  ]
                },
                "description": "Remove max-rate-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get absolute-rate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/absolute-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "absolute-rate"
                  ]
                },
                "description": "Retrieve absolute-rate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace absolute-rate",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/absolute-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "absolute-rate"
                  ]
                },
                "description": "Create or replace absolute-rate on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update absolute-rate",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/absolute-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "absolute-rate"
                  ]
                },
                "description": "Partially update absolute-rate on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete absolute-rate",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/absolute-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "absolute-rate"
                  ]
                },
                "description": "Remove absolute-rate from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get burst-size",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/burst-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "burst-size"
                  ]
                },
                "description": "Retrieve burst-size from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace burst-size",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/burst-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "burst-size"
                  ]
                },
                "description": "Create or replace burst-size on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update burst-size",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/burst-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "burst-size"
                  ]
                },
                "description": "Partially update burst-size on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete burst-size",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/burst-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "burst-size"
                  ]
                },
                "description": "Remove burst-size from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get absolute-rate-metric",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/absolute-rate-metric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "absolute-rate-metric"
                  ]
                },
                "description": "Retrieve absolute-rate-metric from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace absolute-rate-metric",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/absolute-rate-metric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "absolute-rate-metric"
                  ]
                },
                "description": "Create or replace absolute-rate-metric on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update absolute-rate-metric",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/absolute-rate-metric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "absolute-rate-metric"
                  ]
                },
                "description": "Partially update absolute-rate-metric on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete absolute-rate-metric",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/absolute-rate-metric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "absolute-rate-metric"
                  ]
                },
                "description": "Remove absolute-rate-metric from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get absolute-rate-units",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/absolute-rate-units",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "absolute-rate-units"
                  ]
                },
                "description": "Retrieve absolute-rate-units from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace absolute-rate-units",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/absolute-rate-units",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "absolute-rate-units"
                  ]
                },
                "description": "Create or replace absolute-rate-units on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update absolute-rate-units",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/absolute-rate-units",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "absolute-rate-units"
                  ]
                },
                "description": "Partially update absolute-rate-units on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete absolute-rate-units",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/absolute-rate-units",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "absolute-rate-units"
                  ]
                },
                "description": "Remove absolute-rate-units from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rate-percent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/rate-percent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "rate-percent"
                  ]
                },
                "description": "Retrieve rate-percent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rate-percent",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/rate-percent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "rate-percent"
                  ]
                },
                "description": "Create or replace rate-percent on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rate-percent",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/rate-percent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "rate-percent"
                  ]
                },
                "description": "Partially update rate-percent on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rate-percent",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/rate-percent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "rate-percent"
                  ]
                },
                "description": "Remove rate-percent from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rate-ratio",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/rate-ratio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "rate-ratio"
                  ]
                },
                "description": "Retrieve rate-ratio from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rate-ratio",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/rate-ratio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "rate-ratio"
                  ]
                },
                "description": "Create or replace rate-ratio on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "50",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rate-ratio",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/rate-ratio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "rate-ratio"
                  ]
                },
                "description": "Partially update rate-ratio on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "50",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rate-ratio",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:max-rate-cfg/rate-ratio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:max-rate-cfg",
                    "rate-ratio"
                  ]
                },
                "description": "Remove rate-ratio from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get (drop-algorithm)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)"
                  ]
                },
                "description": "Retrieve (drop-algorithm) from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace (drop-algorithm)",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)"
                  ]
                },
                "description": "Create or replace (drop-algorithm) on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"drop-cfg\": {\n    \"drop-action\": false\n  },\n  \"tail-drop-cfg\": {\n    \"qlimit-dscp-thresh\": {\n      \"dscp-min\": \"configured-value\",\n      \"dscp-max\": \"configured-value\",\n      \"threshold\": {\n        \"threshold-size\": {}\n      }\n    }\n  },\n  \"random-detect-cfg\": {\n    \"exp-weighting-const\": 1,\n    \"red-min-thresh\": {\n      \"threshold\": {\n        \"threshold-size\": {}\n      }\n    },\n    \"red-max-thresh\": {\n      \"threshold\": {\n        \"threshold-size\": {}\n      }\n    },\n    \"mark-probability\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update (drop-algorithm)",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)"
                  ]
                },
                "description": "Partially update (drop-algorithm) on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"drop-cfg\": {\n    \"drop-action\": false\n  },\n  \"tail-drop-cfg\": {\n    \"qlimit-dscp-thresh\": {\n      \"dscp-min\": \"configured-value\",\n      \"dscp-max\": \"configured-value\",\n      \"threshold\": {\n        \"threshold-size\": {}\n      }\n    }\n  },\n  \"random-detect-cfg\": {\n    \"exp-weighting-const\": 1,\n    \"red-min-thresh\": {\n      \"threshold\": {\n        \"threshold-size\": {}\n      }\n    },\n    \"red-max-thresh\": {\n      \"threshold\": {\n        \"threshold-size\": {}\n      }\n    },\n    \"mark-probability\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete (drop-algorithm)",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)"
                  ]
                },
                "description": "Remove (drop-algorithm) from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get drop-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/drop-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "drop-cfg"
                  ]
                },
                "description": "Retrieve drop-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace drop-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/drop-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "drop-cfg"
                  ]
                },
                "description": "Create or replace drop-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"drop-action\": false\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update drop-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/drop-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "drop-cfg"
                  ]
                },
                "description": "Partially update drop-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"drop-action\": false\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete drop-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/drop-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "drop-cfg"
                  ]
                },
                "description": "Remove drop-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get drop-action",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/drop-cfg/drop-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "drop-cfg",
                    "drop-action"
                  ]
                },
                "description": "Retrieve drop-action from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace drop-action",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/drop-cfg/drop-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "drop-cfg",
                    "drop-action"
                  ]
                },
                "description": "Create or replace drop-action on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update drop-action",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/drop-cfg/drop-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "drop-cfg",
                    "drop-action"
                  ]
                },
                "description": "Partially update drop-action on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete drop-action",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/drop-cfg/drop-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "drop-cfg",
                    "drop-action"
                  ]
                },
                "description": "Remove drop-action from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tail-drop-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg"
                  ]
                },
                "description": "Retrieve tail-drop-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tail-drop-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg"
                  ]
                },
                "description": "Create or replace tail-drop-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"qlimit-dscp-thresh\": {\n    \"dscp-min\": \"configured-value\",\n    \"dscp-max\": \"configured-value\",\n    \"threshold\": {\n      \"threshold-size\": 1\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tail-drop-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg"
                  ]
                },
                "description": "Partially update tail-drop-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"qlimit-dscp-thresh\": {\n    \"dscp-min\": \"configured-value\",\n    \"dscp-max\": \"configured-value\",\n    \"threshold\": {\n      \"threshold-size\": 1\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tail-drop-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg"
                  ]
                },
                "description": "Remove tail-drop-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qlimit-dscp-thresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh"
                  ]
                },
                "description": "Retrieve qlimit-dscp-thresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace qlimit-dscp-thresh",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh"
                  ]
                },
                "description": "Create or replace qlimit-dscp-thresh on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dscp-min\": \"configured-value\",\n  \"dscp-max\": \"configured-value\",\n  \"threshold\": {\n    \"threshold-size\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update qlimit-dscp-thresh",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh"
                  ]
                },
                "description": "Partially update qlimit-dscp-thresh on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dscp-min\": \"configured-value\",\n  \"dscp-max\": \"configured-value\",\n  \"threshold\": {\n    \"threshold-size\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete qlimit-dscp-thresh",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh"
                  ]
                },
                "description": "Remove qlimit-dscp-thresh from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dscp-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh/dscp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh",
                    "dscp-min"
                  ]
                },
                "description": "Retrieve dscp-min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dscp-min",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh/dscp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh",
                    "dscp-min"
                  ]
                },
                "description": "Create or replace dscp-min on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dscp-min",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh/dscp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh",
                    "dscp-min"
                  ]
                },
                "description": "Partially update dscp-min on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dscp-min",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh/dscp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh",
                    "dscp-min"
                  ]
                },
                "description": "Remove dscp-min from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dscp-max",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh/dscp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh",
                    "dscp-max"
                  ]
                },
                "description": "Retrieve dscp-max from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dscp-max",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh/dscp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh",
                    "dscp-max"
                  ]
                },
                "description": "Create or replace dscp-max on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dscp-max",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh/dscp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh",
                    "dscp-max"
                  ]
                },
                "description": "Partially update dscp-max on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dscp-max",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh/dscp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh",
                    "dscp-max"
                  ]
                },
                "description": "Remove dscp-max from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get threshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh/threshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh",
                    "threshold"
                  ]
                },
                "description": "Retrieve threshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace threshold",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh/threshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh",
                    "threshold"
                  ]
                },
                "description": "Create or replace threshold on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"threshold-size\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update threshold",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh/threshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh",
                    "threshold"
                  ]
                },
                "description": "Partially update threshold on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"threshold-size\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete threshold",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh/threshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh",
                    "threshold"
                  ]
                },
                "description": "Remove threshold from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get threshold-size",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh/threshold/threshold-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh",
                    "threshold",
                    "threshold-size"
                  ]
                },
                "description": "Retrieve threshold-size from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace threshold-size",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh/threshold/threshold-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh",
                    "threshold",
                    "threshold-size"
                  ]
                },
                "description": "Create or replace threshold-size on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update threshold-size",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh/threshold/threshold-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh",
                    "threshold",
                    "threshold-size"
                  ]
                },
                "description": "Partially update threshold-size on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete threshold-size",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/tail-drop-cfg/qlimit-dscp-thresh/threshold/threshold-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "tail-drop-cfg",
                    "qlimit-dscp-thresh",
                    "threshold",
                    "threshold-size"
                  ]
                },
                "description": "Remove threshold-size from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get random-detect-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg"
                  ]
                },
                "description": "Retrieve random-detect-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace random-detect-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg"
                  ]
                },
                "description": "Create or replace random-detect-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"exp-weighting-const\": 1,\n  \"red-min-thresh\": {\n    \"threshold\": {\n      \"threshold-size\": 1\n    }\n  },\n  \"red-max-thresh\": {\n    \"threshold\": {\n      \"threshold-size\": 1\n    }\n  },\n  \"mark-probability\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update random-detect-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg"
                  ]
                },
                "description": "Partially update random-detect-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"exp-weighting-const\": 1,\n  \"red-min-thresh\": {\n    \"threshold\": {\n      \"threshold-size\": 1\n    }\n  },\n  \"red-max-thresh\": {\n    \"threshold\": {\n      \"threshold-size\": 1\n    }\n  },\n  \"mark-probability\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete random-detect-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg"
                  ]
                },
                "description": "Remove random-detect-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get exp-weighting-const",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/exp-weighting-const",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "exp-weighting-const"
                  ]
                },
                "description": "Retrieve exp-weighting-const from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace exp-weighting-const",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/exp-weighting-const",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "exp-weighting-const"
                  ]
                },
                "description": "Create or replace exp-weighting-const on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update exp-weighting-const",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/exp-weighting-const",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "exp-weighting-const"
                  ]
                },
                "description": "Partially update exp-weighting-const on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete exp-weighting-const",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/exp-weighting-const",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "exp-weighting-const"
                  ]
                },
                "description": "Remove exp-weighting-const from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get red-min-thresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-min-thresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-min-thresh"
                  ]
                },
                "description": "Retrieve red-min-thresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace red-min-thresh",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-min-thresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-min-thresh"
                  ]
                },
                "description": "Create or replace red-min-thresh on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"threshold\": {\n    \"threshold-size\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update red-min-thresh",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-min-thresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-min-thresh"
                  ]
                },
                "description": "Partially update red-min-thresh on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"threshold\": {\n    \"threshold-size\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete red-min-thresh",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-min-thresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-min-thresh"
                  ]
                },
                "description": "Remove red-min-thresh from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get threshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-min-thresh/threshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-min-thresh",
                    "threshold"
                  ]
                },
                "description": "Retrieve threshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace threshold",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-min-thresh/threshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-min-thresh",
                    "threshold"
                  ]
                },
                "description": "Create or replace threshold on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"threshold-size\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update threshold",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-min-thresh/threshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-min-thresh",
                    "threshold"
                  ]
                },
                "description": "Partially update threshold on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"threshold-size\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete threshold",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-min-thresh/threshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-min-thresh",
                    "threshold"
                  ]
                },
                "description": "Remove threshold from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get threshold-size",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-min-thresh/threshold/threshold-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-min-thresh",
                    "threshold",
                    "threshold-size"
                  ]
                },
                "description": "Retrieve threshold-size from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace threshold-size",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-min-thresh/threshold/threshold-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-min-thresh",
                    "threshold",
                    "threshold-size"
                  ]
                },
                "description": "Create or replace threshold-size on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update threshold-size",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-min-thresh/threshold/threshold-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-min-thresh",
                    "threshold",
                    "threshold-size"
                  ]
                },
                "description": "Partially update threshold-size on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete threshold-size",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-min-thresh/threshold/threshold-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-min-thresh",
                    "threshold",
                    "threshold-size"
                  ]
                },
                "description": "Remove threshold-size from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get red-max-thresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-max-thresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-max-thresh"
                  ]
                },
                "description": "Retrieve red-max-thresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace red-max-thresh",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-max-thresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-max-thresh"
                  ]
                },
                "description": "Create or replace red-max-thresh on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"threshold\": {\n    \"threshold-size\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update red-max-thresh",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-max-thresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-max-thresh"
                  ]
                },
                "description": "Partially update red-max-thresh on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"threshold\": {\n    \"threshold-size\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete red-max-thresh",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-max-thresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-max-thresh"
                  ]
                },
                "description": "Remove red-max-thresh from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get threshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-max-thresh/threshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-max-thresh",
                    "threshold"
                  ]
                },
                "description": "Retrieve threshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace threshold",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-max-thresh/threshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-max-thresh",
                    "threshold"
                  ]
                },
                "description": "Create or replace threshold on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"threshold-size\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update threshold",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-max-thresh/threshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-max-thresh",
                    "threshold"
                  ]
                },
                "description": "Partially update threshold on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"threshold-size\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete threshold",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-max-thresh/threshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-max-thresh",
                    "threshold"
                  ]
                },
                "description": "Remove threshold from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get threshold-size",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-max-thresh/threshold/threshold-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-max-thresh",
                    "threshold",
                    "threshold-size"
                  ]
                },
                "description": "Retrieve threshold-size from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace threshold-size",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-max-thresh/threshold/threshold-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-max-thresh",
                    "threshold",
                    "threshold-size"
                  ]
                },
                "description": "Create or replace threshold-size on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update threshold-size",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-max-thresh/threshold/threshold-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-max-thresh",
                    "threshold",
                    "threshold-size"
                  ]
                },
                "description": "Partially update threshold-size on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete threshold-size",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/red-max-thresh/threshold/threshold-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "red-max-thresh",
                    "threshold",
                    "threshold-size"
                  ]
                },
                "description": "Remove threshold-size from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mark-probability",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/mark-probability",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "mark-probability"
                  ]
                },
                "description": "Retrieve mark-probability from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mark-probability",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/mark-probability",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "mark-probability"
                  ]
                },
                "description": "Create or replace mark-probability on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mark-probability",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/mark-probability",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "mark-probability"
                  ]
                },
                "description": "Partially update mark-probability on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mark-probability",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-action:(drop-algorithm)/random-detect-cfg/mark-probability",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-action:(drop-algorithm)",
                    "random-detect-cfg",
                    "mark-probability"
                  ]
                },
                "description": "Remove mark-probability from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-diffserv-classifier",
          "description": "Cisco IOS-XE IETF - ietf-diffserv-classifier\n\nIETF standard data from `ietf-diffserv-classifier` module.\n\n**Root containers:** 1 (classifiers)\n**Paths:** 11 | **Operations:** 44\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 11 | Operations: 44",
          "item": [
            {
              "name": "GET Get classifiers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers"
                  ]
                },
                "description": "Retrieve classifiers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace classifiers",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers"
                  ]
                },
                "description": "Create or replace classifiers on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"classifier-entry\": [\n    {\n      \"classifier-entry-name\": \"example-1\",\n      \"classifier-entry-descr\": \"configured-value\",\n      \"classifier-entry-filter-operation\": \"50\",\n      \"filter-entry\": {\n        \"filter-type\": {},\n        \"filter-logical-not\": {},\n        \"dscp-cfg\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update classifiers",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers"
                  ]
                },
                "description": "Partially update classifiers on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"classifier-entry\": [\n    {\n      \"classifier-entry-name\": \"example-1\",\n      \"classifier-entry-descr\": \"configured-value\",\n      \"classifier-entry-filter-operation\": \"50\",\n      \"filter-entry\": {\n        \"filter-type\": {},\n        \"filter-logical-not\": {},\n        \"dscp-cfg\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete classifiers",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers"
                  ]
                },
                "description": "Remove classifiers from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classifier-entry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry"
                  ]
                },
                "description": "Retrieve classifier-entry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace classifier-entry",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry"
                  ]
                },
                "description": "Create or replace classifier-entry on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"classifier-entry-name\": \"example-1\",\n    \"classifier-entry-descr\": \"configured-value\",\n    \"classifier-entry-filter-operation\": \"50\",\n    \"filter-entry\": {\n      \"filter-type\": \"configured-value\",\n      \"filter-logical-not\": true,\n      \"dscp-cfg\": {\n        \"dscp-min\": {},\n        \"dscp-max\": {}\n      }\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update classifier-entry",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry"
                  ]
                },
                "description": "Partially update classifier-entry on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"classifier-entry-name\": \"example-1\",\n    \"classifier-entry-descr\": \"configured-value\",\n    \"classifier-entry-filter-operation\": \"50\",\n    \"filter-entry\": {\n      \"filter-type\": \"configured-value\",\n      \"filter-logical-not\": true,\n      \"dscp-cfg\": {\n        \"dscp-min\": {},\n        \"dscp-max\": {}\n      }\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete classifier-entry",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry"
                  ]
                },
                "description": "Remove classifier-entry from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classifier-entry-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/classifier-entry-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "classifier-entry-name"
                  ]
                },
                "description": "Retrieve classifier-entry-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace classifier-entry-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/classifier-entry-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "classifier-entry-name"
                  ]
                },
                "description": "Create or replace classifier-entry-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update classifier-entry-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/classifier-entry-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "classifier-entry-name"
                  ]
                },
                "description": "Partially update classifier-entry-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete classifier-entry-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/classifier-entry-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "classifier-entry-name"
                  ]
                },
                "description": "Remove classifier-entry-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classifier-entry-descr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/classifier-entry-descr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "classifier-entry-descr"
                  ]
                },
                "description": "Retrieve classifier-entry-descr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace classifier-entry-descr",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/classifier-entry-descr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "classifier-entry-descr"
                  ]
                },
                "description": "Create or replace classifier-entry-descr on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update classifier-entry-descr",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/classifier-entry-descr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "classifier-entry-descr"
                  ]
                },
                "description": "Partially update classifier-entry-descr on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete classifier-entry-descr",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/classifier-entry-descr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "classifier-entry-descr"
                  ]
                },
                "description": "Remove classifier-entry-descr from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classifier-entry-filter-operation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/classifier-entry-filter-operation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "classifier-entry-filter-operation"
                  ]
                },
                "description": "Retrieve classifier-entry-filter-operation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace classifier-entry-filter-operation",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/classifier-entry-filter-operation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "classifier-entry-filter-operation"
                  ]
                },
                "description": "Create or replace classifier-entry-filter-operation on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update classifier-entry-filter-operation",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/classifier-entry-filter-operation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "classifier-entry-filter-operation"
                  ]
                },
                "description": "Partially update classifier-entry-filter-operation on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete classifier-entry-filter-operation",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/classifier-entry-filter-operation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "classifier-entry-filter-operation"
                  ]
                },
                "description": "Remove classifier-entry-filter-operation from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filter-entry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry"
                  ]
                },
                "description": "Retrieve filter-entry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filter-entry",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry"
                  ]
                },
                "description": "Create or replace filter-entry on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filter-type\": \"configured-value\",\n  \"filter-logical-not\": true,\n  \"dscp-cfg\": {\n    \"dscp-min\": \"configured-value\",\n    \"dscp-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filter-entry",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry"
                  ]
                },
                "description": "Partially update filter-entry on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filter-type\": \"configured-value\",\n  \"filter-logical-not\": true,\n  \"dscp-cfg\": {\n    \"dscp-min\": \"configured-value\",\n    \"dscp-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filter-entry",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry"
                  ]
                },
                "description": "Remove filter-entry from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filter-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/filter-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "filter-type"
                  ]
                },
                "description": "Retrieve filter-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filter-type",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/filter-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "filter-type"
                  ]
                },
                "description": "Create or replace filter-type on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filter-type",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/filter-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "filter-type"
                  ]
                },
                "description": "Partially update filter-type on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filter-type",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/filter-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "filter-type"
                  ]
                },
                "description": "Remove filter-type from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filter-logical-not",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/filter-logical-not",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "filter-logical-not"
                  ]
                },
                "description": "Retrieve filter-logical-not from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filter-logical-not",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/filter-logical-not",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "filter-logical-not"
                  ]
                },
                "description": "Create or replace filter-logical-not on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filter-logical-not",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/filter-logical-not",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "filter-logical-not"
                  ]
                },
                "description": "Partially update filter-logical-not on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filter-logical-not",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/filter-logical-not",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "filter-logical-not"
                  ]
                },
                "description": "Remove filter-logical-not from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dscp-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/dscp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg"
                  ]
                },
                "description": "Retrieve dscp-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dscp-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/dscp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg"
                  ]
                },
                "description": "Create or replace dscp-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dscp-min\": \"configured-value\",\n  \"dscp-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dscp-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/dscp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg"
                  ]
                },
                "description": "Partially update dscp-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dscp-min\": \"configured-value\",\n  \"dscp-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dscp-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/dscp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg"
                  ]
                },
                "description": "Remove dscp-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dscp-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/dscp-cfg/dscp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg",
                    "dscp-min"
                  ]
                },
                "description": "Retrieve dscp-min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dscp-min",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/dscp-cfg/dscp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg",
                    "dscp-min"
                  ]
                },
                "description": "Create or replace dscp-min on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dscp-min",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/dscp-cfg/dscp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg",
                    "dscp-min"
                  ]
                },
                "description": "Partially update dscp-min on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dscp-min",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/dscp-cfg/dscp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg",
                    "dscp-min"
                  ]
                },
                "description": "Remove dscp-min from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dscp-max",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/dscp-cfg/dscp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg",
                    "dscp-max"
                  ]
                },
                "description": "Retrieve dscp-max from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dscp-max",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/dscp-cfg/dscp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg",
                    "dscp-max"
                  ]
                },
                "description": "Create or replace dscp-max on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dscp-max",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/dscp-cfg/dscp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg",
                    "dscp-max"
                  ]
                },
                "description": "Partially update dscp-max on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dscp-max",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-classifier:classifiers/classifier-entry/filter-entry/dscp-cfg/dscp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-classifier:classifiers",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg",
                    "dscp-max"
                  ]
                },
                "description": "Remove dscp-max from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-diffserv-policy",
          "description": "Cisco IOS-XE IETF - ietf-diffserv-policy\n\nIETF standard data from `ietf-diffserv-policy` module.\n\n**Root containers:** 1 (policies)\n**Paths:** 16 | **Operations:** 64\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 16 | Operations: 64",
          "item": [
            {
              "name": "GET Get policies",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies"
                  ]
                },
                "description": "Retrieve policies from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace policies",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies"
                  ]
                },
                "description": "Create or replace policies on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"policy-entry\": [\n    {\n      \"policy-name\": \"CLASS-VOICE\",\n      \"policy-descr\": \"configured-value\",\n      \"classifier-entry\": [\n        {}\n      ]\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update policies",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies"
                  ]
                },
                "description": "Partially update policies on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"policy-entry\": [\n    {\n      \"policy-name\": \"CLASS-VOICE\",\n      \"policy-descr\": \"configured-value\",\n      \"classifier-entry\": [\n        {}\n      ]\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete policies",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies"
                  ]
                },
                "description": "Remove policies from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get policy-entry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry"
                  ]
                },
                "description": "Retrieve policy-entry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace policy-entry",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry"
                  ]
                },
                "description": "Create or replace policy-entry on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"policy-name\": \"CLASS-VOICE\",\n    \"policy-descr\": \"configured-value\",\n    \"classifier-entry\": [\n      {\n        \"classifier-entry-name\": {},\n        \"classifier-entry-inline\": {},\n        \"classifier-entry-filter-oper\": {},\n        \"filter-entry\": {},\n        \"classifier-action-entry-cfg\": {}\n      }\n    ]\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update policy-entry",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry"
                  ]
                },
                "description": "Partially update policy-entry on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"policy-name\": \"CLASS-VOICE\",\n    \"policy-descr\": \"configured-value\",\n    \"classifier-entry\": [\n      {\n        \"classifier-entry-name\": {},\n        \"classifier-entry-inline\": {},\n        \"classifier-entry-filter-oper\": {},\n        \"filter-entry\": {},\n        \"classifier-action-entry-cfg\": {}\n      }\n    ]\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete policy-entry",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry"
                  ]
                },
                "description": "Remove policy-entry from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get policy-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/policy-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "policy-name"
                  ]
                },
                "description": "Retrieve policy-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace policy-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/policy-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "policy-name"
                  ]
                },
                "description": "Create or replace policy-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"CLASS-VOICE\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update policy-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/policy-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "policy-name"
                  ]
                },
                "description": "Partially update policy-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"CLASS-VOICE\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete policy-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/policy-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "policy-name"
                  ]
                },
                "description": "Remove policy-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get policy-descr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/policy-descr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "policy-descr"
                  ]
                },
                "description": "Retrieve policy-descr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace policy-descr",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/policy-descr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "policy-descr"
                  ]
                },
                "description": "Create or replace policy-descr on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update policy-descr",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/policy-descr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "policy-descr"
                  ]
                },
                "description": "Partially update policy-descr on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete policy-descr",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/policy-descr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "policy-descr"
                  ]
                },
                "description": "Remove policy-descr from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classifier-entry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry"
                  ]
                },
                "description": "Retrieve classifier-entry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace classifier-entry",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry"
                  ]
                },
                "description": "Create or replace classifier-entry on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"classifier-entry-name\": \"example-1\",\n    \"classifier-entry-inline\": true,\n    \"classifier-entry-filter-oper\": \"configured-value\",\n    \"filter-entry\": {\n      \"filter-type\": \"configured-value\",\n      \"filter-logical-not\": true,\n      \"dscp-cfg\": {\n        \"dscp-min\": {},\n        \"dscp-max\": {}\n      }\n    },\n    \"classifier-action-entry-cfg\": [\n      {\n        \"action-type\": {}\n      }\n    ]\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update classifier-entry",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry"
                  ]
                },
                "description": "Partially update classifier-entry on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"classifier-entry-name\": \"example-1\",\n    \"classifier-entry-inline\": true,\n    \"classifier-entry-filter-oper\": \"configured-value\",\n    \"filter-entry\": {\n      \"filter-type\": \"configured-value\",\n      \"filter-logical-not\": true,\n      \"dscp-cfg\": {\n        \"dscp-min\": {},\n        \"dscp-max\": {}\n      }\n    },\n    \"classifier-action-entry-cfg\": [\n      {\n        \"action-type\": {}\n      }\n    ]\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete classifier-entry",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry"
                  ]
                },
                "description": "Remove classifier-entry from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classifier-entry-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-entry-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-entry-name"
                  ]
                },
                "description": "Retrieve classifier-entry-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace classifier-entry-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-entry-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-entry-name"
                  ]
                },
                "description": "Create or replace classifier-entry-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update classifier-entry-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-entry-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-entry-name"
                  ]
                },
                "description": "Partially update classifier-entry-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete classifier-entry-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-entry-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-entry-name"
                  ]
                },
                "description": "Remove classifier-entry-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classifier-entry-inline",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-entry-inline",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-entry-inline"
                  ]
                },
                "description": "Retrieve classifier-entry-inline from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace classifier-entry-inline",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-entry-inline",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-entry-inline"
                  ]
                },
                "description": "Create or replace classifier-entry-inline on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update classifier-entry-inline",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-entry-inline",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-entry-inline"
                  ]
                },
                "description": "Partially update classifier-entry-inline on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete classifier-entry-inline",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-entry-inline",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-entry-inline"
                  ]
                },
                "description": "Remove classifier-entry-inline from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classifier-entry-filter-oper",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-entry-filter-oper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-entry-filter-oper"
                  ]
                },
                "description": "Retrieve classifier-entry-filter-oper from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace classifier-entry-filter-oper",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-entry-filter-oper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-entry-filter-oper"
                  ]
                },
                "description": "Create or replace classifier-entry-filter-oper on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update classifier-entry-filter-oper",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-entry-filter-oper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-entry-filter-oper"
                  ]
                },
                "description": "Partially update classifier-entry-filter-oper on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete classifier-entry-filter-oper",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-entry-filter-oper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-entry-filter-oper"
                  ]
                },
                "description": "Remove classifier-entry-filter-oper from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filter-entry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry"
                  ]
                },
                "description": "Retrieve filter-entry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filter-entry",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry"
                  ]
                },
                "description": "Create or replace filter-entry on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filter-type\": \"configured-value\",\n  \"filter-logical-not\": true,\n  \"dscp-cfg\": {\n    \"dscp-min\": \"configured-value\",\n    \"dscp-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filter-entry",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry"
                  ]
                },
                "description": "Partially update filter-entry on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filter-type\": \"configured-value\",\n  \"filter-logical-not\": true,\n  \"dscp-cfg\": {\n    \"dscp-min\": \"configured-value\",\n    \"dscp-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filter-entry",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry"
                  ]
                },
                "description": "Remove filter-entry from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filter-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/filter-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "filter-type"
                  ]
                },
                "description": "Retrieve filter-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filter-type",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/filter-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "filter-type"
                  ]
                },
                "description": "Create or replace filter-type on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filter-type",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/filter-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "filter-type"
                  ]
                },
                "description": "Partially update filter-type on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filter-type",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/filter-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "filter-type"
                  ]
                },
                "description": "Remove filter-type from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filter-logical-not",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/filter-logical-not",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "filter-logical-not"
                  ]
                },
                "description": "Retrieve filter-logical-not from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filter-logical-not",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/filter-logical-not",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "filter-logical-not"
                  ]
                },
                "description": "Create or replace filter-logical-not on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filter-logical-not",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/filter-logical-not",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "filter-logical-not"
                  ]
                },
                "description": "Partially update filter-logical-not on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filter-logical-not",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/filter-logical-not",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "filter-logical-not"
                  ]
                },
                "description": "Remove filter-logical-not from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dscp-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/dscp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg"
                  ]
                },
                "description": "Retrieve dscp-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dscp-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/dscp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg"
                  ]
                },
                "description": "Create or replace dscp-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dscp-min\": \"configured-value\",\n  \"dscp-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dscp-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/dscp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg"
                  ]
                },
                "description": "Partially update dscp-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dscp-min\": \"configured-value\",\n  \"dscp-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dscp-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/dscp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg"
                  ]
                },
                "description": "Remove dscp-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dscp-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/dscp-cfg/dscp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg",
                    "dscp-min"
                  ]
                },
                "description": "Retrieve dscp-min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dscp-min",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/dscp-cfg/dscp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg",
                    "dscp-min"
                  ]
                },
                "description": "Create or replace dscp-min on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dscp-min",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/dscp-cfg/dscp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg",
                    "dscp-min"
                  ]
                },
                "description": "Partially update dscp-min on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dscp-min",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/dscp-cfg/dscp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg",
                    "dscp-min"
                  ]
                },
                "description": "Remove dscp-min from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dscp-max",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/dscp-cfg/dscp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg",
                    "dscp-max"
                  ]
                },
                "description": "Retrieve dscp-max from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dscp-max",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/dscp-cfg/dscp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg",
                    "dscp-max"
                  ]
                },
                "description": "Create or replace dscp-max on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dscp-max",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/dscp-cfg/dscp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg",
                    "dscp-max"
                  ]
                },
                "description": "Partially update dscp-max on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dscp-max",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/filter-entry/dscp-cfg/dscp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "filter-entry",
                    "dscp-cfg",
                    "dscp-max"
                  ]
                },
                "description": "Remove dscp-max from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classifier-action-entry-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-action-entry-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-action-entry-cfg"
                  ]
                },
                "description": "Retrieve classifier-action-entry-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace classifier-action-entry-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-action-entry-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-action-entry-cfg"
                  ]
                },
                "description": "Create or replace classifier-action-entry-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"action-type\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update classifier-action-entry-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-action-entry-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-action-entry-cfg"
                  ]
                },
                "description": "Partially update classifier-action-entry-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"action-type\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete classifier-action-entry-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-action-entry-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-action-entry-cfg"
                  ]
                },
                "description": "Remove classifier-action-entry-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get action-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-action-entry-cfg/action-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-action-entry-cfg",
                    "action-type"
                  ]
                },
                "description": "Retrieve action-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace action-type",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-action-entry-cfg/action-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-action-entry-cfg",
                    "action-type"
                  ]
                },
                "description": "Create or replace action-type on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update action-type",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-action-entry-cfg/action-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-action-entry-cfg",
                    "action-type"
                  ]
                },
                "description": "Partially update action-type on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete action-type",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-policy:policies/policy-entry/classifier-entry/classifier-action-entry-cfg/action-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-policy:policies",
                    "policy-entry",
                    "classifier-entry",
                    "classifier-action-entry-cfg",
                    "action-type"
                  ]
                },
                "description": "Remove action-type from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-diffserv-target",
          "description": "Cisco IOS-XE IETF - ietf-diffserv-target\n\nIETF standard data from `ietf-diffserv-target` module.\n\n**Root containers:** 2 (diffserv-target-entry, diffserv-target-entry)\n**Paths:** 26 | **Operations:** 35\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 26 | Operations: 35",
          "item": [
            {
              "name": "GET Get diffserv-target-entry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry"
                  ]
                },
                "description": "Retrieve diffserv-target-entry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace diffserv-target-entry",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry"
                  ]
                },
                "description": "Create or replace diffserv-target-entry on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"direction\": \"inbound\",\n  \"policy-name\": \"CLASS-VOICE\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update diffserv-target-entry",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry"
                  ]
                },
                "description": "Partially update diffserv-target-entry on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"direction\": \"inbound\",\n  \"policy-name\": \"CLASS-VOICE\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete diffserv-target-entry",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry"
                  ]
                },
                "description": "Remove diffserv-target-entry from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get direction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "direction"
                  ]
                },
                "description": "Retrieve direction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace direction",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "direction"
                  ]
                },
                "description": "Create or replace direction on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"inbound\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update direction",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "direction"
                  ]
                },
                "description": "Partially update direction on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"inbound\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete direction",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "direction"
                  ]
                },
                "description": "Remove direction from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get policy-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/policy-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "policy-name"
                  ]
                },
                "description": "Retrieve policy-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace policy-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/policy-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "policy-name"
                  ]
                },
                "description": "Create or replace policy-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"CLASS-VOICE\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update policy-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/policy-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "policy-name"
                  ]
                },
                "description": "Partially update policy-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"CLASS-VOICE\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete policy-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/policy-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "policy-name"
                  ]
                },
                "description": "Remove policy-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffserv-target-classifier-statistics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics"
                  ]
                },
                "description": "Retrieve diffserv-target-classifier-statistics from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classifier-entry-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/classifier-entry-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "classifier-entry-name"
                  ]
                },
                "description": "Retrieve classifier-entry-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get parent-path",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/parent-path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "parent-path"
                  ]
                },
                "description": "Retrieve parent-path from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classifier-entry-statistics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/classifier-entry-statistics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "classifier-entry-statistics"
                  ]
                },
                "description": "Retrieve classifier-entry-statistics from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classified-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/classifier-entry-statistics/classified-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "classifier-entry-statistics",
                    "classified-pkts"
                  ]
                },
                "description": "Retrieve classified-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classified-bytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/classifier-entry-statistics/classified-bytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "classifier-entry-statistics",
                    "classified-bytes"
                  ]
                },
                "description": "Retrieve classified-bytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get classified-rate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/classifier-entry-statistics/classified-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "classifier-entry-statistics",
                    "classified-rate"
                  ]
                },
                "description": "Retrieve classified-rate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get meter-statistics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/meter-statistics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "meter-statistics"
                  ]
                },
                "description": "Retrieve meter-statistics from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get meter-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/meter-statistics/meter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "meter-statistics",
                    "meter-id"
                  ]
                },
                "description": "Retrieve meter-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get meter-succeed-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/meter-statistics/meter-succeed-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "meter-statistics",
                    "meter-succeed-pkts"
                  ]
                },
                "description": "Retrieve meter-succeed-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get meter-succeed-bytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/meter-statistics/meter-succeed-bytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "meter-statistics",
                    "meter-succeed-bytes"
                  ]
                },
                "description": "Retrieve meter-succeed-bytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get meter-failed-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/meter-statistics/meter-failed-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "meter-statistics",
                    "meter-failed-pkts"
                  ]
                },
                "description": "Retrieve meter-failed-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get meter-failed-bytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/meter-statistics/meter-failed-bytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "meter-statistics",
                    "meter-failed-bytes"
                  ]
                },
                "description": "Retrieve meter-failed-bytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get queuing-statistics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/queuing-statistics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "queuing-statistics"
                  ]
                },
                "description": "Retrieve queuing-statistics from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get output-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/queuing-statistics/output-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "queuing-statistics",
                    "output-pkts"
                  ]
                },
                "description": "Retrieve output-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get output-bytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/queuing-statistics/output-bytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "queuing-statistics",
                    "output-bytes"
                  ]
                },
                "description": "Retrieve output-bytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get queue-size-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/queuing-statistics/queue-size-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "queuing-statistics",
                    "queue-size-pkts"
                  ]
                },
                "description": "Retrieve queue-size-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get queue-size-bytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/queuing-statistics/queue-size-bytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "queuing-statistics",
                    "queue-size-bytes"
                  ]
                },
                "description": "Retrieve queue-size-bytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get drop-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/queuing-statistics/drop-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "queuing-statistics",
                    "drop-pkts"
                  ]
                },
                "description": "Retrieve drop-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get drop-bytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/queuing-statistics/drop-bytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "queuing-statistics",
                    "drop-bytes"
                  ]
                },
                "description": "Retrieve drop-bytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get wred-stats",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/queuing-statistics/wred-stats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "queuing-statistics",
                    "wred-stats"
                  ]
                },
                "description": "Retrieve wred-stats from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get early-drop-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/queuing-statistics/wred-stats/early-drop-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "queuing-statistics",
                    "wred-stats",
                    "early-drop-pkts"
                  ]
                },
                "description": "Retrieve early-drop-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get early-drop-bytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-diffserv-target:diffserv-target-entry/diffserv-target-classifier-statistics/queuing-statistics/wred-stats/early-drop-bytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-diffserv-target:diffserv-target-entry",
                    "diffserv-target-classifier-statistics",
                    "queuing-statistics",
                    "wred-stats",
                    "early-drop-bytes"
                  ]
                },
                "description": "Retrieve early-drop-bytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-event-notifications",
          "description": "Cisco IOS-XE IETF - ietf-event-notifications\n\nIETF standard data from `ietf-event-notifications` module.\n\n**Root containers:** 8 (streams, filters, subscription-config, subscriptions, output...)\n**Paths:** 37 | **Operations:** 91\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 37 | Operations: 91",
          "item": [
            {
              "name": "GET Get streams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:streams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:streams"
                  ]
                },
                "description": "Retrieve streams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stream",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:streams/stream",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:streams",
                    "stream"
                  ]
                },
                "description": "Retrieve stream from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filters",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:filters",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:filters"
                  ]
                },
                "description": "Retrieve filters from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filters",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:filters",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:filters"
                  ]
                },
                "description": "Create or replace filters on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filter\": [\n    {\n      \"filter-id\": \"1\",\n      \"filter\": {}\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filters",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:filters",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:filters"
                  ]
                },
                "description": "Partially update filters on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filter\": [\n    {\n      \"filter-id\": \"1\",\n      \"filter\": {}\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filters",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:filters",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:filters"
                  ]
                },
                "description": "Remove filters from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:filters/filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:filters",
                    "filter"
                  ]
                },
                "description": "Retrieve filter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filter",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:filters/filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:filters",
                    "filter"
                  ]
                },
                "description": "Create or replace filter on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"filter-id\": \"1\",\n    \"filter\": {}\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filter",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:filters/filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:filters",
                    "filter"
                  ]
                },
                "description": "Partially update filter on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"filter-id\": \"1\",\n    \"filter\": {}\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filter",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:filters/filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:filters",
                    "filter"
                  ]
                },
                "description": "Remove filter from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filter-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:filters/filter/filter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:filters",
                    "filter",
                    "filter-id"
                  ]
                },
                "description": "Retrieve filter-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filter-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:filters/filter/filter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:filters",
                    "filter",
                    "filter-id"
                  ]
                },
                "description": "Create or replace filter-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filter-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:filters/filter/filter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:filters",
                    "filter",
                    "filter-id"
                  ]
                },
                "description": "Partially update filter-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filter-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:filters/filter/filter-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:filters",
                    "filter",
                    "filter-id"
                  ]
                },
                "description": "Remove filter-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:filters/filter/filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:filters",
                    "filter",
                    "filter"
                  ]
                },
                "description": "Retrieve filter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filter",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:filters/filter/filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:filters",
                    "filter",
                    "filter"
                  ]
                },
                "description": "Create or replace filter on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filter",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:filters/filter/filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:filters",
                    "filter",
                    "filter"
                  ]
                },
                "description": "Partially update filter on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filter",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:filters/filter/filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:filters",
                    "filter",
                    "filter"
                  ]
                },
                "description": "Remove filter from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get subscription-config",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config"
                  ]
                },
                "description": "Retrieve subscription-config from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace subscription-config",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config"
                  ]
                },
                "description": "Create or replace subscription-config on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"subscription\": [\n    {\n      \"subscription-id\": \"1\",\n      \"stream\": \"configured-value\",\n      \"encoding\": \"configured-value\",\n      \"filter\": {},\n      \"startTime\": \"10:30:45\",\n      \"stopTime\": \"10:30:45\",\n      \"receivers\": {\n        \"receiver\": {}\n      },\n      \"source-interface\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update subscription-config",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config"
                  ]
                },
                "description": "Partially update subscription-config on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"subscription\": [\n    {\n      \"subscription-id\": \"1\",\n      \"stream\": \"configured-value\",\n      \"encoding\": \"configured-value\",\n      \"filter\": {},\n      \"startTime\": \"10:30:45\",\n      \"stopTime\": \"10:30:45\",\n      \"receivers\": {\n        \"receiver\": {}\n      },\n      \"source-interface\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete subscription-config",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config"
                  ]
                },
                "description": "Remove subscription-config from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get subscription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription"
                  ]
                },
                "description": "Retrieve subscription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace subscription",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription"
                  ]
                },
                "description": "Create or replace subscription on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"subscription-id\": \"1\",\n    \"stream\": \"configured-value\",\n    \"encoding\": \"configured-value\",\n    \"filter\": {},\n    \"startTime\": \"10:30:45\",\n    \"stopTime\": \"10:30:45\",\n    \"receivers\": {\n      \"receiver\": [\n        {}\n      ]\n    },\n    \"source-interface\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update subscription",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription"
                  ]
                },
                "description": "Partially update subscription on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"subscription-id\": \"1\",\n    \"stream\": \"configured-value\",\n    \"encoding\": \"configured-value\",\n    \"filter\": {},\n    \"startTime\": \"10:30:45\",\n    \"stopTime\": \"10:30:45\",\n    \"receivers\": {\n      \"receiver\": [\n        {}\n      ]\n    },\n    \"source-interface\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete subscription",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription"
                  ]
                },
                "description": "Remove subscription from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get subscription-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/subscription-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "subscription-id"
                  ]
                },
                "description": "Retrieve subscription-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace subscription-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/subscription-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "subscription-id"
                  ]
                },
                "description": "Create or replace subscription-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update subscription-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/subscription-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "subscription-id"
                  ]
                },
                "description": "Partially update subscription-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete subscription-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/subscription-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "subscription-id"
                  ]
                },
                "description": "Remove subscription-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stream",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/stream",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "stream"
                  ]
                },
                "description": "Retrieve stream from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace stream",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/stream",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "stream"
                  ]
                },
                "description": "Create or replace stream on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update stream",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/stream",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "stream"
                  ]
                },
                "description": "Partially update stream on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete stream",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/stream",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "stream"
                  ]
                },
                "description": "Remove stream from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get encoding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/encoding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "encoding"
                  ]
                },
                "description": "Retrieve encoding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace encoding",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/encoding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "encoding"
                  ]
                },
                "description": "Create or replace encoding on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update encoding",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/encoding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "encoding"
                  ]
                },
                "description": "Partially update encoding on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete encoding",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/encoding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "encoding"
                  ]
                },
                "description": "Remove encoding from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "filter"
                  ]
                },
                "description": "Retrieve filter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filter",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "filter"
                  ]
                },
                "description": "Create or replace filter on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filter",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "filter"
                  ]
                },
                "description": "Partially update filter on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filter",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "filter"
                  ]
                },
                "description": "Remove filter from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get startTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/startTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "startTime"
                  ]
                },
                "description": "Retrieve startTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace startTime",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/startTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "startTime"
                  ]
                },
                "description": "Create or replace startTime on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update startTime",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/startTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "startTime"
                  ]
                },
                "description": "Partially update startTime on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete startTime",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/startTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "startTime"
                  ]
                },
                "description": "Remove startTime from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stopTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/stopTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "stopTime"
                  ]
                },
                "description": "Retrieve stopTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace stopTime",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/stopTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "stopTime"
                  ]
                },
                "description": "Create or replace stopTime on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update stopTime",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/stopTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "stopTime"
                  ]
                },
                "description": "Partially update stopTime on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete stopTime",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/stopTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "stopTime"
                  ]
                },
                "description": "Remove stopTime from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get receivers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers"
                  ]
                },
                "description": "Retrieve receivers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace receivers",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers"
                  ]
                },
                "description": "Create or replace receivers on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"receiver\": [\n    {\n      \"address\": \"10.1.1.1\",\n      \"port\": \"443\",\n      \"protocol\": \"tcp\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update receivers",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers"
                  ]
                },
                "description": "Partially update receivers on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"receiver\": [\n    {\n      \"address\": \"10.1.1.1\",\n      \"port\": \"443\",\n      \"protocol\": \"tcp\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete receivers",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers"
                  ]
                },
                "description": "Remove receivers from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get receiver",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers/receiver",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers",
                    "receiver"
                  ]
                },
                "description": "Retrieve receiver from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace receiver",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers/receiver",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers",
                    "receiver"
                  ]
                },
                "description": "Create or replace receiver on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"address\": \"10.1.1.1\",\n    \"port\": \"443\",\n    \"protocol\": \"tcp\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update receiver",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers/receiver",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers",
                    "receiver"
                  ]
                },
                "description": "Partially update receiver on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"address\": \"10.1.1.1\",\n    \"port\": \"443\",\n    \"protocol\": \"tcp\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete receiver",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers/receiver",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers",
                    "receiver"
                  ]
                },
                "description": "Remove receiver from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers/receiver/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers",
                    "receiver",
                    "address"
                  ]
                },
                "description": "Retrieve address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace address",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers/receiver/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers",
                    "receiver",
                    "address"
                  ]
                },
                "description": "Create or replace address on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update address",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers/receiver/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers",
                    "receiver",
                    "address"
                  ]
                },
                "description": "Partially update address on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete address",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers/receiver/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers",
                    "receiver",
                    "address"
                  ]
                },
                "description": "Remove address from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get port",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers/receiver/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers",
                    "receiver",
                    "port"
                  ]
                },
                "description": "Retrieve port from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace port",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers/receiver/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers",
                    "receiver",
                    "port"
                  ]
                },
                "description": "Create or replace port on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"443\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update port",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers/receiver/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers",
                    "receiver",
                    "port"
                  ]
                },
                "description": "Partially update port on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"443\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete port",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers/receiver/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers",
                    "receiver",
                    "port"
                  ]
                },
                "description": "Remove port from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers/receiver/protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers",
                    "receiver",
                    "protocol"
                  ]
                },
                "description": "Retrieve protocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace protocol",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers/receiver/protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers",
                    "receiver",
                    "protocol"
                  ]
                },
                "description": "Create or replace protocol on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"tcp\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update protocol",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers/receiver/protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers",
                    "receiver",
                    "protocol"
                  ]
                },
                "description": "Partially update protocol on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"tcp\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete protocol",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/receivers/receiver/protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "receivers",
                    "receiver",
                    "protocol"
                  ]
                },
                "description": "Remove protocol from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get source-interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/source-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "source-interface"
                  ]
                },
                "description": "Retrieve source-interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace source-interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/source-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "source-interface"
                  ]
                },
                "description": "Create or replace source-interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update source-interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/source-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "source-interface"
                  ]
                },
                "description": "Partially update source-interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete source-interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscription-config/subscription/source-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscription-config",
                    "subscription",
                    "source-interface"
                  ]
                },
                "description": "Remove source-interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get subscriptions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscriptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscriptions"
                  ]
                },
                "description": "Retrieve subscriptions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get subscription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscriptions/subscription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscriptions",
                    "subscription"
                  ]
                },
                "description": "Retrieve subscription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get subscription-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscriptions/subscription/subscription-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscriptions",
                    "subscription",
                    "subscription-id"
                  ]
                },
                "description": "Retrieve subscription-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get configured-subscription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscriptions/subscription/configured-subscription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscriptions",
                    "subscription",
                    "configured-subscription"
                  ]
                },
                "description": "Retrieve configured-subscription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get subscription-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscriptions/subscription/subscription-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscriptions",
                    "subscription",
                    "subscription-status"
                  ]
                },
                "description": "Retrieve subscription-status from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stream",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscriptions/subscription/stream",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscriptions",
                    "subscription",
                    "stream"
                  ]
                },
                "description": "Retrieve stream from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get encoding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscriptions/subscription/encoding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscriptions",
                    "subscription",
                    "encoding"
                  ]
                },
                "description": "Retrieve encoding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscriptions/subscription/filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscriptions",
                    "subscription",
                    "filter"
                  ]
                },
                "description": "Retrieve filter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get startTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscriptions/subscription/startTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscriptions",
                    "subscription",
                    "startTime"
                  ]
                },
                "description": "Retrieve startTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stopTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscriptions/subscription/stopTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscriptions",
                    "subscription",
                    "stopTime"
                  ]
                },
                "description": "Retrieve stopTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get receivers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscriptions/subscription/receivers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscriptions",
                    "subscription",
                    "receivers"
                  ]
                },
                "description": "Retrieve receivers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get receiver",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscriptions/subscription/receivers/receiver",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscriptions",
                    "subscription",
                    "receivers",
                    "receiver"
                  ]
                },
                "description": "Retrieve receiver from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscriptions/subscription/receivers/receiver/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscriptions",
                    "subscription",
                    "receivers",
                    "receiver",
                    "address"
                  ]
                },
                "description": "Retrieve address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get port",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscriptions/subscription/receivers/receiver/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscriptions",
                    "subscription",
                    "receivers",
                    "receiver",
                    "port"
                  ]
                },
                "description": "Retrieve port from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscriptions/subscription/receivers/receiver/protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscriptions",
                    "subscription",
                    "receivers",
                    "receiver",
                    "protocol"
                  ]
                },
                "description": "Retrieve protocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get source-interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-event-notifications:subscriptions/subscription/source-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-event-notifications:subscriptions",
                    "subscription",
                    "source-interface"
                  ]
                },
                "description": "Retrieve source-interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute output",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/ietf-event-notifications:output",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "ietf-event-notifications:output"
                  ]
                },
                "description": "Execute the **output** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 No content",
                  "status": "No content",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-interfaces-ext",
          "description": "Cisco IOS-XE IETF - ietf-interfaces-ext\n\nIETF standard data from `ietf-interfaces-ext` module.\n\n**Root containers:** 2 (in-pkts, out-pkts)\n**Paths:** 2 | **Operations:** 2\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 2 | Operations: 2",
          "item": [
            {
              "name": "GET Get in-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces-ext:in-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces-ext:in-pkts"
                  ]
                },
                "description": "Retrieve in-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get out-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces-ext:out-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces-ext:out-pkts"
                  ]
                },
                "description": "Retrieve out-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-interfaces",
          "description": "Cisco IOS-XE IETF - ietf-interfaces\n\nIETF standard data from `ietf-interfaces` module.\n\n**Root containers:** 2 (interfaces, interfaces-state)\n**Paths:** 36 | **Operations:** 60\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 36 | Operations: 60",
          "item": [
            {
              "name": "GET Get interfaces",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces"
                  ]
                },
                "description": "Retrieve interfaces from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace interfaces",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces"
                  ]
                },
                "description": "Create or replace interfaces on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interface\": [\n    {\n      \"name\": \"example-1\",\n      \"description\": \"Configured via RESTCONF\",\n      \"type\": \"default\",\n      \"enabled\": true,\n      \"link-up-down-trap-enable\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update interfaces",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces"
                  ]
                },
                "description": "Partially update interfaces on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interface\": [\n    {\n      \"name\": \"example-1\",\n      \"description\": \"Configured via RESTCONF\",\n      \"type\": \"default\",\n      \"enabled\": true,\n      \"link-up-down-trap-enable\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete interfaces",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces"
                  ]
                },
                "description": "Remove interfaces from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface"
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface"
                  ]
                },
                "description": "Create or replace interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"description\": \"Configured via RESTCONF\",\n    \"type\": \"default\",\n    \"enabled\": true,\n    \"link-up-down-trap-enable\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface"
                  ]
                },
                "description": "Partially update interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"description\": \"Configured via RESTCONF\",\n    \"type\": \"default\",\n    \"enabled\": true,\n    \"link-up-down-trap-enable\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface"
                  ]
                },
                "description": "Remove interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"description\": \"Configured via RESTCONF\",\n    \"type\": \"default\",\n    \"enabled\": true,\n    \"link-up-down-trap-enable\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"description\": \"Configured via RESTCONF\",\n    \"type\": \"default\",\n    \"enabled\": true,\n    \"link-up-down-trap-enable\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get description",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "description"
                  ]
                },
                "description": "Retrieve description from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace description",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "description"
                  ]
                },
                "description": "Create or replace description on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"Configured via RESTCONF\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update description",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "description"
                  ]
                },
                "description": "Partially update description on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"Configured via RESTCONF\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete description",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "description"
                  ]
                },
                "description": "Remove description from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "type"
                  ]
                },
                "description": "Retrieve type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace type",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "type"
                  ]
                },
                "description": "Create or replace type on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update type",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "type"
                  ]
                },
                "description": "Partially update type on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete type",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "type"
                  ]
                },
                "description": "Remove type from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get link-up-down-trap-enable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/link-up-down-trap-enable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "link-up-down-trap-enable"
                  ]
                },
                "description": "Retrieve link-up-down-trap-enable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace link-up-down-trap-enable",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/link-up-down-trap-enable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "link-up-down-trap-enable"
                  ]
                },
                "description": "Create or replace link-up-down-trap-enable on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update link-up-down-trap-enable",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/link-up-down-trap-enable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "link-up-down-trap-enable"
                  ]
                },
                "description": "Partially update link-up-down-trap-enable on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete link-up-down-trap-enable",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces/interface/link-up-down-trap-enable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces",
                    "interface",
                    "link-up-down-trap-enable"
                  ]
                },
                "description": "Remove link-up-down-trap-enable from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interfaces-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state"
                  ]
                },
                "description": "Retrieve interfaces-state from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface"
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "type"
                  ]
                },
                "description": "Retrieve type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get admin-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/admin-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "admin-status"
                  ]
                },
                "description": "Retrieve admin-status from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get oper-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/oper-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "oper-status"
                  ]
                },
                "description": "Retrieve oper-status from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get last-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/last-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "last-change"
                  ]
                },
                "description": "Retrieve last-change from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get if-index",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/if-index",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "if-index"
                  ]
                },
                "description": "Retrieve if-index from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get phys-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/phys-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "phys-address"
                  ]
                },
                "description": "Retrieve phys-address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get higher-layer-if",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/higher-layer-if",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "higher-layer-if"
                  ]
                },
                "description": "Retrieve higher-layer-if from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lower-layer-if",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/lower-layer-if",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "lower-layer-if"
                  ]
                },
                "description": "Retrieve lower-layer-if from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get speed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/speed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "speed"
                  ]
                },
                "description": "Retrieve speed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get statistics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/statistics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "statistics"
                  ]
                },
                "description": "Retrieve statistics from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get discontinuity-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/statistics/discontinuity-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "statistics",
                    "discontinuity-time"
                  ]
                },
                "description": "Retrieve discontinuity-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/statistics/in-octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "statistics",
                    "in-octets"
                  ]
                },
                "description": "Retrieve in-octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-unicast-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/statistics/in-unicast-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "statistics",
                    "in-unicast-pkts"
                  ]
                },
                "description": "Retrieve in-unicast-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-broadcast-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/statistics/in-broadcast-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "statistics",
                    "in-broadcast-pkts"
                  ]
                },
                "description": "Retrieve in-broadcast-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-multicast-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/statistics/in-multicast-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "statistics",
                    "in-multicast-pkts"
                  ]
                },
                "description": "Retrieve in-multicast-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-discards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/statistics/in-discards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "statistics",
                    "in-discards"
                  ]
                },
                "description": "Retrieve in-discards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-errors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/statistics/in-errors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "statistics",
                    "in-errors"
                  ]
                },
                "description": "Retrieve in-errors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-unknown-protos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/statistics/in-unknown-protos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "statistics",
                    "in-unknown-protos"
                  ]
                },
                "description": "Retrieve in-unknown-protos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get out-octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/statistics/out-octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "statistics",
                    "out-octets"
                  ]
                },
                "description": "Retrieve out-octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get out-unicast-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/statistics/out-unicast-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "statistics",
                    "out-unicast-pkts"
                  ]
                },
                "description": "Retrieve out-unicast-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get out-broadcast-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/statistics/out-broadcast-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "statistics",
                    "out-broadcast-pkts"
                  ]
                },
                "description": "Retrieve out-broadcast-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get out-multicast-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/statistics/out-multicast-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "statistics",
                    "out-multicast-pkts"
                  ]
                },
                "description": "Retrieve out-multicast-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get out-discards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/statistics/out-discards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "statistics",
                    "out-discards"
                  ]
                },
                "description": "Retrieve out-discards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get out-errors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-interfaces:interfaces-state/interface/statistics/out-errors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-interfaces:interfaces-state",
                    "interface",
                    "statistics",
                    "out-errors"
                  ]
                },
                "description": "Retrieve out-errors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-ip",
          "description": "Cisco IOS-XE IETF - ietf-ip\n\nIETF standard data from `ietf-ip` module.\n\n**Root containers:** 4 (ipv4, ipv6, ipv4, ipv6)\n**Paths:** 33 | **Operations:** 111\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 33 | Operations: 111",
          "item": [
            {
              "name": "GET Get ipv4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4"
                  ]
                },
                "description": "Retrieve ipv4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv4",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4"
                  ]
                },
                "description": "Create or replace ipv4 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"forwarding\": true,\n  \"mtu\": 1500,\n  \"address\": [\n    {\n      \"ip\": \"10.1.1.1\",\n      \"prefix-length\": 24\n    }\n  ],\n  \"neighbor\": [\n    {\n      \"ip\": \"10.1.1.1\",\n      \"link-layer-address\": \"10.1.1.1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv4",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4"
                  ]
                },
                "description": "Partially update ipv4 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"forwarding\": true,\n  \"mtu\": 1500,\n  \"address\": [\n    {\n      \"ip\": \"10.1.1.1\",\n      \"prefix-length\": 24\n    }\n  ],\n  \"neighbor\": [\n    {\n      \"ip\": \"10.1.1.1\",\n      \"link-layer-address\": \"10.1.1.1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv4",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4"
                  ]
                },
                "description": "Remove ipv4 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get forwarding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/forwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "forwarding"
                  ]
                },
                "description": "Retrieve forwarding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace forwarding",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/forwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "forwarding"
                  ]
                },
                "description": "Create or replace forwarding on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update forwarding",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/forwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "forwarding"
                  ]
                },
                "description": "Partially update forwarding on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete forwarding",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/forwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "forwarding"
                  ]
                },
                "description": "Remove forwarding from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "mtu"
                  ]
                },
                "description": "Retrieve mtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mtu",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "mtu"
                  ]
                },
                "description": "Create or replace mtu on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1500",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mtu",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "mtu"
                  ]
                },
                "description": "Partially update mtu on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1500",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mtu",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "mtu"
                  ]
                },
                "description": "Remove mtu from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "address"
                  ]
                },
                "description": "Retrieve address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace address",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "address"
                  ]
                },
                "description": "Create or replace address on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"ip\": \"10.1.1.1\",\n    \"prefix-length\": 24\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update address",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "address"
                  ]
                },
                "description": "Partially update address on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"ip\": \"10.1.1.1\",\n    \"prefix-length\": 24\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete address",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "address"
                  ]
                },
                "description": "Remove address from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/address/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "address",
                    "ip"
                  ]
                },
                "description": "Retrieve ip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ip",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/address/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "address",
                    "ip"
                  ]
                },
                "description": "Create or replace ip on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ip",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/address/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "address",
                    "ip"
                  ]
                },
                "description": "Partially update ip on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ip",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/address/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "address",
                    "ip"
                  ]
                },
                "description": "Remove ip from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prefix-length",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/address/prefix-length",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "address",
                    "prefix-length"
                  ]
                },
                "description": "Retrieve prefix-length from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace prefix-length",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/address/prefix-length",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "address",
                    "prefix-length"
                  ]
                },
                "description": "Create or replace prefix-length on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "24",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update prefix-length",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/address/prefix-length",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "address",
                    "prefix-length"
                  ]
                },
                "description": "Partially update prefix-length on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "24",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete prefix-length",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/address/prefix-length",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "address",
                    "prefix-length"
                  ]
                },
                "description": "Remove prefix-length from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get neighbor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/neighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "neighbor"
                  ]
                },
                "description": "Retrieve neighbor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace neighbor",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/neighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "neighbor"
                  ]
                },
                "description": "Create or replace neighbor on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"ip\": \"10.1.1.1\",\n    \"link-layer-address\": \"10.1.1.1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update neighbor",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/neighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "neighbor"
                  ]
                },
                "description": "Partially update neighbor on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"ip\": \"10.1.1.1\",\n    \"link-layer-address\": \"10.1.1.1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete neighbor",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/neighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "neighbor"
                  ]
                },
                "description": "Remove neighbor from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/neighbor/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "neighbor",
                    "ip"
                  ]
                },
                "description": "Retrieve ip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ip",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/neighbor/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "neighbor",
                    "ip"
                  ]
                },
                "description": "Create or replace ip on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ip",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/neighbor/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "neighbor",
                    "ip"
                  ]
                },
                "description": "Partially update ip on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ip",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/neighbor/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "neighbor",
                    "ip"
                  ]
                },
                "description": "Remove ip from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get link-layer-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/neighbor/link-layer-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "neighbor",
                    "link-layer-address"
                  ]
                },
                "description": "Retrieve link-layer-address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace link-layer-address",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/neighbor/link-layer-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "neighbor",
                    "link-layer-address"
                  ]
                },
                "description": "Create or replace link-layer-address on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update link-layer-address",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/neighbor/link-layer-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "neighbor",
                    "link-layer-address"
                  ]
                },
                "description": "Partially update link-layer-address on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete link-layer-address",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/neighbor/link-layer-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "neighbor",
                    "link-layer-address"
                  ]
                },
                "description": "Remove link-layer-address from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6"
                  ]
                },
                "description": "Retrieve ipv6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv6",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6"
                  ]
                },
                "description": "Create or replace ipv6 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"forwarding\": true,\n  \"mtu\": 1500,\n  \"address\": [\n    {\n      \"ip\": \"10.1.1.1\",\n      \"prefix-length\": 24\n    }\n  ],\n  \"neighbor\": [\n    {\n      \"ip\": \"10.1.1.1\",\n      \"link-layer-address\": \"10.1.1.1\"\n    }\n  ],\n  \"dup-addr-detect-transmits\": 1,\n  \"autoconf\": {\n    \"create-global-addresses\": true,\n    \"create-temporary-addresses\": true,\n    \"temporary-valid-lifetime\": 1,\n    \"temporary-preferred-lifetime\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv6",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6"
                  ]
                },
                "description": "Partially update ipv6 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"forwarding\": true,\n  \"mtu\": 1500,\n  \"address\": [\n    {\n      \"ip\": \"10.1.1.1\",\n      \"prefix-length\": 24\n    }\n  ],\n  \"neighbor\": [\n    {\n      \"ip\": \"10.1.1.1\",\n      \"link-layer-address\": \"10.1.1.1\"\n    }\n  ],\n  \"dup-addr-detect-transmits\": 1,\n  \"autoconf\": {\n    \"create-global-addresses\": true,\n    \"create-temporary-addresses\": true,\n    \"temporary-valid-lifetime\": 1,\n    \"temporary-preferred-lifetime\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv6",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6"
                  ]
                },
                "description": "Remove ipv6 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get forwarding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/forwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "forwarding"
                  ]
                },
                "description": "Retrieve forwarding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace forwarding",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/forwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "forwarding"
                  ]
                },
                "description": "Create or replace forwarding on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update forwarding",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/forwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "forwarding"
                  ]
                },
                "description": "Partially update forwarding on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete forwarding",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/forwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "forwarding"
                  ]
                },
                "description": "Remove forwarding from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "mtu"
                  ]
                },
                "description": "Retrieve mtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mtu",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "mtu"
                  ]
                },
                "description": "Create or replace mtu on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1500",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mtu",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "mtu"
                  ]
                },
                "description": "Partially update mtu on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1500",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mtu",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "mtu"
                  ]
                },
                "description": "Remove mtu from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "address"
                  ]
                },
                "description": "Retrieve address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace address",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "address"
                  ]
                },
                "description": "Create or replace address on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"ip\": \"10.1.1.1\",\n    \"prefix-length\": 24\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update address",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "address"
                  ]
                },
                "description": "Partially update address on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"ip\": \"10.1.1.1\",\n    \"prefix-length\": 24\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete address",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "address"
                  ]
                },
                "description": "Remove address from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/address/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "address",
                    "ip"
                  ]
                },
                "description": "Retrieve ip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ip",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/address/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "address",
                    "ip"
                  ]
                },
                "description": "Create or replace ip on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ip",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/address/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "address",
                    "ip"
                  ]
                },
                "description": "Partially update ip on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ip",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/address/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "address",
                    "ip"
                  ]
                },
                "description": "Remove ip from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prefix-length",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/address/prefix-length",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "address",
                    "prefix-length"
                  ]
                },
                "description": "Retrieve prefix-length from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace prefix-length",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/address/prefix-length",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "address",
                    "prefix-length"
                  ]
                },
                "description": "Create or replace prefix-length on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "24",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update prefix-length",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/address/prefix-length",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "address",
                    "prefix-length"
                  ]
                },
                "description": "Partially update prefix-length on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "24",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete prefix-length",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/address/prefix-length",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "address",
                    "prefix-length"
                  ]
                },
                "description": "Remove prefix-length from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get neighbor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/neighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "neighbor"
                  ]
                },
                "description": "Retrieve neighbor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace neighbor",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/neighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "neighbor"
                  ]
                },
                "description": "Create or replace neighbor on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"ip\": \"10.1.1.1\",\n    \"link-layer-address\": \"10.1.1.1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update neighbor",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/neighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "neighbor"
                  ]
                },
                "description": "Partially update neighbor on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"ip\": \"10.1.1.1\",\n    \"link-layer-address\": \"10.1.1.1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete neighbor",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/neighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "neighbor"
                  ]
                },
                "description": "Remove neighbor from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/neighbor/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "neighbor",
                    "ip"
                  ]
                },
                "description": "Retrieve ip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ip",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/neighbor/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "neighbor",
                    "ip"
                  ]
                },
                "description": "Create or replace ip on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ip",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/neighbor/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "neighbor",
                    "ip"
                  ]
                },
                "description": "Partially update ip on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ip",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/neighbor/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "neighbor",
                    "ip"
                  ]
                },
                "description": "Remove ip from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get link-layer-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/neighbor/link-layer-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "neighbor",
                    "link-layer-address"
                  ]
                },
                "description": "Retrieve link-layer-address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace link-layer-address",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/neighbor/link-layer-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "neighbor",
                    "link-layer-address"
                  ]
                },
                "description": "Create or replace link-layer-address on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update link-layer-address",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/neighbor/link-layer-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "neighbor",
                    "link-layer-address"
                  ]
                },
                "description": "Partially update link-layer-address on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete link-layer-address",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/neighbor/link-layer-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "neighbor",
                    "link-layer-address"
                  ]
                },
                "description": "Remove link-layer-address from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dup-addr-detect-transmits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/dup-addr-detect-transmits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "dup-addr-detect-transmits"
                  ]
                },
                "description": "Retrieve dup-addr-detect-transmits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dup-addr-detect-transmits",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/dup-addr-detect-transmits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "dup-addr-detect-transmits"
                  ]
                },
                "description": "Create or replace dup-addr-detect-transmits on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dup-addr-detect-transmits",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/dup-addr-detect-transmits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "dup-addr-detect-transmits"
                  ]
                },
                "description": "Partially update dup-addr-detect-transmits on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dup-addr-detect-transmits",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/dup-addr-detect-transmits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "dup-addr-detect-transmits"
                  ]
                },
                "description": "Remove dup-addr-detect-transmits from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get autoconf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf"
                  ]
                },
                "description": "Retrieve autoconf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace autoconf",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf"
                  ]
                },
                "description": "Create or replace autoconf on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"create-global-addresses\": true,\n  \"create-temporary-addresses\": true,\n  \"temporary-valid-lifetime\": 1,\n  \"temporary-preferred-lifetime\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update autoconf",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf"
                  ]
                },
                "description": "Partially update autoconf on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"create-global-addresses\": true,\n  \"create-temporary-addresses\": true,\n  \"temporary-valid-lifetime\": 1,\n  \"temporary-preferred-lifetime\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete autoconf",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf"
                  ]
                },
                "description": "Remove autoconf from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get create-global-addresses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf/create-global-addresses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf",
                    "create-global-addresses"
                  ]
                },
                "description": "Retrieve create-global-addresses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace create-global-addresses",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf/create-global-addresses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf",
                    "create-global-addresses"
                  ]
                },
                "description": "Create or replace create-global-addresses on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update create-global-addresses",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf/create-global-addresses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf",
                    "create-global-addresses"
                  ]
                },
                "description": "Partially update create-global-addresses on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete create-global-addresses",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf/create-global-addresses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf",
                    "create-global-addresses"
                  ]
                },
                "description": "Remove create-global-addresses from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get create-temporary-addresses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf/create-temporary-addresses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf",
                    "create-temporary-addresses"
                  ]
                },
                "description": "Retrieve create-temporary-addresses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace create-temporary-addresses",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf/create-temporary-addresses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf",
                    "create-temporary-addresses"
                  ]
                },
                "description": "Create or replace create-temporary-addresses on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update create-temporary-addresses",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf/create-temporary-addresses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf",
                    "create-temporary-addresses"
                  ]
                },
                "description": "Partially update create-temporary-addresses on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete create-temporary-addresses",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf/create-temporary-addresses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf",
                    "create-temporary-addresses"
                  ]
                },
                "description": "Remove create-temporary-addresses from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get temporary-valid-lifetime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf/temporary-valid-lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf",
                    "temporary-valid-lifetime"
                  ]
                },
                "description": "Retrieve temporary-valid-lifetime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace temporary-valid-lifetime",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf/temporary-valid-lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf",
                    "temporary-valid-lifetime"
                  ]
                },
                "description": "Create or replace temporary-valid-lifetime on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update temporary-valid-lifetime",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf/temporary-valid-lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf",
                    "temporary-valid-lifetime"
                  ]
                },
                "description": "Partially update temporary-valid-lifetime on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete temporary-valid-lifetime",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf/temporary-valid-lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf",
                    "temporary-valid-lifetime"
                  ]
                },
                "description": "Remove temporary-valid-lifetime from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get temporary-preferred-lifetime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf/temporary-preferred-lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf",
                    "temporary-preferred-lifetime"
                  ]
                },
                "description": "Retrieve temporary-preferred-lifetime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace temporary-preferred-lifetime",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf/temporary-preferred-lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf",
                    "temporary-preferred-lifetime"
                  ]
                },
                "description": "Create or replace temporary-preferred-lifetime on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update temporary-preferred-lifetime",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf/temporary-preferred-lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf",
                    "temporary-preferred-lifetime"
                  ]
                },
                "description": "Partially update temporary-preferred-lifetime on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete temporary-preferred-lifetime",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/autoconf/temporary-preferred-lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "autoconf",
                    "temporary-preferred-lifetime"
                  ]
                },
                "description": "Remove temporary-preferred-lifetime from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get origin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/address/origin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "address",
                    "origin"
                  ]
                },
                "description": "Retrieve origin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get origin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv4/neighbor/origin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv4",
                    "neighbor",
                    "origin"
                  ]
                },
                "description": "Retrieve origin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get origin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/address/origin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "address",
                    "origin"
                  ]
                },
                "description": "Retrieve origin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/address/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "address",
                    "status"
                  ]
                },
                "description": "Retrieve status from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get origin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/neighbor/origin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "neighbor",
                    "origin"
                  ]
                },
                "description": "Retrieve origin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get is-router",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/neighbor/is-router",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "neighbor",
                    "is-router"
                  ]
                },
                "description": "Retrieve is-router from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ip:ipv6/neighbor/state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ip:ipv6",
                    "neighbor",
                    "state"
                  ]
                },
                "description": "Retrieve state from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-ipv4-unicast-routing",
          "description": "Cisco IOS-XE IETF - ietf-ipv4-unicast-routing\n\nIETF standard data from `ietf-ipv4-unicast-routing` module.\n\n**Root containers:** 3 (next-hop, route, next-hop)\n**Paths:** 3 | **Operations:** 12\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 3 | Operations: 12",
          "item": [
            {
              "name": "GET Get next-hop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv4-unicast-routing:next-hop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv4-unicast-routing:next-hop"
                  ]
                },
                "description": "Retrieve next-hop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace next-hop",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv4-unicast-routing:next-hop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv4-unicast-routing:next-hop"
                  ]
                },
                "description": "Create or replace next-hop on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update next-hop",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv4-unicast-routing:next-hop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv4-unicast-routing:next-hop"
                  ]
                },
                "description": "Partially update next-hop on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete next-hop",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv4-unicast-routing:next-hop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv4-unicast-routing:next-hop"
                  ]
                },
                "description": "Remove next-hop from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get route",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv4-unicast-routing:route",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv4-unicast-routing:route"
                  ]
                },
                "description": "Retrieve route from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace route",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv4-unicast-routing:route",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv4-unicast-routing:route"
                  ]
                },
                "description": "Create or replace route on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"next-hop\": {}\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update route",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv4-unicast-routing:route",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv4-unicast-routing:route"
                  ]
                },
                "description": "Partially update route on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"next-hop\": {}\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete route",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv4-unicast-routing:route",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv4-unicast-routing:route"
                  ]
                },
                "description": "Remove route from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get next-hop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv4-unicast-routing:route/next-hop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv4-unicast-routing:route",
                    "next-hop"
                  ]
                },
                "description": "Retrieve next-hop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace next-hop",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv4-unicast-routing:route/next-hop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv4-unicast-routing:route",
                    "next-hop"
                  ]
                },
                "description": "Create or replace next-hop on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update next-hop",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv4-unicast-routing:route/next-hop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv4-unicast-routing:route",
                    "next-hop"
                  ]
                },
                "description": "Partially update next-hop on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete next-hop",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv4-unicast-routing:route/next-hop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv4-unicast-routing:route",
                    "next-hop"
                  ]
                },
                "description": "Remove next-hop from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-ipv6-unicast-routing",
          "description": "Cisco IOS-XE IETF - ietf-ipv6-unicast-routing\n\nIETF standard data from `ietf-ipv6-unicast-routing` module.\n\n**Root containers:** 1 (ipv6-router-advertisements)\n**Paths:** 15 | **Operations:** 60\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 15 | Operations: 60",
          "item": [
            {
              "name": "GET Get ipv6-router-advertisements",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements"
                  ]
                },
                "description": "Retrieve ipv6-router-advertisements from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv6-router-advertisements",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements"
                  ]
                },
                "description": "Create or replace ipv6-router-advertisements on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"send-advertisements\": true,\n  \"max-rtr-adv-interval\": 1,\n  \"min-rtr-adv-interval\": 1,\n  \"managed-flag\": true,\n  \"other-config-flag\": true,\n  \"link-mtu\": 1,\n  \"reachable-time\": 1,\n  \"retrans-timer\": 1,\n  \"cur-hop-limit\": 1,\n  \"default-lifetime\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv6-router-advertisements",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements"
                  ]
                },
                "description": "Partially update ipv6-router-advertisements on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"send-advertisements\": true,\n  \"max-rtr-adv-interval\": 1,\n  \"min-rtr-adv-interval\": 1,\n  \"managed-flag\": true,\n  \"other-config-flag\": true,\n  \"link-mtu\": 1,\n  \"reachable-time\": 1,\n  \"retrans-timer\": 1,\n  \"cur-hop-limit\": 1,\n  \"default-lifetime\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv6-router-advertisements",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements"
                  ]
                },
                "description": "Remove ipv6-router-advertisements from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get send-advertisements",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/send-advertisements",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "send-advertisements"
                  ]
                },
                "description": "Retrieve send-advertisements from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace send-advertisements",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/send-advertisements",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "send-advertisements"
                  ]
                },
                "description": "Create or replace send-advertisements on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update send-advertisements",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/send-advertisements",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "send-advertisements"
                  ]
                },
                "description": "Partially update send-advertisements on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete send-advertisements",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/send-advertisements",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "send-advertisements"
                  ]
                },
                "description": "Remove send-advertisements from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-rtr-adv-interval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/max-rtr-adv-interval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "max-rtr-adv-interval"
                  ]
                },
                "description": "Retrieve max-rtr-adv-interval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace max-rtr-adv-interval",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/max-rtr-adv-interval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "max-rtr-adv-interval"
                  ]
                },
                "description": "Create or replace max-rtr-adv-interval on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update max-rtr-adv-interval",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/max-rtr-adv-interval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "max-rtr-adv-interval"
                  ]
                },
                "description": "Partially update max-rtr-adv-interval on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete max-rtr-adv-interval",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/max-rtr-adv-interval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "max-rtr-adv-interval"
                  ]
                },
                "description": "Remove max-rtr-adv-interval from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get min-rtr-adv-interval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/min-rtr-adv-interval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "min-rtr-adv-interval"
                  ]
                },
                "description": "Retrieve min-rtr-adv-interval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace min-rtr-adv-interval",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/min-rtr-adv-interval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "min-rtr-adv-interval"
                  ]
                },
                "description": "Create or replace min-rtr-adv-interval on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update min-rtr-adv-interval",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/min-rtr-adv-interval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "min-rtr-adv-interval"
                  ]
                },
                "description": "Partially update min-rtr-adv-interval on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete min-rtr-adv-interval",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/min-rtr-adv-interval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "min-rtr-adv-interval"
                  ]
                },
                "description": "Remove min-rtr-adv-interval from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managed-flag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/managed-flag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "managed-flag"
                  ]
                },
                "description": "Retrieve managed-flag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace managed-flag",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/managed-flag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "managed-flag"
                  ]
                },
                "description": "Create or replace managed-flag on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update managed-flag",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/managed-flag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "managed-flag"
                  ]
                },
                "description": "Partially update managed-flag on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete managed-flag",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/managed-flag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "managed-flag"
                  ]
                },
                "description": "Remove managed-flag from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get other-config-flag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/other-config-flag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "other-config-flag"
                  ]
                },
                "description": "Retrieve other-config-flag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace other-config-flag",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/other-config-flag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "other-config-flag"
                  ]
                },
                "description": "Create or replace other-config-flag on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update other-config-flag",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/other-config-flag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "other-config-flag"
                  ]
                },
                "description": "Partially update other-config-flag on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete other-config-flag",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/other-config-flag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "other-config-flag"
                  ]
                },
                "description": "Remove other-config-flag from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get link-mtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/link-mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "link-mtu"
                  ]
                },
                "description": "Retrieve link-mtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace link-mtu",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/link-mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "link-mtu"
                  ]
                },
                "description": "Create or replace link-mtu on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update link-mtu",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/link-mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "link-mtu"
                  ]
                },
                "description": "Partially update link-mtu on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete link-mtu",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/link-mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "link-mtu"
                  ]
                },
                "description": "Remove link-mtu from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reachable-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/reachable-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "reachable-time"
                  ]
                },
                "description": "Retrieve reachable-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace reachable-time",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/reachable-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "reachable-time"
                  ]
                },
                "description": "Create or replace reachable-time on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update reachable-time",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/reachable-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "reachable-time"
                  ]
                },
                "description": "Partially update reachable-time on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete reachable-time",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/reachable-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "reachable-time"
                  ]
                },
                "description": "Remove reachable-time from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get retrans-timer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/retrans-timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "retrans-timer"
                  ]
                },
                "description": "Retrieve retrans-timer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace retrans-timer",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/retrans-timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "retrans-timer"
                  ]
                },
                "description": "Create or replace retrans-timer on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update retrans-timer",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/retrans-timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "retrans-timer"
                  ]
                },
                "description": "Partially update retrans-timer on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete retrans-timer",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/retrans-timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "retrans-timer"
                  ]
                },
                "description": "Remove retrans-timer from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cur-hop-limit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/cur-hop-limit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "cur-hop-limit"
                  ]
                },
                "description": "Retrieve cur-hop-limit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cur-hop-limit",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/cur-hop-limit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "cur-hop-limit"
                  ]
                },
                "description": "Create or replace cur-hop-limit on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cur-hop-limit",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/cur-hop-limit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "cur-hop-limit"
                  ]
                },
                "description": "Partially update cur-hop-limit on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cur-hop-limit",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/cur-hop-limit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "cur-hop-limit"
                  ]
                },
                "description": "Remove cur-hop-limit from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get default-lifetime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/default-lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "default-lifetime"
                  ]
                },
                "description": "Retrieve default-lifetime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace default-lifetime",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/default-lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "default-lifetime"
                  ]
                },
                "description": "Create or replace default-lifetime on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update default-lifetime",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/default-lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "default-lifetime"
                  ]
                },
                "description": "Partially update default-lifetime on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete default-lifetime",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/default-lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "default-lifetime"
                  ]
                },
                "description": "Remove default-lifetime from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prefix-list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/prefix-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "prefix-list"
                  ]
                },
                "description": "Retrieve prefix-list from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace prefix-list",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/prefix-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "prefix-list"
                  ]
                },
                "description": "Create or replace prefix-list on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"prefix\": [\n    {\n      \"prefix-spec\": \"configured-value\",\n      \"no-advertise\": true\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update prefix-list",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/prefix-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "prefix-list"
                  ]
                },
                "description": "Partially update prefix-list on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"prefix\": [\n    {\n      \"prefix-spec\": \"configured-value\",\n      \"no-advertise\": true\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete prefix-list",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/prefix-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "prefix-list"
                  ]
                },
                "description": "Remove prefix-list from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/prefix-list/prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "prefix-list",
                    "prefix"
                  ]
                },
                "description": "Retrieve prefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace prefix",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/prefix-list/prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "prefix-list",
                    "prefix"
                  ]
                },
                "description": "Create or replace prefix on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"prefix-spec\": \"configured-value\",\n    \"no-advertise\": true\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update prefix",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/prefix-list/prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "prefix-list",
                    "prefix"
                  ]
                },
                "description": "Partially update prefix on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"prefix-spec\": \"configured-value\",\n    \"no-advertise\": true\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete prefix",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/prefix-list/prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "prefix-list",
                    "prefix"
                  ]
                },
                "description": "Remove prefix from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prefix-spec",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/prefix-list/prefix/prefix-spec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "prefix-list",
                    "prefix",
                    "prefix-spec"
                  ]
                },
                "description": "Retrieve prefix-spec from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace prefix-spec",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/prefix-list/prefix/prefix-spec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "prefix-list",
                    "prefix",
                    "prefix-spec"
                  ]
                },
                "description": "Create or replace prefix-spec on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update prefix-spec",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/prefix-list/prefix/prefix-spec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "prefix-list",
                    "prefix",
                    "prefix-spec"
                  ]
                },
                "description": "Partially update prefix-spec on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete prefix-spec",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/prefix-list/prefix/prefix-spec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "prefix-list",
                    "prefix",
                    "prefix-spec"
                  ]
                },
                "description": "Remove prefix-spec from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get no-advertise",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/prefix-list/prefix/no-advertise",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "prefix-list",
                    "prefix",
                    "no-advertise"
                  ]
                },
                "description": "Retrieve no-advertise from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace no-advertise",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/prefix-list/prefix/no-advertise",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "prefix-list",
                    "prefix",
                    "no-advertise"
                  ]
                },
                "description": "Create or replace no-advertise on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update no-advertise",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/prefix-list/prefix/no-advertise",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "prefix-list",
                    "prefix",
                    "no-advertise"
                  ]
                },
                "description": "Partially update no-advertise on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete no-advertise",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-ipv6-unicast-routing:ipv6-router-advertisements/prefix-list/prefix/no-advertise",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-ipv6-unicast-routing:ipv6-router-advertisements",
                    "prefix-list",
                    "prefix",
                    "no-advertise"
                  ]
                },
                "description": "Remove no-advertise from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-key-chain",
          "description": "Cisco IOS-XE IETF - ietf-key-chain\n\nIETF standard data from `ietf-key-chain` module.\n\n**Root containers:** 1 (key-chains)\n**Paths:** 13 | **Operations:** 52\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 13 | Operations: 52",
          "item": [
            {
              "name": "GET Get key-chains",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains"
                  ]
                },
                "description": "Retrieve key-chains from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace key-chains",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains"
                  ]
                },
                "description": "Create or replace key-chains on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"accept-tolerance\": {\n      \"duration\": 300\n    },\n    \"key\": [\n      {\n        \"key-id\": {},\n        \"key-string\": {},\n        \"lifetime\": {},\n        \"crypto-algorithm\": {}\n      }\n    ]\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update key-chains",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains"
                  ]
                },
                "description": "Partially update key-chains on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"accept-tolerance\": {\n      \"duration\": 300\n    },\n    \"key\": [\n      {\n        \"key-id\": {},\n        \"key-string\": {},\n        \"lifetime\": {},\n        \"crypto-algorithm\": {}\n      }\n    ]\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete key-chains",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains"
                  ]
                },
                "description": "Remove key-chains from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get accept-tolerance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/accept-tolerance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "accept-tolerance"
                  ]
                },
                "description": "Retrieve accept-tolerance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace accept-tolerance",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/accept-tolerance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "accept-tolerance"
                  ]
                },
                "description": "Create or replace accept-tolerance on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"duration\": 300\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update accept-tolerance",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/accept-tolerance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "accept-tolerance"
                  ]
                },
                "description": "Partially update accept-tolerance on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"duration\": 300\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete accept-tolerance",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/accept-tolerance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "accept-tolerance"
                  ]
                },
                "description": "Remove accept-tolerance from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get duration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/accept-tolerance/duration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "accept-tolerance",
                    "duration"
                  ]
                },
                "description": "Retrieve duration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace duration",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/accept-tolerance/duration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "accept-tolerance",
                    "duration"
                  ]
                },
                "description": "Create or replace duration on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "300",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update duration",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/accept-tolerance/duration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "accept-tolerance",
                    "duration"
                  ]
                },
                "description": "Partially update duration on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "300",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete duration",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/accept-tolerance/duration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "accept-tolerance",
                    "duration"
                  ]
                },
                "description": "Remove duration from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get key",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key"
                  ]
                },
                "description": "Retrieve key from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace key",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key"
                  ]
                },
                "description": "Create or replace key on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"key-id\": 1,\n    \"key-string\": {\n      \"keystring\": \"***\"\n    },\n    \"lifetime\": {\n      \"send-accept-lifetime\": {\n        \"always\": {}\n      }\n    },\n    \"crypto-algorithm\": {\n      \"hmac-sha1-12\": true\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update key",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key"
                  ]
                },
                "description": "Partially update key on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"key-id\": 1,\n    \"key-string\": {\n      \"keystring\": \"***\"\n    },\n    \"lifetime\": {\n      \"send-accept-lifetime\": {\n        \"always\": {}\n      }\n    },\n    \"crypto-algorithm\": {\n      \"hmac-sha1-12\": true\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete key",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key"
                  ]
                },
                "description": "Remove key from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get key-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/key-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "key-id"
                  ]
                },
                "description": "Retrieve key-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace key-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/key-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "key-id"
                  ]
                },
                "description": "Create or replace key-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update key-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/key-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "key-id"
                  ]
                },
                "description": "Partially update key-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete key-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/key-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "key-id"
                  ]
                },
                "description": "Remove key-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get key-string",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/key-string",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "key-string"
                  ]
                },
                "description": "Retrieve key-string from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace key-string",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/key-string",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "key-string"
                  ]
                },
                "description": "Create or replace key-string on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"keystring\": \"***\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update key-string",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/key-string",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "key-string"
                  ]
                },
                "description": "Partially update key-string on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"keystring\": \"***\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete key-string",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/key-string",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "key-string"
                  ]
                },
                "description": "Remove key-string from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get keystring",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/key-string/keystring",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "key-string",
                    "keystring"
                  ]
                },
                "description": "Retrieve keystring from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace keystring",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/key-string/keystring",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "key-string",
                    "keystring"
                  ]
                },
                "description": "Create or replace keystring on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"***\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update keystring",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/key-string/keystring",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "key-string",
                    "keystring"
                  ]
                },
                "description": "Partially update keystring on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"***\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete keystring",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/key-string/keystring",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "key-string",
                    "keystring"
                  ]
                },
                "description": "Remove keystring from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lifetime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "lifetime"
                  ]
                },
                "description": "Retrieve lifetime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace lifetime",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "lifetime"
                  ]
                },
                "description": "Create or replace lifetime on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"send-accept-lifetime\": {\n    \"always\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update lifetime",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "lifetime"
                  ]
                },
                "description": "Partially update lifetime on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"send-accept-lifetime\": {\n    \"always\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete lifetime",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "lifetime"
                  ]
                },
                "description": "Remove lifetime from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get send-accept-lifetime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/lifetime/send-accept-lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "lifetime",
                    "send-accept-lifetime"
                  ]
                },
                "description": "Retrieve send-accept-lifetime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace send-accept-lifetime",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/lifetime/send-accept-lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "lifetime",
                    "send-accept-lifetime"
                  ]
                },
                "description": "Create or replace send-accept-lifetime on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"always\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update send-accept-lifetime",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/lifetime/send-accept-lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "lifetime",
                    "send-accept-lifetime"
                  ]
                },
                "description": "Partially update send-accept-lifetime on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"always\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete send-accept-lifetime",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/lifetime/send-accept-lifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "lifetime",
                    "send-accept-lifetime"
                  ]
                },
                "description": "Remove send-accept-lifetime from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get always",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/lifetime/send-accept-lifetime/always",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "lifetime",
                    "send-accept-lifetime",
                    "always"
                  ]
                },
                "description": "Retrieve always from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace always",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/lifetime/send-accept-lifetime/always",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "lifetime",
                    "send-accept-lifetime",
                    "always"
                  ]
                },
                "description": "Create or replace always on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update always",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/lifetime/send-accept-lifetime/always",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "lifetime",
                    "send-accept-lifetime",
                    "always"
                  ]
                },
                "description": "Partially update always on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete always",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/lifetime/send-accept-lifetime/always",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "lifetime",
                    "send-accept-lifetime",
                    "always"
                  ]
                },
                "description": "Remove always from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get crypto-algorithm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/crypto-algorithm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "crypto-algorithm"
                  ]
                },
                "description": "Retrieve crypto-algorithm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace crypto-algorithm",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/crypto-algorithm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "crypto-algorithm"
                  ]
                },
                "description": "Create or replace crypto-algorithm on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"hmac-sha1-12\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update crypto-algorithm",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/crypto-algorithm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "crypto-algorithm"
                  ]
                },
                "description": "Partially update crypto-algorithm on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"hmac-sha1-12\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete crypto-algorithm",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/crypto-algorithm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "crypto-algorithm"
                  ]
                },
                "description": "Remove crypto-algorithm from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hmac-sha1-12",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/crypto-algorithm/hmac-sha1-12",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "crypto-algorithm",
                    "hmac-sha1-12"
                  ]
                },
                "description": "Retrieve hmac-sha1-12 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace hmac-sha1-12",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/crypto-algorithm/hmac-sha1-12",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "crypto-algorithm",
                    "hmac-sha1-12"
                  ]
                },
                "description": "Create or replace hmac-sha1-12 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update hmac-sha1-12",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/crypto-algorithm/hmac-sha1-12",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "crypto-algorithm",
                    "hmac-sha1-12"
                  ]
                },
                "description": "Partially update hmac-sha1-12 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete hmac-sha1-12",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-key-chain:key-chains/key/crypto-algorithm/hmac-sha1-12",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-key-chain:key-chains",
                    "key",
                    "crypto-algorithm",
                    "hmac-sha1-12"
                  ]
                },
                "description": "Remove hmac-sha1-12 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-netconf-acm",
          "description": "Cisco IOS-XE IETF - ietf-netconf-acm\n\nIETF standard data from `ietf-netconf-acm` module.\n\n**Root containers:** 1 (nacm)\n**Paths:** 26 | **Operations:** 95\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 26 | Operations: 95",
          "item": [
            {
              "name": "GET Get nacm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm"
                  ]
                },
                "description": "Retrieve nacm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace nacm",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm"
                  ]
                },
                "description": "Create or replace nacm on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enable-nacm\": true,\n  \"read-default\": \"configured-value\",\n  \"write-default\": \"configured-value\",\n  \"exec-default\": \"configured-value\",\n  \"enable-external-groups\": true,\n  \"denied-operations\": \"50\",\n  \"denied-data-writes\": \"configured-value\",\n  \"denied-notifications\": \"configured-value\",\n  \"groups\": {\n    \"group\": [\n      {\n        \"name\": {},\n        \"user-name\": {}\n      }\n    ]\n  },\n  \"rule-list\": [\n    {\n      \"name\": \"example-1\",\n      \"group\": [\n        {}\n      ],\n      \"rule\": [\n        {}\n      ]\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update nacm",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm"
                  ]
                },
                "description": "Partially update nacm on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enable-nacm\": true,\n  \"read-default\": \"configured-value\",\n  \"write-default\": \"configured-value\",\n  \"exec-default\": \"configured-value\",\n  \"enable-external-groups\": true,\n  \"denied-operations\": \"50\",\n  \"denied-data-writes\": \"configured-value\",\n  \"denied-notifications\": \"configured-value\",\n  \"groups\": {\n    \"group\": [\n      {\n        \"name\": {},\n        \"user-name\": {}\n      }\n    ]\n  },\n  \"rule-list\": [\n    {\n      \"name\": \"example-1\",\n      \"group\": [\n        {}\n      ],\n      \"rule\": [\n        {}\n      ]\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete nacm",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm"
                  ]
                },
                "description": "Remove nacm from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enable-nacm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/enable-nacm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "enable-nacm"
                  ]
                },
                "description": "Retrieve enable-nacm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enable-nacm",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/enable-nacm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "enable-nacm"
                  ]
                },
                "description": "Create or replace enable-nacm on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enable-nacm",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/enable-nacm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "enable-nacm"
                  ]
                },
                "description": "Partially update enable-nacm on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enable-nacm",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/enable-nacm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "enable-nacm"
                  ]
                },
                "description": "Remove enable-nacm from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get read-default",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/read-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "read-default"
                  ]
                },
                "description": "Retrieve read-default from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace read-default",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/read-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "read-default"
                  ]
                },
                "description": "Create or replace read-default on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update read-default",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/read-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "read-default"
                  ]
                },
                "description": "Partially update read-default on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete read-default",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/read-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "read-default"
                  ]
                },
                "description": "Remove read-default from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get write-default",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/write-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "write-default"
                  ]
                },
                "description": "Retrieve write-default from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace write-default",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/write-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "write-default"
                  ]
                },
                "description": "Create or replace write-default on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update write-default",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/write-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "write-default"
                  ]
                },
                "description": "Partially update write-default on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete write-default",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/write-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "write-default"
                  ]
                },
                "description": "Remove write-default from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get exec-default",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/exec-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "exec-default"
                  ]
                },
                "description": "Retrieve exec-default from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace exec-default",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/exec-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "exec-default"
                  ]
                },
                "description": "Create or replace exec-default on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update exec-default",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/exec-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "exec-default"
                  ]
                },
                "description": "Partially update exec-default on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete exec-default",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/exec-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "exec-default"
                  ]
                },
                "description": "Remove exec-default from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enable-external-groups",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/enable-external-groups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "enable-external-groups"
                  ]
                },
                "description": "Retrieve enable-external-groups from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enable-external-groups",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/enable-external-groups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "enable-external-groups"
                  ]
                },
                "description": "Create or replace enable-external-groups on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enable-external-groups",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/enable-external-groups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "enable-external-groups"
                  ]
                },
                "description": "Partially update enable-external-groups on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enable-external-groups",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/enable-external-groups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "enable-external-groups"
                  ]
                },
                "description": "Remove enable-external-groups from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get denied-operations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/denied-operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "denied-operations"
                  ]
                },
                "description": "Retrieve denied-operations from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get denied-data-writes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/denied-data-writes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "denied-data-writes"
                  ]
                },
                "description": "Retrieve denied-data-writes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get denied-notifications",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/denied-notifications",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "denied-notifications"
                  ]
                },
                "description": "Retrieve denied-notifications from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get groups",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups"
                  ]
                },
                "description": "Retrieve groups from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace groups",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups"
                  ]
                },
                "description": "Create or replace groups on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"group\": [\n    {\n      \"name\": \"example-1\",\n      \"user-name\": [\n        {}\n      ]\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update groups",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups"
                  ]
                },
                "description": "Partially update groups on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"group\": [\n    {\n      \"name\": \"example-1\",\n      \"user-name\": [\n        {}\n      ]\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete groups",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups"
                  ]
                },
                "description": "Remove groups from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get group",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups/group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups",
                    "group"
                  ]
                },
                "description": "Retrieve group from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace group",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups/group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups",
                    "group"
                  ]
                },
                "description": "Create or replace group on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"user-name\": [\n      \"configured-value\"\n    ]\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update group",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups/group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups",
                    "group"
                  ]
                },
                "description": "Partially update group on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"user-name\": [\n      \"configured-value\"\n    ]\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete group",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups/group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups",
                    "group"
                  ]
                },
                "description": "Remove group from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get group",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups/group={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups",
                    "group=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve group from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace group",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups/group={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups",
                    "group=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace group on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"user-name\": [\n      \"configured-value\"\n    ]\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update group",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups/group={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups",
                    "group=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update group on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"user-name\": [\n      \"configured-value\"\n    ]\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete group",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups/group={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups",
                    "group=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove group from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups/group/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups",
                    "group",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups/group/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups",
                    "group",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups/group/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups",
                    "group",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups/group/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups",
                    "group",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get user-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups/group/user-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups",
                    "group",
                    "user-name"
                  ]
                },
                "description": "Retrieve user-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace user-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups/group/user-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups",
                    "group",
                    "user-name"
                  ]
                },
                "description": "Create or replace user-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update user-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups/group/user-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups",
                    "group",
                    "user-name"
                  ]
                },
                "description": "Partially update user-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete user-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/groups/group/user-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "groups",
                    "group",
                    "user-name"
                  ]
                },
                "description": "Remove user-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rule-list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list"
                  ]
                },
                "description": "Retrieve rule-list from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rule-list",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list"
                  ]
                },
                "description": "Create or replace rule-list on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"group\": [\n      \"configured-value\"\n    ],\n    \"rule\": [\n      {\n        \"name\": {},\n        \"module-name\": {},\n        \"rpc-name\": {},\n        \"access-operations\": {},\n        \"action\": {},\n        \"comment\": {}\n      }\n    ]\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rule-list",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list"
                  ]
                },
                "description": "Partially update rule-list on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"group\": [\n      \"configured-value\"\n    ],\n    \"rule\": [\n      {\n        \"name\": {},\n        \"module-name\": {},\n        \"rpc-name\": {},\n        \"access-operations\": {},\n        \"action\": {},\n        \"comment\": {}\n      }\n    ]\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rule-list",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list"
                  ]
                },
                "description": "Remove rule-list from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rule-list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve rule-list from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rule-list",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace rule-list on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"group\": [\n      \"configured-value\"\n    ],\n    \"rule\": [\n      {\n        \"name\": {},\n        \"module-name\": {},\n        \"rpc-name\": {},\n        \"access-operations\": {},\n        \"action\": {},\n        \"comment\": {}\n      }\n    ]\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rule-list",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update rule-list on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"group\": [\n      \"configured-value\"\n    ],\n    \"rule\": [\n      {\n        \"name\": {},\n        \"module-name\": {},\n        \"rpc-name\": {},\n        \"access-operations\": {},\n        \"action\": {},\n        \"comment\": {}\n      }\n    ]\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rule-list",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove rule-list from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get group",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "group"
                  ]
                },
                "description": "Retrieve group from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace group",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "group"
                  ]
                },
                "description": "Create or replace group on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update group",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "group"
                  ]
                },
                "description": "Partially update group on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete group",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "group"
                  ]
                },
                "description": "Remove group from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rule",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule"
                  ]
                },
                "description": "Retrieve rule from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rule",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule"
                  ]
                },
                "description": "Create or replace rule on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"module-name\": \"example-1\",\n    \"rpc-name\": \"example-1\",\n    \"access-operations\": \"50\",\n    \"action\": \"configured-value\",\n    \"comment\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rule",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule"
                  ]
                },
                "description": "Partially update rule on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"module-name\": \"example-1\",\n    \"rpc-name\": \"example-1\",\n    \"access-operations\": \"50\",\n    \"action\": \"configured-value\",\n    \"comment\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rule",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule"
                  ]
                },
                "description": "Remove rule from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rule",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve rule from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rule",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace rule on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"module-name\": \"example-1\",\n    \"rpc-name\": \"example-1\",\n    \"access-operations\": \"50\",\n    \"action\": \"configured-value\",\n    \"comment\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rule",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update rule on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"module-name\": \"example-1\",\n    \"rpc-name\": \"example-1\",\n    \"access-operations\": \"50\",\n    \"action\": \"configured-value\",\n    \"comment\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rule",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove rule from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get module-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/module-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "module-name"
                  ]
                },
                "description": "Retrieve module-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace module-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/module-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "module-name"
                  ]
                },
                "description": "Create or replace module-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update module-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/module-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "module-name"
                  ]
                },
                "description": "Partially update module-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete module-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/module-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "module-name"
                  ]
                },
                "description": "Remove module-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rpc-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/rpc-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "rpc-name"
                  ]
                },
                "description": "Retrieve rpc-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rpc-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/rpc-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "rpc-name"
                  ]
                },
                "description": "Create or replace rpc-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rpc-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/rpc-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "rpc-name"
                  ]
                },
                "description": "Partially update rpc-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rpc-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/rpc-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "rpc-name"
                  ]
                },
                "description": "Remove rpc-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get access-operations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/access-operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "access-operations"
                  ]
                },
                "description": "Retrieve access-operations from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace access-operations",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/access-operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "access-operations"
                  ]
                },
                "description": "Create or replace access-operations on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update access-operations",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/access-operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "access-operations"
                  ]
                },
                "description": "Partially update access-operations on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete access-operations",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/access-operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "access-operations"
                  ]
                },
                "description": "Remove access-operations from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get action",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "action"
                  ]
                },
                "description": "Retrieve action from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace action",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "action"
                  ]
                },
                "description": "Create or replace action on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update action",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "action"
                  ]
                },
                "description": "Partially update action on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete action",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "action"
                  ]
                },
                "description": "Remove action from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get comment",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/comment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "comment"
                  ]
                },
                "description": "Retrieve comment from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace comment",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/comment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "comment"
                  ]
                },
                "description": "Create or replace comment on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update comment",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/comment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "comment"
                  ]
                },
                "description": "Partially update comment on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete comment",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-acm:nacm/rule-list/rule/comment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-acm:nacm",
                    "rule-list",
                    "rule",
                    "comment"
                  ]
                },
                "description": "Remove comment from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-netconf-monitoring",
          "description": "Cisco IOS-XE IETF - ietf-netconf-monitoring\n\nIETF standard data from `ietf-netconf-monitoring` module.\n\n**Root containers:** 2 (netconf-state, output)\n**Paths:** 39 | **Operations:** 39\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 39 | Operations: 39",
          "item": [
            {
              "name": "GET Get netconf-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state"
                  ]
                },
                "description": "Retrieve netconf-state from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get capabilities",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/capabilities",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "capabilities"
                  ]
                },
                "description": "Retrieve capabilities from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get capability",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/capabilities/capability",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "capabilities",
                    "capability"
                  ]
                },
                "description": "Retrieve capability from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get datastores",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/datastores",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "datastores"
                  ]
                },
                "description": "Retrieve datastores from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get datastore",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/datastores/datastore",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "datastores",
                    "datastore"
                  ]
                },
                "description": "Retrieve datastore from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get datastore",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/datastores/datastore={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "datastores",
                    "datastore=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve datastore from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/datastores/datastore/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "datastores",
                    "datastore",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get locks",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/datastores/datastore/locks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "datastores",
                    "datastore",
                    "locks"
                  ]
                },
                "description": "Retrieve locks from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get global-lock",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/datastores/datastore/locks/global-lock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "datastores",
                    "datastore",
                    "locks",
                    "global-lock"
                  ]
                },
                "description": "Retrieve global-lock from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get locked-by-session",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/datastores/datastore/locks/global-lock/locked-by-session",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "datastores",
                    "datastore",
                    "locks",
                    "global-lock",
                    "locked-by-session"
                  ]
                },
                "description": "Retrieve locked-by-session from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get locked-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/datastores/datastore/locks/global-lock/locked-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "datastores",
                    "datastore",
                    "locks",
                    "global-lock",
                    "locked-time"
                  ]
                },
                "description": "Retrieve locked-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get schemas",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/schemas",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "schemas"
                  ]
                },
                "description": "Retrieve schemas from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get schema",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/schemas/schema",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "schemas",
                    "schema"
                  ]
                },
                "description": "Retrieve schema from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get identifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/schemas/schema/identifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "schemas",
                    "schema",
                    "identifier"
                  ]
                },
                "description": "Retrieve identifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get version",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/schemas/schema/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "schemas",
                    "schema",
                    "version"
                  ]
                },
                "description": "Retrieve version from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get format",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/schemas/schema/format",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "schemas",
                    "schema",
                    "format"
                  ]
                },
                "description": "Retrieve format from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get namespace",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/schemas/schema/namespace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "schemas",
                    "schema",
                    "namespace"
                  ]
                },
                "description": "Retrieve namespace from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get location",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/schemas/schema/location",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "schemas",
                    "schema",
                    "location"
                  ]
                },
                "description": "Retrieve location from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/sessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "sessions"
                  ]
                },
                "description": "Retrieve sessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get session",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/sessions/session",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "sessions",
                    "session"
                  ]
                },
                "description": "Retrieve session from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get session-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/sessions/session/session-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "sessions",
                    "session",
                    "session-id"
                  ]
                },
                "description": "Retrieve session-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get transport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/sessions/session/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "sessions",
                    "session",
                    "transport"
                  ]
                },
                "description": "Retrieve transport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get username",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/sessions/session/username",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "sessions",
                    "session",
                    "username"
                  ]
                },
                "description": "Retrieve username from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get source-host",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/sessions/session/source-host",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "sessions",
                    "session",
                    "source-host"
                  ]
                },
                "description": "Retrieve source-host from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get login-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/sessions/session/login-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "sessions",
                    "session",
                    "login-time"
                  ]
                },
                "description": "Retrieve login-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-rpcs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/sessions/session/in-rpcs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "sessions",
                    "session",
                    "in-rpcs"
                  ]
                },
                "description": "Retrieve in-rpcs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-bad-rpcs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/sessions/session/in-bad-rpcs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "sessions",
                    "session",
                    "in-bad-rpcs"
                  ]
                },
                "description": "Retrieve in-bad-rpcs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get out-rpc-errors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/sessions/session/out-rpc-errors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "sessions",
                    "session",
                    "out-rpc-errors"
                  ]
                },
                "description": "Retrieve out-rpc-errors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get out-notifications",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/sessions/session/out-notifications",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "sessions",
                    "session",
                    "out-notifications"
                  ]
                },
                "description": "Retrieve out-notifications from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get statistics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/statistics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "statistics"
                  ]
                },
                "description": "Retrieve statistics from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get netconf-start-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/statistics/netconf-start-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "statistics",
                    "netconf-start-time"
                  ]
                },
                "description": "Retrieve netconf-start-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-bad-hellos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/statistics/in-bad-hellos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "statistics",
                    "in-bad-hellos"
                  ]
                },
                "description": "Retrieve in-bad-hellos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-sessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/statistics/in-sessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "statistics",
                    "in-sessions"
                  ]
                },
                "description": "Retrieve in-sessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dropped-sessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/statistics/dropped-sessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "statistics",
                    "dropped-sessions"
                  ]
                },
                "description": "Retrieve dropped-sessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-rpcs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/statistics/in-rpcs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "statistics",
                    "in-rpcs"
                  ]
                },
                "description": "Retrieve in-rpcs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-bad-rpcs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/statistics/in-bad-rpcs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "statistics",
                    "in-bad-rpcs"
                  ]
                },
                "description": "Retrieve in-bad-rpcs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get out-rpc-errors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/statistics/out-rpc-errors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "statistics",
                    "out-rpc-errors"
                  ]
                },
                "description": "Retrieve out-rpc-errors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get out-notifications",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-netconf-monitoring:netconf-state/statistics/out-notifications",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-netconf-monitoring:netconf-state",
                    "statistics",
                    "out-notifications"
                  ]
                },
                "description": "Retrieve out-notifications from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute output",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/ietf-netconf-monitoring:output",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "ietf-netconf-monitoring:output"
                  ]
                },
                "description": "Execute the **output** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 No content",
                  "status": "No content",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-netconf",
          "description": "Cisco IOS-XE IETF - ietf-netconf\n\nIETF standard data from `ietf-netconf` module.\n\n**Root containers:** 2 (output, output)\n**Paths:** 1 | **Operations:** 1\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute output",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/ietf-netconf:output",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "ietf-netconf:output"
                  ]
                },
                "description": "Execute the **output** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 No content",
                  "status": "No content",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-restconf-monitoring",
          "description": "Cisco IOS-XE IETF - ietf-restconf-monitoring\n\nIETF standard data from `ietf-restconf-monitoring` module.\n\n**Root containers:** 1 (restconf-state)\n**Paths:** 13 | **Operations:** 13\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 13 | Operations: 13",
          "item": [
            {
              "name": "GET Get restconf-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-restconf-monitoring:restconf-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-restconf-monitoring:restconf-state"
                  ]
                },
                "description": "Retrieve restconf-state from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get capabilities",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-restconf-monitoring:restconf-state/capabilities",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-restconf-monitoring:restconf-state",
                    "capabilities"
                  ]
                },
                "description": "Retrieve capabilities from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get capability",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-restconf-monitoring:restconf-state/capabilities/capability",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-restconf-monitoring:restconf-state",
                    "capabilities",
                    "capability"
                  ]
                },
                "description": "Retrieve capability from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get streams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-restconf-monitoring:restconf-state/streams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-restconf-monitoring:restconf-state",
                    "streams"
                  ]
                },
                "description": "Retrieve streams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stream",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-restconf-monitoring:restconf-state/streams/stream",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-restconf-monitoring:restconf-state",
                    "streams",
                    "stream"
                  ]
                },
                "description": "Retrieve stream from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stream",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-restconf-monitoring:restconf-state/streams/stream={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-restconf-monitoring:restconf-state",
                    "streams",
                    "stream=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve stream from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-restconf-monitoring:restconf-state/streams/stream/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-restconf-monitoring:restconf-state",
                    "streams",
                    "stream",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get description",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-restconf-monitoring:restconf-state/streams/stream/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-restconf-monitoring:restconf-state",
                    "streams",
                    "stream",
                    "description"
                  ]
                },
                "description": "Retrieve description from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get replay-support",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-restconf-monitoring:restconf-state/streams/stream/replay-support",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-restconf-monitoring:restconf-state",
                    "streams",
                    "stream",
                    "replay-support"
                  ]
                },
                "description": "Retrieve replay-support from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get replay-log-creation-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-restconf-monitoring:restconf-state/streams/stream/replay-log-creation-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-restconf-monitoring:restconf-state",
                    "streams",
                    "stream",
                    "replay-log-creation-time"
                  ]
                },
                "description": "Retrieve replay-log-creation-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get access",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-restconf-monitoring:restconf-state/streams/stream/access",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-restconf-monitoring:restconf-state",
                    "streams",
                    "stream",
                    "access"
                  ]
                },
                "description": "Retrieve access from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get encoding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-restconf-monitoring:restconf-state/streams/stream/access/encoding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-restconf-monitoring:restconf-state",
                    "streams",
                    "stream",
                    "access",
                    "encoding"
                  ]
                },
                "description": "Retrieve encoding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get location",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-restconf-monitoring:restconf-state/streams/stream/access/location",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-restconf-monitoring:restconf-state",
                    "streams",
                    "stream",
                    "access",
                    "location"
                  ]
                },
                "description": "Retrieve location from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-routing",
          "description": "Cisco IOS-XE IETF - ietf-routing\n\nIETF standard data from `ietf-routing` module.\n\n**Root containers:** 3 (routing-state, routing, output)\n**Paths:** 43 | **Operations:** 109\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 43 | Operations: 109",
          "item": [
            {
              "name": "GET Get routing-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state"
                  ]
                },
                "description": "Retrieve routing-state from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get routing-instance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance"
                  ]
                },
                "description": "Retrieve routing-instance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get routing-instance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve routing-instance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "type"
                  ]
                },
                "description": "Retrieve type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get router-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/router-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "router-id"
                  ]
                },
                "description": "Retrieve router-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interfaces",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "interfaces"
                  ]
                },
                "description": "Retrieve interfaces from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "interfaces",
                    "interface"
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get routing-protocols",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/routing-protocols",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "routing-protocols"
                  ]
                },
                "description": "Retrieve routing-protocols from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get routing-protocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/routing-protocols/routing-protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol"
                  ]
                },
                "description": "Retrieve routing-protocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/routing-protocols/routing-protocol/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "type"
                  ]
                },
                "description": "Retrieve type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/routing-protocols/routing-protocol/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ribs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/ribs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "ribs"
                  ]
                },
                "description": "Retrieve ribs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rib",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/ribs/rib",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "ribs",
                    "rib"
                  ]
                },
                "description": "Retrieve rib from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rib",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/ribs/rib={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "ribs",
                    "rib=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve rib from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/ribs/rib/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get address-family",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/ribs/rib/address-family",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "address-family"
                  ]
                },
                "description": "Retrieve address-family from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get default-rib",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/ribs/rib/default-rib",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "default-rib"
                  ]
                },
                "description": "Retrieve default-rib from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get routes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/ribs/rib/routes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "routes"
                  ]
                },
                "description": "Retrieve routes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get route",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing-state/routing-instance/ribs/rib/routes/route",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing-state",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "routes",
                    "route"
                  ]
                },
                "description": "Retrieve route from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get routing",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing"
                  ]
                },
                "description": "Retrieve routing from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace routing",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing"
                  ]
                },
                "description": "Create or replace routing on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"routing-instance\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update routing",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing"
                  ]
                },
                "description": "Partially update routing on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"routing-instance\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete routing",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing"
                  ]
                },
                "description": "Remove routing from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get routing-instance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance"
                  ]
                },
                "description": "Retrieve routing-instance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace routing-instance",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance"
                  ]
                },
                "description": "Create or replace routing-instance on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"type\": \"default\",\n    \"enabled\": true,\n    \"router-id\": \"10.1.1.1\",\n    \"description\": \"Configured via RESTCONF\",\n    \"interfaces\": {\n      \"interface\": [\n        {}\n      ]\n    },\n    \"routing-protocols\": {\n      \"routing-protocol\": {\n        \"type\": {},\n        \"name\": {},\n        \"description\": {},\n        \"static-routes\": {}\n      }\n    },\n    \"ribs\": {\n      \"rib\": [\n        {}\n      ]\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update routing-instance",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance"
                  ]
                },
                "description": "Partially update routing-instance on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"type\": \"default\",\n    \"enabled\": true,\n    \"router-id\": \"10.1.1.1\",\n    \"description\": \"Configured via RESTCONF\",\n    \"interfaces\": {\n      \"interface\": [\n        {}\n      ]\n    },\n    \"routing-protocols\": {\n      \"routing-protocol\": {\n        \"type\": {},\n        \"name\": {},\n        \"description\": {},\n        \"static-routes\": {}\n      }\n    },\n    \"ribs\": {\n      \"rib\": [\n        {}\n      ]\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete routing-instance",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance"
                  ]
                },
                "description": "Remove routing-instance from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get routing-instance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve routing-instance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace routing-instance",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace routing-instance on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"type\": \"default\",\n    \"enabled\": true,\n    \"router-id\": \"10.1.1.1\",\n    \"description\": \"Configured via RESTCONF\",\n    \"interfaces\": {\n      \"interface\": [\n        {}\n      ]\n    },\n    \"routing-protocols\": {\n      \"routing-protocol\": {\n        \"type\": {},\n        \"name\": {},\n        \"description\": {},\n        \"static-routes\": {}\n      }\n    },\n    \"ribs\": {\n      \"rib\": [\n        {}\n      ]\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update routing-instance",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update routing-instance on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"type\": \"default\",\n    \"enabled\": true,\n    \"router-id\": \"10.1.1.1\",\n    \"description\": \"Configured via RESTCONF\",\n    \"interfaces\": {\n      \"interface\": [\n        {}\n      ]\n    },\n    \"routing-protocols\": {\n      \"routing-protocol\": {\n        \"type\": {},\n        \"name\": {},\n        \"description\": {},\n        \"static-routes\": {}\n      }\n    },\n    \"ribs\": {\n      \"rib\": [\n        {}\n      ]\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete routing-instance",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove routing-instance from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "type"
                  ]
                },
                "description": "Retrieve type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace type",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "type"
                  ]
                },
                "description": "Create or replace type on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update type",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "type"
                  ]
                },
                "description": "Partially update type on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete type",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "type"
                  ]
                },
                "description": "Remove type from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get router-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/router-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "router-id"
                  ]
                },
                "description": "Retrieve router-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace router-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/router-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "router-id"
                  ]
                },
                "description": "Create or replace router-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update router-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/router-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "router-id"
                  ]
                },
                "description": "Partially update router-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete router-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/router-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "router-id"
                  ]
                },
                "description": "Remove router-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get description",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "description"
                  ]
                },
                "description": "Retrieve description from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace description",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "description"
                  ]
                },
                "description": "Create or replace description on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"Configured via RESTCONF\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update description",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "description"
                  ]
                },
                "description": "Partially update description on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"Configured via RESTCONF\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete description",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "description"
                  ]
                },
                "description": "Remove description from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interfaces",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "interfaces"
                  ]
                },
                "description": "Retrieve interfaces from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace interfaces",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "interfaces"
                  ]
                },
                "description": "Create or replace interfaces on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interface\": [\n    \"configured-value\"\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update interfaces",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "interfaces"
                  ]
                },
                "description": "Partially update interfaces on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interface\": [\n    \"configured-value\"\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete interfaces",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "interfaces"
                  ]
                },
                "description": "Remove interfaces from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "interfaces",
                    "interface"
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "interfaces",
                    "interface"
                  ]
                },
                "description": "Create or replace interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "interfaces",
                    "interface"
                  ]
                },
                "description": "Partially update interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "interfaces",
                    "interface"
                  ]
                },
                "description": "Remove interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get routing-protocols",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols"
                  ]
                },
                "description": "Retrieve routing-protocols from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace routing-protocols",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols"
                  ]
                },
                "description": "Create or replace routing-protocols on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"routing-protocol\": {\n    \"type\": \"default\",\n    \"name\": \"example-1\",\n    \"description\": \"Configured via RESTCONF\",\n    \"static-routes\": {}\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update routing-protocols",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols"
                  ]
                },
                "description": "Partially update routing-protocols on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"routing-protocol\": {\n    \"type\": \"default\",\n    \"name\": \"example-1\",\n    \"description\": \"Configured via RESTCONF\",\n    \"static-routes\": {}\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete routing-protocols",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols"
                  ]
                },
                "description": "Remove routing-protocols from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get routing-protocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol"
                  ]
                },
                "description": "Retrieve routing-protocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace routing-protocol",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol"
                  ]
                },
                "description": "Create or replace routing-protocol on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"type\": \"default\",\n  \"name\": \"example-1\",\n  \"description\": \"Configured via RESTCONF\",\n  \"static-routes\": {}\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update routing-protocol",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol"
                  ]
                },
                "description": "Partially update routing-protocol on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"type\": \"default\",\n  \"name\": \"example-1\",\n  \"description\": \"Configured via RESTCONF\",\n  \"static-routes\": {}\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete routing-protocol",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol"
                  ]
                },
                "description": "Remove routing-protocol from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "type"
                  ]
                },
                "description": "Retrieve type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace type",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "type"
                  ]
                },
                "description": "Create or replace type on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update type",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "type"
                  ]
                },
                "description": "Partially update type on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete type",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "type"
                  ]
                },
                "description": "Remove type from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get description",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "description"
                  ]
                },
                "description": "Retrieve description from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace description",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "description"
                  ]
                },
                "description": "Create or replace description on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"Configured via RESTCONF\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update description",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "description"
                  ]
                },
                "description": "Partially update description on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"Configured via RESTCONF\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete description",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "description"
                  ]
                },
                "description": "Remove description from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get static-routes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol/static-routes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "static-routes"
                  ]
                },
                "description": "Retrieve static-routes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace static-routes",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol/static-routes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "static-routes"
                  ]
                },
                "description": "Create or replace static-routes on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update static-routes",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol/static-routes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "static-routes"
                  ]
                },
                "description": "Partially update static-routes on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete static-routes",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/routing-protocols/routing-protocol/static-routes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "routing-protocols",
                    "routing-protocol",
                    "static-routes"
                  ]
                },
                "description": "Remove static-routes from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ribs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs"
                  ]
                },
                "description": "Retrieve ribs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ribs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs"
                  ]
                },
                "description": "Create or replace ribs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"rib\": [\n    {\n      \"name\": \"example-1\",\n      \"address-family\": \"ipv4-unicast\",\n      \"description\": \"Configured via RESTCONF\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ribs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs"
                  ]
                },
                "description": "Partially update ribs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"rib\": [\n    {\n      \"name\": \"example-1\",\n      \"address-family\": \"ipv4-unicast\",\n      \"description\": \"Configured via RESTCONF\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ribs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs"
                  ]
                },
                "description": "Remove ribs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rib",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib"
                  ]
                },
                "description": "Retrieve rib from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rib",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib"
                  ]
                },
                "description": "Create or replace rib on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"address-family\": \"ipv4-unicast\",\n    \"description\": \"Configured via RESTCONF\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rib",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib"
                  ]
                },
                "description": "Partially update rib on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"address-family\": \"ipv4-unicast\",\n    \"description\": \"Configured via RESTCONF\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rib",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib"
                  ]
                },
                "description": "Remove rib from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rib",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve rib from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rib",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace rib on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"address-family\": \"ipv4-unicast\",\n    \"description\": \"Configured via RESTCONF\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rib",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update rib on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"address-family\": \"ipv4-unicast\",\n    \"description\": \"Configured via RESTCONF\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rib",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove rib from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get address-family",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib/address-family",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "address-family"
                  ]
                },
                "description": "Retrieve address-family from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace address-family",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib/address-family",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "address-family"
                  ]
                },
                "description": "Create or replace address-family on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"ipv4-unicast\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update address-family",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib/address-family",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "address-family"
                  ]
                },
                "description": "Partially update address-family on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"ipv4-unicast\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete address-family",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib/address-family",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "address-family"
                  ]
                },
                "description": "Remove address-family from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get description",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "description"
                  ]
                },
                "description": "Retrieve description from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace description",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "description"
                  ]
                },
                "description": "Create or replace description on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"Configured via RESTCONF\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update description",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "description"
                  ]
                },
                "description": "Partially update description on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"Configured via RESTCONF\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete description",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-routing:routing/routing-instance/ribs/rib/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-routing:routing",
                    "routing-instance",
                    "ribs",
                    "rib",
                    "description"
                  ]
                },
                "description": "Remove description from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute output",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/ietf-routing:output",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "ietf-routing:output"
                  ]
                },
                "description": "Execute the **output** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 No content",
                  "status": "No content",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-yang-library",
          "description": "Cisco IOS-XE IETF - ietf-yang-library\n\nIETF standard data from `ietf-yang-library` module.\n\n**Root containers:** 1 (yang-library)\n**Paths:** 36 | **Operations:** 36\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 36 | Operations: 36",
          "item": [
            {
              "name": "GET Get yang-library",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library"
                  ]
                },
                "description": "Retrieve yang-library from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get module-set",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set"
                  ]
                },
                "description": "Retrieve module-set from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get module-set",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve module-set from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get module",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/module",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "module"
                  ]
                },
                "description": "Retrieve module from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get module",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/module={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "module=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve module from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/module/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "module",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get revision",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/module/revision",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "module",
                    "revision"
                  ]
                },
                "description": "Retrieve revision from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get namespace",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/module/namespace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "module",
                    "namespace"
                  ]
                },
                "description": "Retrieve namespace from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get location",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/module/location",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "module",
                    "location"
                  ]
                },
                "description": "Retrieve location from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get submodule",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/module/submodule",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "module",
                    "submodule"
                  ]
                },
                "description": "Retrieve submodule from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get submodule",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/module/submodule={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "module",
                    "submodule=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve submodule from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/module/submodule/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "module",
                    "submodule",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get revision",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/module/submodule/revision",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "module",
                    "submodule",
                    "revision"
                  ]
                },
                "description": "Retrieve revision from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get location",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/module/submodule/location",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "module",
                    "submodule",
                    "location"
                  ]
                },
                "description": "Retrieve location from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get feature",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/module/feature",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "module",
                    "feature"
                  ]
                },
                "description": "Retrieve feature from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get deviation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/module/deviation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "module",
                    "deviation"
                  ]
                },
                "description": "Retrieve deviation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get import-only-module",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/import-only-module",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "import-only-module"
                  ]
                },
                "description": "Retrieve import-only-module from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/import-only-module/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "import-only-module",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get revision",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/import-only-module/revision",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "import-only-module",
                    "revision"
                  ]
                },
                "description": "Retrieve revision from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get namespace",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/import-only-module/namespace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "import-only-module",
                    "namespace"
                  ]
                },
                "description": "Retrieve namespace from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get location",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/import-only-module/location",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "import-only-module",
                    "location"
                  ]
                },
                "description": "Retrieve location from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get submodule",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/import-only-module/submodule",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "import-only-module",
                    "submodule"
                  ]
                },
                "description": "Retrieve submodule from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get submodule",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/import-only-module/submodule={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "import-only-module",
                    "submodule=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve submodule from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/import-only-module/submodule/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "import-only-module",
                    "submodule",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get revision",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/import-only-module/submodule/revision",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "import-only-module",
                    "submodule",
                    "revision"
                  ]
                },
                "description": "Retrieve revision from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get location",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/module-set/import-only-module/submodule/location",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "module-set",
                    "import-only-module",
                    "submodule",
                    "location"
                  ]
                },
                "description": "Retrieve location from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get schema",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/schema",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "schema"
                  ]
                },
                "description": "Retrieve schema from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get schema",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/schema={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "schema=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve schema from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/schema/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "schema",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get module-set",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/schema/module-set",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "schema",
                    "module-set"
                  ]
                },
                "description": "Retrieve module-set from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get datastore",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/datastore",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "datastore"
                  ]
                },
                "description": "Retrieve datastore from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get datastore",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/datastore={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "datastore=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve datastore from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/datastore/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "datastore",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get schema",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/datastore/schema",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "datastore",
                    "schema"
                  ]
                },
                "description": "Retrieve schema from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get content-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-library:yang-library/content-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-library:yang-library",
                    "content-id"
                  ]
                },
                "description": "Retrieve content-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-yang-push",
          "description": "Cisco IOS-XE IETF - ietf-yang-push\n\nIETF standard data from `ietf-yang-push` module.\n\n**Root containers:** 24 ((update-trigger), dscp, subscription-priority, subscription-dependency, (update-trigger)...)\n**Paths:** 14 | **Operations:** 29\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 14 | Operations: 29",
          "item": [
            {
              "name": "GET Get (update-trigger)",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:(update-trigger)",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:(update-trigger)"
                  ]
                },
                "description": "Retrieve (update-trigger) from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get period",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:(update-trigger)/period",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:(update-trigger)",
                    "period"
                  ]
                },
                "description": "Retrieve period from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get anchor-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:(update-trigger)/anchor-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:(update-trigger)",
                    "anchor-time"
                  ]
                },
                "description": "Retrieve anchor-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get no-synch-on-start",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:(update-trigger)/no-synch-on-start",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:(update-trigger)",
                    "no-synch-on-start"
                  ]
                },
                "description": "Retrieve no-synch-on-start from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dampening-period",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:(update-trigger)/dampening-period",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:(update-trigger)",
                    "dampening-period"
                  ]
                },
                "description": "Retrieve dampening-period from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get excluded-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:(update-trigger)/excluded-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:(update-trigger)",
                    "excluded-change"
                  ]
                },
                "description": "Retrieve excluded-change from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:dscp"
                  ]
                },
                "description": "Retrieve dscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get subscription-priority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-priority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-priority"
                  ]
                },
                "description": "Retrieve subscription-priority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get subscription-dependency",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency"
                  ]
                },
                "description": "Retrieve subscription-dependency from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get subtree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/subtree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "subtree"
                  ]
                },
                "description": "Retrieve subtree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace subtree",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/subtree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "subtree"
                  ]
                },
                "description": "Create or replace subtree on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update subtree",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/subtree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "subtree"
                  ]
                },
                "description": "Partially update subtree on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete subtree",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/subtree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "subtree"
                  ]
                },
                "description": "Remove subtree from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get xpath",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/xpath",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "xpath"
                  ]
                },
                "description": "Retrieve xpath from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace xpath",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/xpath",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "xpath"
                  ]
                },
                "description": "Create or replace xpath on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update xpath",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/xpath",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "xpath"
                  ]
                },
                "description": "Partially update xpath on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete xpath",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/xpath",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "xpath"
                  ]
                },
                "description": "Remove xpath from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get periodic",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/periodic",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "periodic"
                  ]
                },
                "description": "Retrieve periodic from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace periodic",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/periodic",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "periodic"
                  ]
                },
                "description": "Create or replace periodic on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update periodic",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/periodic",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "periodic"
                  ]
                },
                "description": "Partially update periodic on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete periodic",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/periodic",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "periodic"
                  ]
                },
                "description": "Remove periodic from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get on-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/on-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "on-change"
                  ]
                },
                "description": "Retrieve on-change from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace on-change",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/on-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "on-change"
                  ]
                },
                "description": "Create or replace on-change on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update on-change",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/on-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "on-change"
                  ]
                },
                "description": "Partially update on-change on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete on-change",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/on-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "on-change"
                  ]
                },
                "description": "Remove on-change from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get update-filter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/update-filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "update-filter"
                  ]
                },
                "description": "Retrieve update-filter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace update-filter",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/update-filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "update-filter"
                  ]
                },
                "description": "Create or replace update-filter on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"subtree-filter\": {},\n  \"xpath-filter\": \"/data/example\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update update-filter",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/update-filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "update-filter"
                  ]
                },
                "description": "Partially update update-filter on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"subtree-filter\": {},\n  \"xpath-filter\": \"/data/example\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete update-filter",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-push:subscription-dependency/update-filter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-push:subscription-dependency",
                    "update-filter"
                  ]
                },
                "description": "Remove update-filter from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ietf-yang-schema-mount",
          "description": "Cisco IOS-XE IETF - ietf-yang-schema-mount\n\nIETF standard data from `ietf-yang-schema-mount` module.\n\n**Root containers:** 1 (schema-mounts)\n**Paths:** 9 | **Operations:** 9\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 9 | Operations: 9",
          "item": [
            {
              "name": "GET Get schema-mounts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-schema-mount:schema-mounts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-schema-mount:schema-mounts"
                  ]
                },
                "description": "Retrieve schema-mounts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get namespace",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-schema-mount:schema-mounts/namespace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-schema-mount:schema-mounts",
                    "namespace"
                  ]
                },
                "description": "Retrieve namespace from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-schema-mount:schema-mounts/namespace/prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-schema-mount:schema-mounts",
                    "namespace",
                    "prefix"
                  ]
                },
                "description": "Retrieve prefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get uri",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-schema-mount:schema-mounts/namespace/uri",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-schema-mount:schema-mounts",
                    "namespace",
                    "uri"
                  ]
                },
                "description": "Retrieve uri from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mount-point",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-schema-mount:schema-mounts/mount-point",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-schema-mount:schema-mounts",
                    "mount-point"
                  ]
                },
                "description": "Retrieve mount-point from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get module",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-schema-mount:schema-mounts/mount-point/module",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-schema-mount:schema-mounts",
                    "mount-point",
                    "module"
                  ]
                },
                "description": "Retrieve module from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get label",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-schema-mount:schema-mounts/mount-point/label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-schema-mount:schema-mounts",
                    "mount-point",
                    "label"
                  ]
                },
                "description": "Retrieve label from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get config",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-schema-mount:schema-mounts/mount-point/config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-schema-mount:schema-mounts",
                    "mount-point",
                    "config"
                  ]
                },
                "description": "Retrieve config from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get inline",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ietf-yang-schema-mount:schema-mounts/mount-point/inline",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ietf-yang-schema-mount:schema-mounts",
                    "mount-point",
                    "inline"
                  ]
                },
                "description": "Retrieve inline from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "6b - MIB v2 (Deep Paths)",
      "description": "149 YANG specs | 12482 endpoints | 12482 operations\n\nTree-based deep-path specs with full depth coverage.",
      "item": [
        {
          "name": "ATM-MIB",
          "description": "Cisco IOS-XE MIB - ATM-MIB\n\nMIB data from `ATM-MIB` module.\n\n**Root containers:** 1 (ATM-MIB)\n**Paths:** 111 | **Descendants:** 110\n\nAll endpoints are read-only (GET).\n\nEndpoints: 111 | Operations: 111",
          "item": [
            {
              "name": "GET Get ATM-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB"
                  ]
                },
                "description": "Retrieve ATM-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmMIBObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmMIBObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmMIBObjects"
                  ]
                },
                "description": "Retrieve atmMIBObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVpCrossConnectIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmMIBObjects/atmVpCrossConnectIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmMIBObjects",
                    "atmVpCrossConnectIndexNext"
                  ]
                },
                "description": "Retrieve atmVpCrossConnectIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVcCrossConnectIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmMIBObjects/atmVcCrossConnectIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmMIBObjects",
                    "atmVcCrossConnectIndexNext"
                  ]
                },
                "description": "Retrieve atmVcCrossConnectIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmTrafficDescrParamIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmMIBObjects/atmTrafficDescrParamIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmMIBObjects",
                    "atmTrafficDescrParamIndexNext"
                  ]
                },
                "description": "Retrieve atmTrafficDescrParamIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceConfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceConfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceConfTable"
                  ]
                },
                "description": "Retrieve atmInterfaceConfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceConfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceConfTable/atmInterfaceConfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceConfTable",
                    "atmInterfaceConfEntry"
                  ]
                },
                "description": "Retrieve atmInterfaceConfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceConfTable/atmInterfaceConfEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceConfTable",
                    "atmInterfaceConfEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceMaxVpcs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceConfTable/atmInterfaceConfEntry/atmInterfaceMaxVpcs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceConfTable",
                    "atmInterfaceConfEntry",
                    "atmInterfaceMaxVpcs"
                  ]
                },
                "description": "Retrieve atmInterfaceMaxVpcs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceMaxVccs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceConfTable/atmInterfaceConfEntry/atmInterfaceMaxVccs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceConfTable",
                    "atmInterfaceConfEntry",
                    "atmInterfaceMaxVccs"
                  ]
                },
                "description": "Retrieve atmInterfaceMaxVccs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceConfVpcs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceConfTable/atmInterfaceConfEntry/atmInterfaceConfVpcs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceConfTable",
                    "atmInterfaceConfEntry",
                    "atmInterfaceConfVpcs"
                  ]
                },
                "description": "Retrieve atmInterfaceConfVpcs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceConfVccs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceConfTable/atmInterfaceConfEntry/atmInterfaceConfVccs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceConfTable",
                    "atmInterfaceConfEntry",
                    "atmInterfaceConfVccs"
                  ]
                },
                "description": "Retrieve atmInterfaceConfVccs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceMaxActiveVpiBits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceConfTable/atmInterfaceConfEntry/atmInterfaceMaxActiveVpiBits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceConfTable",
                    "atmInterfaceConfEntry",
                    "atmInterfaceMaxActiveVpiBits"
                  ]
                },
                "description": "Retrieve atmInterfaceMaxActiveVpiBits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceMaxActiveVciBits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceConfTable/atmInterfaceConfEntry/atmInterfaceMaxActiveVciBits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceConfTable",
                    "atmInterfaceConfEntry",
                    "atmInterfaceMaxActiveVciBits"
                  ]
                },
                "description": "Retrieve atmInterfaceMaxActiveVciBits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceIlmiVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceConfTable/atmInterfaceConfEntry/atmInterfaceIlmiVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceConfTable",
                    "atmInterfaceConfEntry",
                    "atmInterfaceIlmiVpi"
                  ]
                },
                "description": "Retrieve atmInterfaceIlmiVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceIlmiVci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceConfTable/atmInterfaceConfEntry/atmInterfaceIlmiVci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceConfTable",
                    "atmInterfaceConfEntry",
                    "atmInterfaceIlmiVci"
                  ]
                },
                "description": "Retrieve atmInterfaceIlmiVci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceMyNeighborIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceConfTable/atmInterfaceConfEntry/atmInterfaceMyNeighborIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceConfTable",
                    "atmInterfaceConfEntry",
                    "atmInterfaceMyNeighborIpAddress"
                  ]
                },
                "description": "Retrieve atmInterfaceMyNeighborIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceMyNeighborIfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceConfTable/atmInterfaceConfEntry/atmInterfaceMyNeighborIfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceConfTable",
                    "atmInterfaceConfEntry",
                    "atmInterfaceMyNeighborIfName"
                  ]
                },
                "description": "Retrieve atmInterfaceMyNeighborIfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceCurrentMaxVpiBits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceConfTable/atmInterfaceConfEntry/atmInterfaceCurrentMaxVpiBits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceConfTable",
                    "atmInterfaceConfEntry",
                    "atmInterfaceCurrentMaxVpiBits"
                  ]
                },
                "description": "Retrieve atmInterfaceCurrentMaxVpiBits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceCurrentMaxVciBits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceConfTable/atmInterfaceConfEntry/atmInterfaceCurrentMaxVciBits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceConfTable",
                    "atmInterfaceConfEntry",
                    "atmInterfaceCurrentMaxVciBits"
                  ]
                },
                "description": "Retrieve atmInterfaceCurrentMaxVciBits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceSubscrAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceConfTable/atmInterfaceConfEntry/atmInterfaceSubscrAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceConfTable",
                    "atmInterfaceConfEntry",
                    "atmInterfaceSubscrAddress"
                  ]
                },
                "description": "Retrieve atmInterfaceSubscrAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceDs3PlcpTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceDs3PlcpTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceDs3PlcpTable"
                  ]
                },
                "description": "Retrieve atmInterfaceDs3PlcpTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceDs3PlcpEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceDs3PlcpTable/atmInterfaceDs3PlcpEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceDs3PlcpTable",
                    "atmInterfaceDs3PlcpEntry"
                  ]
                },
                "description": "Retrieve atmInterfaceDs3PlcpEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceDs3PlcpTable/atmInterfaceDs3PlcpEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceDs3PlcpTable",
                    "atmInterfaceDs3PlcpEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceDs3PlcpSEFSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceDs3PlcpTable/atmInterfaceDs3PlcpEntry/atmInterfaceDs3PlcpSEFSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceDs3PlcpTable",
                    "atmInterfaceDs3PlcpEntry",
                    "atmInterfaceDs3PlcpSEFSs"
                  ]
                },
                "description": "Retrieve atmInterfaceDs3PlcpSEFSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceDs3PlcpAlarmState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceDs3PlcpTable/atmInterfaceDs3PlcpEntry/atmInterfaceDs3PlcpAlarmState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceDs3PlcpTable",
                    "atmInterfaceDs3PlcpEntry",
                    "atmInterfaceDs3PlcpAlarmState"
                  ]
                },
                "description": "Retrieve atmInterfaceDs3PlcpAlarmState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceDs3PlcpUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceDs3PlcpTable/atmInterfaceDs3PlcpEntry/atmInterfaceDs3PlcpUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceDs3PlcpTable",
                    "atmInterfaceDs3PlcpEntry",
                    "atmInterfaceDs3PlcpUASs"
                  ]
                },
                "description": "Retrieve atmInterfaceDs3PlcpUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceTCTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceTCTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceTCTable"
                  ]
                },
                "description": "Retrieve atmInterfaceTCTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceTCEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceTCTable/atmInterfaceTCEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceTCTable",
                    "atmInterfaceTCEntry"
                  ]
                },
                "description": "Retrieve atmInterfaceTCEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceTCTable/atmInterfaceTCEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceTCTable",
                    "atmInterfaceTCEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceOCDEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceTCTable/atmInterfaceTCEntry/atmInterfaceOCDEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceTCTable",
                    "atmInterfaceTCEntry",
                    "atmInterfaceOCDEvents"
                  ]
                },
                "description": "Retrieve atmInterfaceOCDEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmInterfaceTCAlarmState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmInterfaceTCTable/atmInterfaceTCEntry/atmInterfaceTCAlarmState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmInterfaceTCTable",
                    "atmInterfaceTCEntry",
                    "atmInterfaceTCAlarmState"
                  ]
                },
                "description": "Retrieve atmInterfaceTCAlarmState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmTrafficDescrParamTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmTrafficDescrParamTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmTrafficDescrParamTable"
                  ]
                },
                "description": "Retrieve atmTrafficDescrParamTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmTrafficDescrParamEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmTrafficDescrParamTable/atmTrafficDescrParamEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmTrafficDescrParamTable",
                    "atmTrafficDescrParamEntry"
                  ]
                },
                "description": "Retrieve atmTrafficDescrParamEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmTrafficDescrParamIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmTrafficDescrParamTable/atmTrafficDescrParamEntry/atmTrafficDescrParamIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmTrafficDescrParamTable",
                    "atmTrafficDescrParamEntry",
                    "atmTrafficDescrParamIndex"
                  ]
                },
                "description": "Retrieve atmTrafficDescrParamIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmTrafficDescrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmTrafficDescrParamTable/atmTrafficDescrParamEntry/atmTrafficDescrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmTrafficDescrParamTable",
                    "atmTrafficDescrParamEntry",
                    "atmTrafficDescrType"
                  ]
                },
                "description": "Retrieve atmTrafficDescrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmTrafficDescrParam1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmTrafficDescrParamTable/atmTrafficDescrParamEntry/atmTrafficDescrParam1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmTrafficDescrParamTable",
                    "atmTrafficDescrParamEntry",
                    "atmTrafficDescrParam1"
                  ]
                },
                "description": "Retrieve atmTrafficDescrParam1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmTrafficDescrParam2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmTrafficDescrParamTable/atmTrafficDescrParamEntry/atmTrafficDescrParam2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmTrafficDescrParamTable",
                    "atmTrafficDescrParamEntry",
                    "atmTrafficDescrParam2"
                  ]
                },
                "description": "Retrieve atmTrafficDescrParam2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmTrafficDescrParam3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmTrafficDescrParamTable/atmTrafficDescrParamEntry/atmTrafficDescrParam3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmTrafficDescrParamTable",
                    "atmTrafficDescrParamEntry",
                    "atmTrafficDescrParam3"
                  ]
                },
                "description": "Retrieve atmTrafficDescrParam3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmTrafficDescrParam4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmTrafficDescrParamTable/atmTrafficDescrParamEntry/atmTrafficDescrParam4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmTrafficDescrParamTable",
                    "atmTrafficDescrParamEntry",
                    "atmTrafficDescrParam4"
                  ]
                },
                "description": "Retrieve atmTrafficDescrParam4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmTrafficDescrParam5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmTrafficDescrParamTable/atmTrafficDescrParamEntry/atmTrafficDescrParam5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmTrafficDescrParamTable",
                    "atmTrafficDescrParamEntry",
                    "atmTrafficDescrParam5"
                  ]
                },
                "description": "Retrieve atmTrafficDescrParam5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmTrafficDescrRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmTrafficDescrParamTable/atmTrafficDescrParamEntry/atmTrafficDescrRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmTrafficDescrParamTable",
                    "atmTrafficDescrParamEntry",
                    "atmTrafficDescrRowStatus"
                  ]
                },
                "description": "Retrieve atmTrafficDescrRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmServiceCategory",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmTrafficDescrParamTable/atmTrafficDescrParamEntry/atmServiceCategory",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmTrafficDescrParamTable",
                    "atmTrafficDescrParamEntry",
                    "atmServiceCategory"
                  ]
                },
                "description": "Retrieve atmServiceCategory from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmTrafficFrameDiscard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmTrafficDescrParamTable/atmTrafficDescrParamEntry/atmTrafficFrameDiscard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmTrafficDescrParamTable",
                    "atmTrafficDescrParamEntry",
                    "atmTrafficFrameDiscard"
                  ]
                },
                "description": "Retrieve atmTrafficFrameDiscard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVplTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVplTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVplTable"
                  ]
                },
                "description": "Retrieve atmVplTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVplEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVplTable/atmVplEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVplTable",
                    "atmVplEntry"
                  ]
                },
                "description": "Retrieve atmVplEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVplTable/atmVplEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVplTable",
                    "atmVplEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVplVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVplTable/atmVplEntry/atmVplVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVplTable",
                    "atmVplEntry",
                    "atmVplVpi"
                  ]
                },
                "description": "Retrieve atmVplVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVplAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVplTable/atmVplEntry/atmVplAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVplTable",
                    "atmVplEntry",
                    "atmVplAdminStatus"
                  ]
                },
                "description": "Retrieve atmVplAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVplOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVplTable/atmVplEntry/atmVplOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVplTable",
                    "atmVplEntry",
                    "atmVplOperStatus"
                  ]
                },
                "description": "Retrieve atmVplOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVplLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVplTable/atmVplEntry/atmVplLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVplTable",
                    "atmVplEntry",
                    "atmVplLastChange"
                  ]
                },
                "description": "Retrieve atmVplLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVplReceiveTrafficDescrIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVplTable/atmVplEntry/atmVplReceiveTrafficDescrIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVplTable",
                    "atmVplEntry",
                    "atmVplReceiveTrafficDescrIndex"
                  ]
                },
                "description": "Retrieve atmVplReceiveTrafficDescrIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVplTransmitTrafficDescrIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVplTable/atmVplEntry/atmVplTransmitTrafficDescrIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVplTable",
                    "atmVplEntry",
                    "atmVplTransmitTrafficDescrIndex"
                  ]
                },
                "description": "Retrieve atmVplTransmitTrafficDescrIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVplCrossConnectIdentifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVplTable/atmVplEntry/atmVplCrossConnectIdentifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVplTable",
                    "atmVplEntry",
                    "atmVplCrossConnectIdentifier"
                  ]
                },
                "description": "Retrieve atmVplCrossConnectIdentifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVplRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVplTable/atmVplEntry/atmVplRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVplTable",
                    "atmVplEntry",
                    "atmVplRowStatus"
                  ]
                },
                "description": "Retrieve atmVplRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVplCastType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVplTable/atmVplEntry/atmVplCastType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVplTable",
                    "atmVplEntry",
                    "atmVplCastType"
                  ]
                },
                "description": "Retrieve atmVplCastType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVplConnKind",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVplTable/atmVplEntry/atmVplConnKind",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVplTable",
                    "atmVplEntry",
                    "atmVplConnKind"
                  ]
                },
                "description": "Retrieve atmVplConnKind from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable"
                  ]
                },
                "description": "Retrieve atmVclTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry"
                  ]
                },
                "description": "Retrieve atmVclEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry/atmVclVci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry",
                    "atmVclVci"
                  ]
                },
                "description": "Retrieve atmVclVci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry/atmVclAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry",
                    "atmVclAdminStatus"
                  ]
                },
                "description": "Retrieve atmVclAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry/atmVclOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry",
                    "atmVclOperStatus"
                  ]
                },
                "description": "Retrieve atmVclOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry/atmVclLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry",
                    "atmVclLastChange"
                  ]
                },
                "description": "Retrieve atmVclLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclReceiveTrafficDescrIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry/atmVclReceiveTrafficDescrIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry",
                    "atmVclReceiveTrafficDescrIndex"
                  ]
                },
                "description": "Retrieve atmVclReceiveTrafficDescrIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclTransmitTrafficDescrIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry/atmVclTransmitTrafficDescrIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry",
                    "atmVclTransmitTrafficDescrIndex"
                  ]
                },
                "description": "Retrieve atmVclTransmitTrafficDescrIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVccAalType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry/atmVccAalType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry",
                    "atmVccAalType"
                  ]
                },
                "description": "Retrieve atmVccAalType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVccAal5CpcsTransmitSduSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry/atmVccAal5CpcsTransmitSduSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry",
                    "atmVccAal5CpcsTransmitSduSize"
                  ]
                },
                "description": "Retrieve atmVccAal5CpcsTransmitSduSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVccAal5CpcsReceiveSduSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry/atmVccAal5CpcsReceiveSduSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry",
                    "atmVccAal5CpcsReceiveSduSize"
                  ]
                },
                "description": "Retrieve atmVccAal5CpcsReceiveSduSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVccAal5EncapsType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry/atmVccAal5EncapsType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry",
                    "atmVccAal5EncapsType"
                  ]
                },
                "description": "Retrieve atmVccAal5EncapsType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclCrossConnectIdentifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry/atmVclCrossConnectIdentifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry",
                    "atmVclCrossConnectIdentifier"
                  ]
                },
                "description": "Retrieve atmVclCrossConnectIdentifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry/atmVclRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry",
                    "atmVclRowStatus"
                  ]
                },
                "description": "Retrieve atmVclRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclCastType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry/atmVclCastType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry",
                    "atmVclCastType"
                  ]
                },
                "description": "Retrieve atmVclCastType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclConnKind",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVclTable/atmVclEntry/atmVclConnKind",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVclTable",
                    "atmVclEntry",
                    "atmVclConnKind"
                  ]
                },
                "description": "Retrieve atmVclConnKind from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVpCrossConnectTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVpCrossConnectTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVpCrossConnectTable"
                  ]
                },
                "description": "Retrieve atmVpCrossConnectTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVpCrossConnectEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVpCrossConnectTable/atmVpCrossConnectEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVpCrossConnectTable",
                    "atmVpCrossConnectEntry"
                  ]
                },
                "description": "Retrieve atmVpCrossConnectEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVpCrossConnectIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVpCrossConnectTable/atmVpCrossConnectEntry/atmVpCrossConnectIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVpCrossConnectTable",
                    "atmVpCrossConnectEntry",
                    "atmVpCrossConnectIndex"
                  ]
                },
                "description": "Retrieve atmVpCrossConnectIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVpCrossConnectLowIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVpCrossConnectTable/atmVpCrossConnectEntry/atmVpCrossConnectLowIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVpCrossConnectTable",
                    "atmVpCrossConnectEntry",
                    "atmVpCrossConnectLowIfIndex"
                  ]
                },
                "description": "Retrieve atmVpCrossConnectLowIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVpCrossConnectLowVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVpCrossConnectTable/atmVpCrossConnectEntry/atmVpCrossConnectLowVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVpCrossConnectTable",
                    "atmVpCrossConnectEntry",
                    "atmVpCrossConnectLowVpi"
                  ]
                },
                "description": "Retrieve atmVpCrossConnectLowVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVpCrossConnectHighIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVpCrossConnectTable/atmVpCrossConnectEntry/atmVpCrossConnectHighIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVpCrossConnectTable",
                    "atmVpCrossConnectEntry",
                    "atmVpCrossConnectHighIfIndex"
                  ]
                },
                "description": "Retrieve atmVpCrossConnectHighIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVpCrossConnectHighVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVpCrossConnectTable/atmVpCrossConnectEntry/atmVpCrossConnectHighVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVpCrossConnectTable",
                    "atmVpCrossConnectEntry",
                    "atmVpCrossConnectHighVpi"
                  ]
                },
                "description": "Retrieve atmVpCrossConnectHighVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVpCrossConnectAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVpCrossConnectTable/atmVpCrossConnectEntry/atmVpCrossConnectAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVpCrossConnectTable",
                    "atmVpCrossConnectEntry",
                    "atmVpCrossConnectAdminStatus"
                  ]
                },
                "description": "Retrieve atmVpCrossConnectAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVpCrossConnectL2HOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVpCrossConnectTable/atmVpCrossConnectEntry/atmVpCrossConnectL2HOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVpCrossConnectTable",
                    "atmVpCrossConnectEntry",
                    "atmVpCrossConnectL2HOperStatus"
                  ]
                },
                "description": "Retrieve atmVpCrossConnectL2HOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVpCrossConnectH2LOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVpCrossConnectTable/atmVpCrossConnectEntry/atmVpCrossConnectH2LOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVpCrossConnectTable",
                    "atmVpCrossConnectEntry",
                    "atmVpCrossConnectH2LOperStatus"
                  ]
                },
                "description": "Retrieve atmVpCrossConnectH2LOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVpCrossConnectL2HLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVpCrossConnectTable/atmVpCrossConnectEntry/atmVpCrossConnectL2HLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVpCrossConnectTable",
                    "atmVpCrossConnectEntry",
                    "atmVpCrossConnectL2HLastChange"
                  ]
                },
                "description": "Retrieve atmVpCrossConnectL2HLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVpCrossConnectH2LLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVpCrossConnectTable/atmVpCrossConnectEntry/atmVpCrossConnectH2LLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVpCrossConnectTable",
                    "atmVpCrossConnectEntry",
                    "atmVpCrossConnectH2LLastChange"
                  ]
                },
                "description": "Retrieve atmVpCrossConnectH2LLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVpCrossConnectRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVpCrossConnectTable/atmVpCrossConnectEntry/atmVpCrossConnectRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVpCrossConnectTable",
                    "atmVpCrossConnectEntry",
                    "atmVpCrossConnectRowStatus"
                  ]
                },
                "description": "Retrieve atmVpCrossConnectRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVcCrossConnectTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVcCrossConnectTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVcCrossConnectTable"
                  ]
                },
                "description": "Retrieve atmVcCrossConnectTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVcCrossConnectEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVcCrossConnectTable/atmVcCrossConnectEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVcCrossConnectTable",
                    "atmVcCrossConnectEntry"
                  ]
                },
                "description": "Retrieve atmVcCrossConnectEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVcCrossConnectIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVcCrossConnectTable/atmVcCrossConnectEntry/atmVcCrossConnectIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVcCrossConnectTable",
                    "atmVcCrossConnectEntry",
                    "atmVcCrossConnectIndex"
                  ]
                },
                "description": "Retrieve atmVcCrossConnectIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVcCrossConnectLowIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVcCrossConnectTable/atmVcCrossConnectEntry/atmVcCrossConnectLowIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVcCrossConnectTable",
                    "atmVcCrossConnectEntry",
                    "atmVcCrossConnectLowIfIndex"
                  ]
                },
                "description": "Retrieve atmVcCrossConnectLowIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVcCrossConnectLowVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVcCrossConnectTable/atmVcCrossConnectEntry/atmVcCrossConnectLowVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVcCrossConnectTable",
                    "atmVcCrossConnectEntry",
                    "atmVcCrossConnectLowVpi"
                  ]
                },
                "description": "Retrieve atmVcCrossConnectLowVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVcCrossConnectLowVci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVcCrossConnectTable/atmVcCrossConnectEntry/atmVcCrossConnectLowVci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVcCrossConnectTable",
                    "atmVcCrossConnectEntry",
                    "atmVcCrossConnectLowVci"
                  ]
                },
                "description": "Retrieve atmVcCrossConnectLowVci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVcCrossConnectHighIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVcCrossConnectTable/atmVcCrossConnectEntry/atmVcCrossConnectHighIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVcCrossConnectTable",
                    "atmVcCrossConnectEntry",
                    "atmVcCrossConnectHighIfIndex"
                  ]
                },
                "description": "Retrieve atmVcCrossConnectHighIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVcCrossConnectHighVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVcCrossConnectTable/atmVcCrossConnectEntry/atmVcCrossConnectHighVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVcCrossConnectTable",
                    "atmVcCrossConnectEntry",
                    "atmVcCrossConnectHighVpi"
                  ]
                },
                "description": "Retrieve atmVcCrossConnectHighVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVcCrossConnectHighVci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVcCrossConnectTable/atmVcCrossConnectEntry/atmVcCrossConnectHighVci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVcCrossConnectTable",
                    "atmVcCrossConnectEntry",
                    "atmVcCrossConnectHighVci"
                  ]
                },
                "description": "Retrieve atmVcCrossConnectHighVci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVcCrossConnectAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVcCrossConnectTable/atmVcCrossConnectEntry/atmVcCrossConnectAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVcCrossConnectTable",
                    "atmVcCrossConnectEntry",
                    "atmVcCrossConnectAdminStatus"
                  ]
                },
                "description": "Retrieve atmVcCrossConnectAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVcCrossConnectL2HOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVcCrossConnectTable/atmVcCrossConnectEntry/atmVcCrossConnectL2HOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVcCrossConnectTable",
                    "atmVcCrossConnectEntry",
                    "atmVcCrossConnectL2HOperStatus"
                  ]
                },
                "description": "Retrieve atmVcCrossConnectL2HOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVcCrossConnectH2LOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVcCrossConnectTable/atmVcCrossConnectEntry/atmVcCrossConnectH2LOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVcCrossConnectTable",
                    "atmVcCrossConnectEntry",
                    "atmVcCrossConnectH2LOperStatus"
                  ]
                },
                "description": "Retrieve atmVcCrossConnectH2LOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVcCrossConnectL2HLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVcCrossConnectTable/atmVcCrossConnectEntry/atmVcCrossConnectL2HLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVcCrossConnectTable",
                    "atmVcCrossConnectEntry",
                    "atmVcCrossConnectL2HLastChange"
                  ]
                },
                "description": "Retrieve atmVcCrossConnectL2HLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVcCrossConnectH2LLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVcCrossConnectTable/atmVcCrossConnectEntry/atmVcCrossConnectH2LLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVcCrossConnectTable",
                    "atmVcCrossConnectEntry",
                    "atmVcCrossConnectH2LLastChange"
                  ]
                },
                "description": "Retrieve atmVcCrossConnectH2LLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVcCrossConnectRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/atmVcCrossConnectTable/atmVcCrossConnectEntry/atmVcCrossConnectRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "atmVcCrossConnectTable",
                    "atmVcCrossConnectEntry",
                    "atmVcCrossConnectRowStatus"
                  ]
                },
                "description": "Retrieve atmVcCrossConnectRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get aal5VccTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/aal5VccTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "aal5VccTable"
                  ]
                },
                "description": "Retrieve aal5VccTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get aal5VccEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/aal5VccTable/aal5VccEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "aal5VccTable",
                    "aal5VccEntry"
                  ]
                },
                "description": "Retrieve aal5VccEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/aal5VccTable/aal5VccEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "aal5VccTable",
                    "aal5VccEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get aal5VccVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/aal5VccTable/aal5VccEntry/aal5VccVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "aal5VccTable",
                    "aal5VccEntry",
                    "aal5VccVpi"
                  ]
                },
                "description": "Retrieve aal5VccVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get aal5VccVci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/aal5VccTable/aal5VccEntry/aal5VccVci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "aal5VccTable",
                    "aal5VccEntry",
                    "aal5VccVci"
                  ]
                },
                "description": "Retrieve aal5VccVci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get aal5VccCrcErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/aal5VccTable/aal5VccEntry/aal5VccCrcErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "aal5VccTable",
                    "aal5VccEntry",
                    "aal5VccCrcErrors"
                  ]
                },
                "description": "Retrieve aal5VccCrcErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get aal5VccSarTimeOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/aal5VccTable/aal5VccEntry/aal5VccSarTimeOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "aal5VccTable",
                    "aal5VccEntry",
                    "aal5VccSarTimeOuts"
                  ]
                },
                "description": "Retrieve aal5VccSarTimeOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get aal5VccOverSizedSDUs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ATM-MIB:ATM-MIB/aal5VccTable/aal5VccEntry/aal5VccOverSizedSDUs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ATM-MIB:ATM-MIB",
                    "aal5VccTable",
                    "aal5VccEntry",
                    "aal5VccOverSizedSDUs"
                  ]
                },
                "description": "Retrieve aal5VccOverSizedSDUs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "BGP4-MIB",
          "description": "Cisco IOS-XE MIB - BGP4-MIB\n\nMIB data from `BGP4-MIB` module.\n\n**Root containers:** 1 (BGP4-MIB)\n**Paths:** 61 | **Descendants:** 66\n\nAll endpoints are read-only (GET).\n\nEndpoints: 61 | Operations: 61",
          "item": [
            {
              "name": "GET Get BGP4-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB"
                  ]
                },
                "description": "Retrieve BGP4-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp"
                  ]
                },
                "description": "Retrieve bgp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp/bgpVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp",
                    "bgpVersion"
                  ]
                },
                "description": "Retrieve bgpVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpLocalAs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp/bgpLocalAs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp",
                    "bgpLocalAs"
                  ]
                },
                "description": "Retrieve bgpLocalAs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpIdentifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp/bgpIdentifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp",
                    "bgpIdentifier"
                  ]
                },
                "description": "Retrieve bgpIdentifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable"
                  ]
                },
                "description": "Retrieve bgpPeerTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry"
                  ]
                },
                "description": "Retrieve bgpPeerEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerIdentifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerIdentifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerIdentifier"
                  ]
                },
                "description": "Retrieve bgpPeerIdentifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerState"
                  ]
                },
                "description": "Retrieve bgpPeerState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerAdminStatus"
                  ]
                },
                "description": "Retrieve bgpPeerAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerNegotiatedVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerNegotiatedVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerNegotiatedVersion"
                  ]
                },
                "description": "Retrieve bgpPeerNegotiatedVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerLocalAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerLocalAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerLocalAddr"
                  ]
                },
                "description": "Retrieve bgpPeerLocalAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerLocalPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerLocalPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerLocalPort"
                  ]
                },
                "description": "Retrieve bgpPeerLocalPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerRemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerRemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerRemoteAddr"
                  ]
                },
                "description": "Retrieve bgpPeerRemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerRemotePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerRemotePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerRemotePort"
                  ]
                },
                "description": "Retrieve bgpPeerRemotePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerRemoteAs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerRemoteAs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerRemoteAs"
                  ]
                },
                "description": "Retrieve bgpPeerRemoteAs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerInUpdates",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerInUpdates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerInUpdates"
                  ]
                },
                "description": "Retrieve bgpPeerInUpdates from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerOutUpdates",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerOutUpdates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerOutUpdates"
                  ]
                },
                "description": "Retrieve bgpPeerOutUpdates from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerInTotalMessages",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerInTotalMessages",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerInTotalMessages"
                  ]
                },
                "description": "Retrieve bgpPeerInTotalMessages from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerOutTotalMessages",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerOutTotalMessages",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerOutTotalMessages"
                  ]
                },
                "description": "Retrieve bgpPeerOutTotalMessages from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerLastError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerLastError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerLastError"
                  ]
                },
                "description": "Retrieve bgpPeerLastError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerFsmEstablishedTransitions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerFsmEstablishedTransitions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerFsmEstablishedTransitions"
                  ]
                },
                "description": "Retrieve bgpPeerFsmEstablishedTransitions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerFsmEstablishedTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerFsmEstablishedTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerFsmEstablishedTime"
                  ]
                },
                "description": "Retrieve bgpPeerFsmEstablishedTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerConnectRetryInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerConnectRetryInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerConnectRetryInterval"
                  ]
                },
                "description": "Retrieve bgpPeerConnectRetryInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerHoldTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerHoldTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerHoldTime"
                  ]
                },
                "description": "Retrieve bgpPeerHoldTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerKeepAlive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerKeepAlive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerKeepAlive"
                  ]
                },
                "description": "Retrieve bgpPeerKeepAlive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerHoldTimeConfigured",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerHoldTimeConfigured",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerHoldTimeConfigured"
                  ]
                },
                "description": "Retrieve bgpPeerHoldTimeConfigured from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerKeepAliveConfigured",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerKeepAliveConfigured",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerKeepAliveConfigured"
                  ]
                },
                "description": "Retrieve bgpPeerKeepAliveConfigured from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerMinASOriginationInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerMinASOriginationInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerMinASOriginationInterval"
                  ]
                },
                "description": "Retrieve bgpPeerMinASOriginationInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerMinRouteAdvertisementInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerMinRouteAdvertisementInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerMinRouteAdvertisementInterval"
                  ]
                },
                "description": "Retrieve bgpPeerMinRouteAdvertisementInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerInUpdateElapsedTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpPeerTable/bgpPeerEntry/bgpPeerInUpdateElapsedTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpPeerTable",
                    "bgpPeerEntry",
                    "bgpPeerInUpdateElapsedTime"
                  ]
                },
                "description": "Retrieve bgpPeerInUpdateElapsedTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpRcvdPathAttrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpRcvdPathAttrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpRcvdPathAttrTable"
                  ]
                },
                "description": "Retrieve bgpRcvdPathAttrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPathAttrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpRcvdPathAttrTable/bgpPathAttrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpRcvdPathAttrTable",
                    "bgpPathAttrEntry"
                  ]
                },
                "description": "Retrieve bgpPathAttrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPathAttrPeer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpRcvdPathAttrTable/bgpPathAttrEntry/bgpPathAttrPeer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpRcvdPathAttrTable",
                    "bgpPathAttrEntry",
                    "bgpPathAttrPeer"
                  ]
                },
                "description": "Retrieve bgpPathAttrPeer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPathAttrDestNetwork",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpRcvdPathAttrTable/bgpPathAttrEntry/bgpPathAttrDestNetwork",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpRcvdPathAttrTable",
                    "bgpPathAttrEntry",
                    "bgpPathAttrDestNetwork"
                  ]
                },
                "description": "Retrieve bgpPathAttrDestNetwork from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPathAttrOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpRcvdPathAttrTable/bgpPathAttrEntry/bgpPathAttrOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpRcvdPathAttrTable",
                    "bgpPathAttrEntry",
                    "bgpPathAttrOrigin"
                  ]
                },
                "description": "Retrieve bgpPathAttrOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPathAttrASPath",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpRcvdPathAttrTable/bgpPathAttrEntry/bgpPathAttrASPath",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpRcvdPathAttrTable",
                    "bgpPathAttrEntry",
                    "bgpPathAttrASPath"
                  ]
                },
                "description": "Retrieve bgpPathAttrASPath from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPathAttrNextHop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpRcvdPathAttrTable/bgpPathAttrEntry/bgpPathAttrNextHop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpRcvdPathAttrTable",
                    "bgpPathAttrEntry",
                    "bgpPathAttrNextHop"
                  ]
                },
                "description": "Retrieve bgpPathAttrNextHop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPathAttrInterASMetric",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgpRcvdPathAttrTable/bgpPathAttrEntry/bgpPathAttrInterASMetric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgpRcvdPathAttrTable",
                    "bgpPathAttrEntry",
                    "bgpPathAttrInterASMetric"
                  ]
                },
                "description": "Retrieve bgpPathAttrInterASMetric from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp4PathAttrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable"
                  ]
                },
                "description": "Retrieve bgp4PathAttrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp4PathAttrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/bgp4PathAttrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "bgp4PathAttrEntry"
                  ]
                },
                "description": "Retrieve bgp4PathAttrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp4PathAttrPeer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/bgp4PathAttrEntry/bgp4PathAttrPeer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "bgp4PathAttrEntry",
                    "bgp4PathAttrPeer"
                  ]
                },
                "description": "Retrieve bgp4PathAttrPeer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp4PathAttrIpAddrPrefixLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/bgp4PathAttrEntry/bgp4PathAttrIpAddrPrefixLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "bgp4PathAttrEntry",
                    "bgp4PathAttrIpAddrPrefixLen"
                  ]
                },
                "description": "Retrieve bgp4PathAttrIpAddrPrefixLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp4PathAttrIpAddrPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/bgp4PathAttrEntry/bgp4PathAttrIpAddrPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "bgp4PathAttrEntry",
                    "bgp4PathAttrIpAddrPrefix"
                  ]
                },
                "description": "Retrieve bgp4PathAttrIpAddrPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp4PathAttrOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/bgp4PathAttrEntry/bgp4PathAttrOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "bgp4PathAttrEntry",
                    "bgp4PathAttrOrigin"
                  ]
                },
                "description": "Retrieve bgp4PathAttrOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp4PathAttrASPathSegment",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/bgp4PathAttrEntry/bgp4PathAttrASPathSegment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "bgp4PathAttrEntry",
                    "bgp4PathAttrASPathSegment"
                  ]
                },
                "description": "Retrieve bgp4PathAttrASPathSegment from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp4PathAttrNextHop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/bgp4PathAttrEntry/bgp4PathAttrNextHop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "bgp4PathAttrEntry",
                    "bgp4PathAttrNextHop"
                  ]
                },
                "description": "Retrieve bgp4PathAttrNextHop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp4PathAttrMultiExitDisc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/bgp4PathAttrEntry/bgp4PathAttrMultiExitDisc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "bgp4PathAttrEntry",
                    "bgp4PathAttrMultiExitDisc"
                  ]
                },
                "description": "Retrieve bgp4PathAttrMultiExitDisc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp4PathAttrLocalPref",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/bgp4PathAttrEntry/bgp4PathAttrLocalPref",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "bgp4PathAttrEntry",
                    "bgp4PathAttrLocalPref"
                  ]
                },
                "description": "Retrieve bgp4PathAttrLocalPref from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp4PathAttrAtomicAggregate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/bgp4PathAttrEntry/bgp4PathAttrAtomicAggregate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "bgp4PathAttrEntry",
                    "bgp4PathAttrAtomicAggregate"
                  ]
                },
                "description": "Retrieve bgp4PathAttrAtomicAggregate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp4PathAttrAggregatorAS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/bgp4PathAttrEntry/bgp4PathAttrAggregatorAS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "bgp4PathAttrEntry",
                    "bgp4PathAttrAggregatorAS"
                  ]
                },
                "description": "Retrieve bgp4PathAttrAggregatorAS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp4PathAttrAggregatorAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/bgp4PathAttrEntry/bgp4PathAttrAggregatorAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "bgp4PathAttrEntry",
                    "bgp4PathAttrAggregatorAddr"
                  ]
                },
                "description": "Retrieve bgp4PathAttrAggregatorAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp4PathAttrCalcLocalPref",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/bgp4PathAttrEntry/bgp4PathAttrCalcLocalPref",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "bgp4PathAttrEntry",
                    "bgp4PathAttrCalcLocalPref"
                  ]
                },
                "description": "Retrieve bgp4PathAttrCalcLocalPref from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp4PathAttrBest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/bgp4PathAttrEntry/bgp4PathAttrBest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "bgp4PathAttrEntry",
                    "bgp4PathAttrBest"
                  ]
                },
                "description": "Retrieve bgp4PathAttrBest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp4PathAttrUnknown",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/bgp4PathAttrEntry/bgp4PathAttrUnknown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "bgp4PathAttrEntry",
                    "bgp4PathAttrUnknown"
                  ]
                },
                "description": "Retrieve bgp4PathAttrUnknown from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerRemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/object-1/bgpPeerRemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "object-1",
                    "bgpPeerRemoteAddr"
                  ]
                },
                "description": "Retrieve bgpPeerRemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerLastError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/object-1/bgpPeerLastError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "object-1",
                    "bgpPeerLastError"
                  ]
                },
                "description": "Retrieve bgpPeerLastError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerRemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/object-2/bgpPeerRemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "object-2",
                    "bgpPeerRemoteAddr"
                  ]
                },
                "description": "Retrieve bgpPeerRemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BGP4-MIB:BGP4-MIB/bgp4PathAttrTable/object-2/bgpPeerState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BGP4-MIB:BGP4-MIB",
                    "bgp4PathAttrTable",
                    "object-2",
                    "bgpPeerState"
                  ]
                },
                "description": "Retrieve bgpPeerState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "BRIDGE-MIB",
          "description": "Cisco IOS-XE MIB - BRIDGE-MIB\n\nMIB data from `BRIDGE-MIB` module.\n\n**Root containers:** 1 (BRIDGE-MIB)\n**Paths:** 61 | **Descendants:** 60\n\nAll endpoints are read-only (GET).\n\nEndpoints: 61 | Operations: 61",
          "item": [
            {
              "name": "GET Get BRIDGE-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB"
                  ]
                },
                "description": "Retrieve BRIDGE-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBase",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dBase",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dBase"
                  ]
                },
                "description": "Retrieve dot1dBase from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBaseBridgeAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dBase/dot1dBaseBridgeAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dBase",
                    "dot1dBaseBridgeAddress"
                  ]
                },
                "description": "Retrieve dot1dBaseBridgeAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBaseNumPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dBase/dot1dBaseNumPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dBase",
                    "dot1dBaseNumPorts"
                  ]
                },
                "description": "Retrieve dot1dBaseNumPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBaseType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dBase/dot1dBaseType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dBase",
                    "dot1dBaseType"
                  ]
                },
                "description": "Retrieve dot1dBaseType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStp"
                  ]
                },
                "description": "Retrieve dot1dStp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpProtocolSpecification",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStp/dot1dStpProtocolSpecification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStp",
                    "dot1dStpProtocolSpecification"
                  ]
                },
                "description": "Retrieve dot1dStpProtocolSpecification from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStp/dot1dStpPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStp",
                    "dot1dStpPriority"
                  ]
                },
                "description": "Retrieve dot1dStpPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpTimeSinceTopologyChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStp/dot1dStpTimeSinceTopologyChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStp",
                    "dot1dStpTimeSinceTopologyChange"
                  ]
                },
                "description": "Retrieve dot1dStpTimeSinceTopologyChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpTopChanges",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStp/dot1dStpTopChanges",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStp",
                    "dot1dStpTopChanges"
                  ]
                },
                "description": "Retrieve dot1dStpTopChanges from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpDesignatedRoot",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStp/dot1dStpDesignatedRoot",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStp",
                    "dot1dStpDesignatedRoot"
                  ]
                },
                "description": "Retrieve dot1dStpDesignatedRoot from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpRootCost",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStp/dot1dStpRootCost",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStp",
                    "dot1dStpRootCost"
                  ]
                },
                "description": "Retrieve dot1dStpRootCost from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpRootPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStp/dot1dStpRootPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStp",
                    "dot1dStpRootPort"
                  ]
                },
                "description": "Retrieve dot1dStpRootPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpMaxAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStp/dot1dStpMaxAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStp",
                    "dot1dStpMaxAge"
                  ]
                },
                "description": "Retrieve dot1dStpMaxAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpHelloTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStp/dot1dStpHelloTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStp",
                    "dot1dStpHelloTime"
                  ]
                },
                "description": "Retrieve dot1dStpHelloTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpHoldTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStp/dot1dStpHoldTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStp",
                    "dot1dStpHoldTime"
                  ]
                },
                "description": "Retrieve dot1dStpHoldTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpForwardDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStp/dot1dStpForwardDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStp",
                    "dot1dStpForwardDelay"
                  ]
                },
                "description": "Retrieve dot1dStpForwardDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpBridgeMaxAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStp/dot1dStpBridgeMaxAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStp",
                    "dot1dStpBridgeMaxAge"
                  ]
                },
                "description": "Retrieve dot1dStpBridgeMaxAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpBridgeHelloTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStp/dot1dStpBridgeHelloTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStp",
                    "dot1dStpBridgeHelloTime"
                  ]
                },
                "description": "Retrieve dot1dStpBridgeHelloTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpBridgeForwardDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStp/dot1dStpBridgeForwardDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStp",
                    "dot1dStpBridgeForwardDelay"
                  ]
                },
                "description": "Retrieve dot1dStpBridgeForwardDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dTp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dTp"
                  ]
                },
                "description": "Retrieve dot1dTp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpLearnedEntryDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dTp/dot1dTpLearnedEntryDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dTp",
                    "dot1dTpLearnedEntryDiscards"
                  ]
                },
                "description": "Retrieve dot1dTpLearnedEntryDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpAgingTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dTp/dot1dTpAgingTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dTp",
                    "dot1dTpAgingTime"
                  ]
                },
                "description": "Retrieve dot1dTpAgingTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBasePortTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dBasePortTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dBasePortTable"
                  ]
                },
                "description": "Retrieve dot1dBasePortTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBasePortEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dBasePortTable/dot1dBasePortEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dBasePortTable",
                    "dot1dBasePortEntry"
                  ]
                },
                "description": "Retrieve dot1dBasePortEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBasePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dBasePortTable/dot1dBasePortEntry/dot1dBasePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dBasePortTable",
                    "dot1dBasePortEntry",
                    "dot1dBasePort"
                  ]
                },
                "description": "Retrieve dot1dBasePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBasePortIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dBasePortTable/dot1dBasePortEntry/dot1dBasePortIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dBasePortTable",
                    "dot1dBasePortEntry",
                    "dot1dBasePortIfIndex"
                  ]
                },
                "description": "Retrieve dot1dBasePortIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBasePortCircuit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dBasePortTable/dot1dBasePortEntry/dot1dBasePortCircuit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dBasePortTable",
                    "dot1dBasePortEntry",
                    "dot1dBasePortCircuit"
                  ]
                },
                "description": "Retrieve dot1dBasePortCircuit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBasePortDelayExceededDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dBasePortTable/dot1dBasePortEntry/dot1dBasePortDelayExceededDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dBasePortTable",
                    "dot1dBasePortEntry",
                    "dot1dBasePortDelayExceededDiscards"
                  ]
                },
                "description": "Retrieve dot1dBasePortDelayExceededDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBasePortMtuExceededDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dBasePortTable/dot1dBasePortEntry/dot1dBasePortMtuExceededDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dBasePortTable",
                    "dot1dBasePortEntry",
                    "dot1dBasePortMtuExceededDiscards"
                  ]
                },
                "description": "Retrieve dot1dBasePortMtuExceededDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpPortTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStpPortTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStpPortTable"
                  ]
                },
                "description": "Retrieve dot1dStpPortTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpPortEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStpPortTable/dot1dStpPortEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStpPortTable",
                    "dot1dStpPortEntry"
                  ]
                },
                "description": "Retrieve dot1dStpPortEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStpPortTable/dot1dStpPortEntry/dot1dStpPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStpPortTable",
                    "dot1dStpPortEntry",
                    "dot1dStpPort"
                  ]
                },
                "description": "Retrieve dot1dStpPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpPortPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStpPortTable/dot1dStpPortEntry/dot1dStpPortPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStpPortTable",
                    "dot1dStpPortEntry",
                    "dot1dStpPortPriority"
                  ]
                },
                "description": "Retrieve dot1dStpPortPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpPortState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStpPortTable/dot1dStpPortEntry/dot1dStpPortState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStpPortTable",
                    "dot1dStpPortEntry",
                    "dot1dStpPortState"
                  ]
                },
                "description": "Retrieve dot1dStpPortState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpPortEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStpPortTable/dot1dStpPortEntry/dot1dStpPortEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStpPortTable",
                    "dot1dStpPortEntry",
                    "dot1dStpPortEnable"
                  ]
                },
                "description": "Retrieve dot1dStpPortEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpPortPathCost",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStpPortTable/dot1dStpPortEntry/dot1dStpPortPathCost",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStpPortTable",
                    "dot1dStpPortEntry",
                    "dot1dStpPortPathCost"
                  ]
                },
                "description": "Retrieve dot1dStpPortPathCost from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpPortDesignatedRoot",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStpPortTable/dot1dStpPortEntry/dot1dStpPortDesignatedRoot",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStpPortTable",
                    "dot1dStpPortEntry",
                    "dot1dStpPortDesignatedRoot"
                  ]
                },
                "description": "Retrieve dot1dStpPortDesignatedRoot from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpPortDesignatedCost",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStpPortTable/dot1dStpPortEntry/dot1dStpPortDesignatedCost",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStpPortTable",
                    "dot1dStpPortEntry",
                    "dot1dStpPortDesignatedCost"
                  ]
                },
                "description": "Retrieve dot1dStpPortDesignatedCost from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpPortDesignatedBridge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStpPortTable/dot1dStpPortEntry/dot1dStpPortDesignatedBridge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStpPortTable",
                    "dot1dStpPortEntry",
                    "dot1dStpPortDesignatedBridge"
                  ]
                },
                "description": "Retrieve dot1dStpPortDesignatedBridge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpPortDesignatedPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStpPortTable/dot1dStpPortEntry/dot1dStpPortDesignatedPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStpPortTable",
                    "dot1dStpPortEntry",
                    "dot1dStpPortDesignatedPort"
                  ]
                },
                "description": "Retrieve dot1dStpPortDesignatedPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpPortForwardTransitions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStpPortTable/dot1dStpPortEntry/dot1dStpPortForwardTransitions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStpPortTable",
                    "dot1dStpPortEntry",
                    "dot1dStpPortForwardTransitions"
                  ]
                },
                "description": "Retrieve dot1dStpPortForwardTransitions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStpPortPathCost32",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStpPortTable/dot1dStpPortEntry/dot1dStpPortPathCost32",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStpPortTable",
                    "dot1dStpPortEntry",
                    "dot1dStpPortPathCost32"
                  ]
                },
                "description": "Retrieve dot1dStpPortPathCost32 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpFdbTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dTpFdbTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dTpFdbTable"
                  ]
                },
                "description": "Retrieve dot1dTpFdbTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpFdbEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dTpFdbTable/dot1dTpFdbEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dTpFdbTable",
                    "dot1dTpFdbEntry"
                  ]
                },
                "description": "Retrieve dot1dTpFdbEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpFdbAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dTpFdbTable/dot1dTpFdbEntry/dot1dTpFdbAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dTpFdbTable",
                    "dot1dTpFdbEntry",
                    "dot1dTpFdbAddress"
                  ]
                },
                "description": "Retrieve dot1dTpFdbAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpFdbPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dTpFdbTable/dot1dTpFdbEntry/dot1dTpFdbPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dTpFdbTable",
                    "dot1dTpFdbEntry",
                    "dot1dTpFdbPort"
                  ]
                },
                "description": "Retrieve dot1dTpFdbPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpFdbStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dTpFdbTable/dot1dTpFdbEntry/dot1dTpFdbStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dTpFdbTable",
                    "dot1dTpFdbEntry",
                    "dot1dTpFdbStatus"
                  ]
                },
                "description": "Retrieve dot1dTpFdbStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpPortTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dTpPortTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dTpPortTable"
                  ]
                },
                "description": "Retrieve dot1dTpPortTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpPortEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dTpPortTable/dot1dTpPortEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dTpPortTable",
                    "dot1dTpPortEntry"
                  ]
                },
                "description": "Retrieve dot1dTpPortEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dTpPortTable/dot1dTpPortEntry/dot1dTpPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dTpPortTable",
                    "dot1dTpPortEntry",
                    "dot1dTpPort"
                  ]
                },
                "description": "Retrieve dot1dTpPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpPortMaxInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dTpPortTable/dot1dTpPortEntry/dot1dTpPortMaxInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dTpPortTable",
                    "dot1dTpPortEntry",
                    "dot1dTpPortMaxInfo"
                  ]
                },
                "description": "Retrieve dot1dTpPortMaxInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpPortInFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dTpPortTable/dot1dTpPortEntry/dot1dTpPortInFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dTpPortTable",
                    "dot1dTpPortEntry",
                    "dot1dTpPortInFrames"
                  ]
                },
                "description": "Retrieve dot1dTpPortInFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpPortOutFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dTpPortTable/dot1dTpPortEntry/dot1dTpPortOutFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dTpPortTable",
                    "dot1dTpPortEntry",
                    "dot1dTpPortOutFrames"
                  ]
                },
                "description": "Retrieve dot1dTpPortOutFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpPortInDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dTpPortTable/dot1dTpPortEntry/dot1dTpPortInDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dTpPortTable",
                    "dot1dTpPortEntry",
                    "dot1dTpPortInDiscards"
                  ]
                },
                "description": "Retrieve dot1dTpPortInDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStaticTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStaticTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStaticTable"
                  ]
                },
                "description": "Retrieve dot1dStaticTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStaticEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStaticTable/dot1dStaticEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStaticTable",
                    "dot1dStaticEntry"
                  ]
                },
                "description": "Retrieve dot1dStaticEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStaticAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStaticTable/dot1dStaticEntry/dot1dStaticAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStaticTable",
                    "dot1dStaticEntry",
                    "dot1dStaticAddress"
                  ]
                },
                "description": "Retrieve dot1dStaticAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStaticReceivePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStaticTable/dot1dStaticEntry/dot1dStaticReceivePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStaticTable",
                    "dot1dStaticEntry",
                    "dot1dStaticReceivePort"
                  ]
                },
                "description": "Retrieve dot1dStaticReceivePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStaticAllowedToGoTo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStaticTable/dot1dStaticEntry/dot1dStaticAllowedToGoTo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStaticTable",
                    "dot1dStaticEntry",
                    "dot1dStaticAllowedToGoTo"
                  ]
                },
                "description": "Retrieve dot1dStaticAllowedToGoTo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dStaticStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/BRIDGE-MIB:BRIDGE-MIB/dot1dStaticTable/dot1dStaticEntry/dot1dStaticStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "BRIDGE-MIB:BRIDGE-MIB",
                    "dot1dStaticTable",
                    "dot1dStaticEntry",
                    "dot1dStaticStatus"
                  ]
                },
                "description": "Retrieve dot1dStaticStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-AAA-SERVER-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-AAA-SERVER-MIB\n\nMIB data from `CISCO-AAA-SERVER-MIB` module.\n\n**Root containers:** 1 (CISCO-AAA-SERVER-MIB)\n**Paths:** 54 | **Descendants:** 53\n\nAll endpoints are read-only (GET).\n\nEndpoints: 54 | Operations: 54",
          "item": [
            {
              "name": "GET Get CISCO-AAA-SERVER-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB"
                  ]
                },
                "description": "Retrieve CISCO-AAA-SERVER-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfig"
                  ]
                },
                "description": "Retrieve casConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casServerStateChangeEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfig/casServerStateChangeEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfig",
                    "casServerStateChangeEnable"
                  ]
                },
                "description": "Retrieve casServerStateChangeEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable"
                  ]
                },
                "description": "Retrieve casConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry"
                  ]
                },
                "description": "Retrieve casConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casProtocol"
                  ]
                },
                "description": "Retrieve casProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casIndex"
                  ]
                },
                "description": "Retrieve casIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAddress"
                  ]
                },
                "description": "Retrieve casAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthenPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthenPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthenPort"
                  ]
                },
                "description": "Retrieve casAuthenPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAcctPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAcctPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAcctPort"
                  ]
                },
                "description": "Retrieve casAcctPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casKey",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casKey",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casKey"
                  ]
                },
                "description": "Retrieve casKey from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casPriority"
                  ]
                },
                "description": "Retrieve casPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casConfigRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casConfigRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casConfigRowStatus"
                  ]
                },
                "description": "Retrieve casConfigRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthenRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthenRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthenRequests"
                  ]
                },
                "description": "Retrieve casAuthenRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthenRequestTimeouts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthenRequestTimeouts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthenRequestTimeouts"
                  ]
                },
                "description": "Retrieve casAuthenRequestTimeouts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthenUnexpectedResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthenUnexpectedResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthenUnexpectedResponses"
                  ]
                },
                "description": "Retrieve casAuthenUnexpectedResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthenServerErrorResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthenServerErrorResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthenServerErrorResponses"
                  ]
                },
                "description": "Retrieve casAuthenServerErrorResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthenIncorrectResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthenIncorrectResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthenIncorrectResponses"
                  ]
                },
                "description": "Retrieve casAuthenIncorrectResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthenResponseTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthenResponseTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthenResponseTime"
                  ]
                },
                "description": "Retrieve casAuthenResponseTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthenTransactionSuccesses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthenTransactionSuccesses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthenTransactionSuccesses"
                  ]
                },
                "description": "Retrieve casAuthenTransactionSuccesses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthenTransactionFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthenTransactionFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthenTransactionFailures"
                  ]
                },
                "description": "Retrieve casAuthenTransactionFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthorRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthorRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthorRequests"
                  ]
                },
                "description": "Retrieve casAuthorRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthorRequestTimeouts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthorRequestTimeouts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthorRequestTimeouts"
                  ]
                },
                "description": "Retrieve casAuthorRequestTimeouts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthorUnexpectedResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthorUnexpectedResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthorUnexpectedResponses"
                  ]
                },
                "description": "Retrieve casAuthorUnexpectedResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthorServerErrorResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthorServerErrorResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthorServerErrorResponses"
                  ]
                },
                "description": "Retrieve casAuthorServerErrorResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthorIncorrectResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthorIncorrectResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthorIncorrectResponses"
                  ]
                },
                "description": "Retrieve casAuthorIncorrectResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthorResponseTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthorResponseTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthorResponseTime"
                  ]
                },
                "description": "Retrieve casAuthorResponseTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthorTransactionSuccesses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthorTransactionSuccesses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthorTransactionSuccesses"
                  ]
                },
                "description": "Retrieve casAuthorTransactionSuccesses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAuthorTransactionFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAuthorTransactionFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAuthorTransactionFailures"
                  ]
                },
                "description": "Retrieve casAuthorTransactionFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAcctRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAcctRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAcctRequests"
                  ]
                },
                "description": "Retrieve casAcctRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAcctRequestTimeouts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAcctRequestTimeouts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAcctRequestTimeouts"
                  ]
                },
                "description": "Retrieve casAcctRequestTimeouts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAcctUnexpectedResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAcctUnexpectedResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAcctUnexpectedResponses"
                  ]
                },
                "description": "Retrieve casAcctUnexpectedResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAcctServerErrorResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAcctServerErrorResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAcctServerErrorResponses"
                  ]
                },
                "description": "Retrieve casAcctServerErrorResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAcctIncorrectResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAcctIncorrectResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAcctIncorrectResponses"
                  ]
                },
                "description": "Retrieve casAcctIncorrectResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAcctResponseTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAcctResponseTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAcctResponseTime"
                  ]
                },
                "description": "Retrieve casAcctResponseTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAcctTransactionSuccesses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAcctTransactionSuccesses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAcctTransactionSuccesses"
                  ]
                },
                "description": "Retrieve casAcctTransactionSuccesses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casAcctTransactionFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casAcctTransactionFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casAcctTransactionFailures"
                  ]
                },
                "description": "Retrieve casAcctTransactionFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casState"
                  ]
                },
                "description": "Retrieve casState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casCurrentStateDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casCurrentStateDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casCurrentStateDuration"
                  ]
                },
                "description": "Retrieve casCurrentStateDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casPreviousStateDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casPreviousStateDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casPreviousStateDuration"
                  ]
                },
                "description": "Retrieve casPreviousStateDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casTotalDeadTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casTotalDeadTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casTotalDeadTime"
                  ]
                },
                "description": "Retrieve casTotalDeadTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casDeadCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/casConfigEntry/casDeadCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "casConfigEntry",
                    "casDeadCount"
                  ]
                },
                "description": "Retrieve casDeadCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/object-1/casProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "object-1",
                    "casProtocol"
                  ]
                },
                "description": "Retrieve casProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/object-1/casIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "object-1",
                    "casIndex"
                  ]
                },
                "description": "Retrieve casIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/object-1/casState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "object-1",
                    "casState"
                  ]
                },
                "description": "Retrieve casState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/object-2/casProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "object-2",
                    "casProtocol"
                  ]
                },
                "description": "Retrieve casProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/object-2/casIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "object-2",
                    "casIndex"
                  ]
                },
                "description": "Retrieve casIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casPreviousStateDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/object-2/casPreviousStateDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "object-2",
                    "casPreviousStateDuration"
                  ]
                },
                "description": "Retrieve casPreviousStateDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/object-3/casProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "object-3",
                    "casProtocol"
                  ]
                },
                "description": "Retrieve casProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/object-3/casIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "object-3",
                    "casIndex"
                  ]
                },
                "description": "Retrieve casIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casTotalDeadTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB/casConfigTable/object-3/casTotalDeadTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SERVER-MIB:CISCO-AAA-SERVER-MIB",
                    "casConfigTable",
                    "object-3",
                    "casTotalDeadTime"
                  ]
                },
                "description": "Retrieve casTotalDeadTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-AAA-SESSION-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-AAA-SESSION-MIB\n\nMIB data from `CISCO-AAA-SESSION-MIB` module.\n\n**Root containers:** 1 (CISCO-AAA-SESSION-MIB)\n**Paths:** 17 | **Descendants:** 16\n\nAll endpoints are read-only (GET).\n\nEndpoints: 17 | Operations: 17",
          "item": [
            {
              "name": "GET Get CISCO-AAA-SESSION-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB"
                  ]
                },
                "description": "Retrieve CISCO-AAA-SESSION-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casnActive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB/casnActive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                    "casnActive"
                  ]
                },
                "description": "Retrieve casnActive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casnActiveTableEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB/casnActive/casnActiveTableEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                    "casnActive",
                    "casnActiveTableEntries"
                  ]
                },
                "description": "Retrieve casnActiveTableEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casnActiveTableHighWaterMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB/casnActive/casnActiveTableHighWaterMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                    "casnActive",
                    "casnActiveTableHighWaterMark"
                  ]
                },
                "description": "Retrieve casnActiveTableHighWaterMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casnGeneral",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB/casnGeneral",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                    "casnGeneral"
                  ]
                },
                "description": "Retrieve casnGeneral from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casnTotalSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB/casnGeneral/casnTotalSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                    "casnGeneral",
                    "casnTotalSessions"
                  ]
                },
                "description": "Retrieve casnTotalSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casnDisconnectedSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB/casnGeneral/casnDisconnectedSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                    "casnGeneral",
                    "casnDisconnectedSessions"
                  ]
                },
                "description": "Retrieve casnDisconnectedSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casnActiveTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB/casnActiveTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                    "casnActiveTable"
                  ]
                },
                "description": "Retrieve casnActiveTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casnActiveEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB/casnActiveTable/casnActiveEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                    "casnActiveTable",
                    "casnActiveEntry"
                  ]
                },
                "description": "Retrieve casnActiveEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casnSessionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB/casnActiveTable/casnActiveEntry/casnSessionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                    "casnActiveTable",
                    "casnActiveEntry",
                    "casnSessionId"
                  ]
                },
                "description": "Retrieve casnSessionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casnUserId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB/casnActiveTable/casnActiveEntry/casnUserId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                    "casnActiveTable",
                    "casnActiveEntry",
                    "casnUserId"
                  ]
                },
                "description": "Retrieve casnUserId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casnIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB/casnActiveTable/casnActiveEntry/casnIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                    "casnActiveTable",
                    "casnActiveEntry",
                    "casnIpAddr"
                  ]
                },
                "description": "Retrieve casnIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casnIdleTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB/casnActiveTable/casnActiveEntry/casnIdleTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                    "casnActiveTable",
                    "casnActiveEntry",
                    "casnIdleTime"
                  ]
                },
                "description": "Retrieve casnIdleTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casnDisconnect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB/casnActiveTable/casnActiveEntry/casnDisconnect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                    "casnActiveTable",
                    "casnActiveEntry",
                    "casnDisconnect"
                  ]
                },
                "description": "Retrieve casnDisconnect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casnCallTrackerId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB/casnActiveTable/casnActiveEntry/casnCallTrackerId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                    "casnActiveTable",
                    "casnActiveEntry",
                    "casnCallTrackerId"
                  ]
                },
                "description": "Retrieve casnCallTrackerId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casnNasPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB/casnActiveTable/casnActiveEntry/casnNasPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                    "casnActiveTable",
                    "casnActiveEntry",
                    "casnNasPort"
                  ]
                },
                "description": "Retrieve casnNasPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get casnVaiIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB/casnActiveTable/casnActiveEntry/casnVaiIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAA-SESSION-MIB:CISCO-AAA-SESSION-MIB",
                    "casnActiveTable",
                    "casnActiveEntry",
                    "casnVaiIfIndex"
                  ]
                },
                "description": "Retrieve casnVaiIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-AAL5-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-AAL5-MIB\n\nMIB data from `CISCO-AAL5-MIB` module.\n\n**Root containers:** 12 (cAal5VccInPkts, cAal5VccOutPkts, cAal5VccInOctets, cAal5VccOutOctets, cAal5VccInDroppedPkts...)\n**Paths:** 12 | **Descendants:** 0\n\nAll endpoints are read-only (GET).\n\nEndpoints: 12 | Operations: 12",
          "item": [
            {
              "name": "GET Get cAal5VccInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAL5-MIB:cAal5VccInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAL5-MIB:cAal5VccInPkts"
                  ]
                },
                "description": "Retrieve cAal5VccInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cAal5VccOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAL5-MIB:cAal5VccOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAL5-MIB:cAal5VccOutPkts"
                  ]
                },
                "description": "Retrieve cAal5VccOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cAal5VccInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAL5-MIB:cAal5VccInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAL5-MIB:cAal5VccInOctets"
                  ]
                },
                "description": "Retrieve cAal5VccInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cAal5VccOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAL5-MIB:cAal5VccOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAL5-MIB:cAal5VccOutOctets"
                  ]
                },
                "description": "Retrieve cAal5VccOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cAal5VccInDroppedPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAL5-MIB:cAal5VccInDroppedPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAL5-MIB:cAal5VccInDroppedPkts"
                  ]
                },
                "description": "Retrieve cAal5VccInDroppedPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cAal5VccOutDroppedPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAL5-MIB:cAal5VccOutDroppedPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAL5-MIB:cAal5VccOutDroppedPkts"
                  ]
                },
                "description": "Retrieve cAal5VccOutDroppedPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cAal5VccInDroppedOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAL5-MIB:cAal5VccInDroppedOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAL5-MIB:cAal5VccInDroppedOctets"
                  ]
                },
                "description": "Retrieve cAal5VccInDroppedOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cAal5VccOutDroppedOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAL5-MIB:cAal5VccOutDroppedOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAL5-MIB:cAal5VccOutDroppedOctets"
                  ]
                },
                "description": "Retrieve cAal5VccOutDroppedOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cAal5VccHCInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAL5-MIB:cAal5VccHCInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAL5-MIB:cAal5VccHCInPkts"
                  ]
                },
                "description": "Retrieve cAal5VccHCInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cAal5VccHCOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAL5-MIB:cAal5VccHCOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAL5-MIB:cAal5VccHCOutPkts"
                  ]
                },
                "description": "Retrieve cAal5VccHCOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cAal5VccHCInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAL5-MIB:cAal5VccHCInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAL5-MIB:cAal5VccHCInOctets"
                  ]
                },
                "description": "Retrieve cAal5VccHCInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cAal5VccHCOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-AAL5-MIB:cAal5VccHCOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-AAL5-MIB:cAal5VccHCOutOctets"
                  ]
                },
                "description": "Retrieve cAal5VccHCOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-ATM-EXT-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-ATM-EXT-MIB\n\nMIB data from `CISCO-ATM-EXT-MIB` module.\n\n**Root containers:** 28 (cAal5VccExtCompEnabled, cAal5VccExtVoice, cAal5VccExtInF5OamCells, cAal5VccExtOutF5OamCells, catmxVclOamLoopbackFreq...)\n**Paths:** 28 | **Descendants:** 0\n\nAll endpoints are read-only (GET).\n\nEndpoints: 28 | Operations: 28",
          "item": [
            {
              "name": "GET Get cAal5VccExtCompEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:cAal5VccExtCompEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:cAal5VccExtCompEnabled"
                  ]
                },
                "description": "Retrieve cAal5VccExtCompEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cAal5VccExtVoice",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:cAal5VccExtVoice",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:cAal5VccExtVoice"
                  ]
                },
                "description": "Retrieve cAal5VccExtVoice from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cAal5VccExtInF5OamCells",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:cAal5VccExtInF5OamCells",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:cAal5VccExtInF5OamCells"
                  ]
                },
                "description": "Retrieve cAal5VccExtInF5OamCells from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cAal5VccExtOutF5OamCells",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:cAal5VccExtOutF5OamCells",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:cAal5VccExtOutF5OamCells"
                  ]
                },
                "description": "Retrieve cAal5VccExtOutF5OamCells from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamLoopbackFreq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamLoopbackFreq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamLoopbackFreq"
                  ]
                },
                "description": "Retrieve catmxVclOamLoopbackFreq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamRetryFreq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamRetryFreq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamRetryFreq"
                  ]
                },
                "description": "Retrieve catmxVclOamRetryFreq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamUpRetryCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamUpRetryCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamUpRetryCount"
                  ]
                },
                "description": "Retrieve catmxVclOamUpRetryCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamDownRetryCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamDownRetryCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamDownRetryCount"
                  ]
                },
                "description": "Retrieve catmxVclOamDownRetryCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamEndCCActCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamEndCCActCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamEndCCActCount"
                  ]
                },
                "description": "Retrieve catmxVclOamEndCCActCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamEndCCDeActCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamEndCCDeActCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamEndCCDeActCount"
                  ]
                },
                "description": "Retrieve catmxVclOamEndCCDeActCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamEndCCRetryFreq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamEndCCRetryFreq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamEndCCRetryFreq"
                  ]
                },
                "description": "Retrieve catmxVclOamEndCCRetryFreq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamSegCCActCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamSegCCActCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamSegCCActCount"
                  ]
                },
                "description": "Retrieve catmxVclOamSegCCActCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamSegCCDeActCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamSegCCDeActCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamSegCCDeActCount"
                  ]
                },
                "description": "Retrieve catmxVclOamSegCCDeActCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamSegCCRetryFreq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamSegCCRetryFreq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamSegCCRetryFreq"
                  ]
                },
                "description": "Retrieve catmxVclOamSegCCRetryFreq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamManage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamManage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamManage"
                  ]
                },
                "description": "Retrieve catmxVclOamManage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamLoopBkStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamLoopBkStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamLoopBkStatus"
                  ]
                },
                "description": "Retrieve catmxVclOamLoopBkStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamVcState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamVcState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamVcState"
                  ]
                },
                "description": "Retrieve catmxVclOamVcState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamEndCCStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamEndCCStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamEndCCStatus"
                  ]
                },
                "description": "Retrieve catmxVclOamEndCCStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamSegCCStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamSegCCStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamSegCCStatus"
                  ]
                },
                "description": "Retrieve catmxVclOamSegCCStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamEndCCVcState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamEndCCVcState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamEndCCVcState"
                  ]
                },
                "description": "Retrieve catmxVclOamEndCCVcState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamSegCCVcState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamSegCCVcState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamSegCCVcState"
                  ]
                },
                "description": "Retrieve catmxVclOamSegCCVcState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamCellsReceived",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamCellsReceived",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamCellsReceived"
                  ]
                },
                "description": "Retrieve catmxVclOamCellsReceived from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamCellsSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamCellsSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamCellsSent"
                  ]
                },
                "description": "Retrieve catmxVclOamCellsSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamCellsDropped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamCellsDropped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamCellsDropped"
                  ]
                },
                "description": "Retrieve catmxVclOamCellsDropped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamInF5ais",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamInF5ais",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamInF5ais"
                  ]
                },
                "description": "Retrieve catmxVclOamInF5ais from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamOutF5ais",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamOutF5ais",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamOutF5ais"
                  ]
                },
                "description": "Retrieve catmxVclOamOutF5ais from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamInF5rdi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamInF5rdi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamInF5rdi"
                  ]
                },
                "description": "Retrieve catmxVclOamInF5rdi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmxVclOamOutF5rdi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-EXT-MIB:catmxVclOamOutF5rdi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-EXT-MIB:catmxVclOamOutF5rdi"
                  ]
                },
                "description": "Retrieve catmxVclOamOutF5rdi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-ATM-PVCTRAP-EXTN-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-ATM-PVCTRAP-EXTN-MIB\n\nMIB data from `CISCO-ATM-PVCTRAP-EXTN-MIB` module.\n\n**Root containers:** 1 (CISCO-ATM-PVCTRAP-EXTN-MIB)\n**Paths:** 160 | **Descendants:** 263\n\nAll endpoints are read-only (GET).\n\nEndpoints: 160 | Operations: 160",
          "item": [
            {
              "name": "GET Get CISCO-ATM-PVCTRAP-EXTN-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB"
                  ]
                },
                "description": "Retrieve CISCO-ATM-PVCTRAP-EXTN-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmCurStatChangePVclTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable"
                  ]
                },
                "description": "Retrieve catmCurStatChangePVclTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmCurStatChangePVclEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry"
                  ]
                },
                "description": "Retrieve catmCurStatChangePVclEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/atmVclVci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "atmVclVci"
                  ]
                },
                "description": "Retrieve atmVclVci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclStatusTransition",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/catmPVclStatusTransition",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "catmPVclStatusTransition"
                  ]
                },
                "description": "Retrieve catmPVclStatusTransition from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclStatusChangeStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/catmPVclStatusChangeStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "catmPVclStatusChangeStart"
                  ]
                },
                "description": "Retrieve catmPVclStatusChangeStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclStatusChangeEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/catmPVclStatusChangeEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "catmPVclStatusChangeEnd"
                  ]
                },
                "description": "Retrieve catmPVclStatusChangeEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclSegCCStatusTransition",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/catmPVclSegCCStatusTransition",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "catmPVclSegCCStatusTransition"
                  ]
                },
                "description": "Retrieve catmPVclSegCCStatusTransition from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclSegCCStatusChangeStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/catmPVclSegCCStatusChangeStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "catmPVclSegCCStatusChangeStart"
                  ]
                },
                "description": "Retrieve catmPVclSegCCStatusChangeStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclSegCCStatusChangeEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/catmPVclSegCCStatusChangeEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "catmPVclSegCCStatusChangeEnd"
                  ]
                },
                "description": "Retrieve catmPVclSegCCStatusChangeEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclEndCCStatusTransition",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/catmPVclEndCCStatusTransition",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "catmPVclEndCCStatusTransition"
                  ]
                },
                "description": "Retrieve catmPVclEndCCStatusTransition from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclEndCCStatusChangeStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/catmPVclEndCCStatusChangeStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "catmPVclEndCCStatusChangeStart"
                  ]
                },
                "description": "Retrieve catmPVclEndCCStatusChangeStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclEndCCStatusChangeEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/catmPVclEndCCStatusChangeEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "catmPVclEndCCStatusChangeEnd"
                  ]
                },
                "description": "Retrieve catmPVclEndCCStatusChangeEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclAISRDIStatusTransition",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/catmPVclAISRDIStatusTransition",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "catmPVclAISRDIStatusTransition"
                  ]
                },
                "description": "Retrieve catmPVclAISRDIStatusTransition from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclAISRDIStatusChangeStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/catmPVclAISRDIStatusChangeStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "catmPVclAISRDIStatusChangeStart"
                  ]
                },
                "description": "Retrieve catmPVclAISRDIStatusChangeStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclAISRDIStatusChangeEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/catmPVclAISRDIStatusChangeEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "catmPVclAISRDIStatusChangeEnd"
                  ]
                },
                "description": "Retrieve catmPVclAISRDIStatusChangeEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclCurFailTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/catmPVclCurFailTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "catmPVclCurFailTime"
                  ]
                },
                "description": "Retrieve catmPVclCurFailTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclPrevRecoverTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/catmPVclPrevRecoverTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "catmPVclPrevRecoverTime"
                  ]
                },
                "description": "Retrieve catmPVclPrevRecoverTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclFailureReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatChangePVclTable/catmCurStatChangePVclEntry/catmPVclFailureReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatChangePVclTable",
                    "catmCurStatChangePVclEntry",
                    "catmPVclFailureReason"
                  ]
                },
                "description": "Retrieve catmPVclFailureReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmStatusChangePVclRangeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusChangePVclRangeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusChangePVclRangeTable"
                  ]
                },
                "description": "Retrieve catmStatusChangePVclRangeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmStatusChangePVclRangeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusChangePVclRangeTable/catmStatusChangePVclRangeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusChangePVclRangeTable",
                    "catmStatusChangePVclRangeEntry"
                  ]
                },
                "description": "Retrieve catmStatusChangePVclRangeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusChangePVclRangeTable/catmStatusChangePVclRangeEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusChangePVclRangeTable",
                    "catmStatusChangePVclRangeEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusChangePVclRangeTable/catmStatusChangePVclRangeEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusChangePVclRangeTable",
                    "catmStatusChangePVclRangeEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmStatusChangePVclRangeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusChangePVclRangeTable/catmStatusChangePVclRangeEntry/catmStatusChangePVclRangeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusChangePVclRangeTable",
                    "catmStatusChangePVclRangeEntry",
                    "catmStatusChangePVclRangeIndex"
                  ]
                },
                "description": "Retrieve catmStatusChangePVclRangeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclLowerRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusChangePVclRangeTable/catmStatusChangePVclRangeEntry/catmPVclLowerRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusChangePVclRangeTable",
                    "catmStatusChangePVclRangeEntry",
                    "catmPVclLowerRangeValue"
                  ]
                },
                "description": "Retrieve catmPVclLowerRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclHigherRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusChangePVclRangeTable/catmStatusChangePVclRangeEntry/catmPVclHigherRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusChangePVclRangeTable",
                    "catmStatusChangePVclRangeEntry",
                    "catmPVclHigherRangeValue"
                  ]
                },
                "description": "Retrieve catmPVclHigherRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclRangeStatusChangeStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusChangePVclRangeTable/catmStatusChangePVclRangeEntry/catmPVclRangeStatusChangeStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusChangePVclRangeTable",
                    "catmStatusChangePVclRangeEntry",
                    "catmPVclRangeStatusChangeStart"
                  ]
                },
                "description": "Retrieve catmPVclRangeStatusChangeStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclRangeStatusChangeEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusChangePVclRangeTable/catmStatusChangePVclRangeEntry/catmPVclRangeStatusChangeEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusChangePVclRangeTable",
                    "catmStatusChangePVclRangeEntry",
                    "catmPVclRangeStatusChangeEnd"
                  ]
                },
                "description": "Retrieve catmPVclRangeStatusChangeEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmSegCCStatusChPVclRangeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusChPVclRangeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusChPVclRangeTable"
                  ]
                },
                "description": "Retrieve catmSegCCStatusChPVclRangeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmSegCCStatusChPVclRangeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusChPVclRangeTable/catmSegCCStatusChPVclRangeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusChPVclRangeTable",
                    "catmSegCCStatusChPVclRangeEntry"
                  ]
                },
                "description": "Retrieve catmSegCCStatusChPVclRangeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusChPVclRangeTable/catmSegCCStatusChPVclRangeEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusChPVclRangeTable",
                    "catmSegCCStatusChPVclRangeEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusChPVclRangeTable/catmSegCCStatusChPVclRangeEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusChPVclRangeTable",
                    "catmSegCCStatusChPVclRangeEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmStatusChangePVclRangeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusChPVclRangeTable/catmSegCCStatusChPVclRangeEntry/catmStatusChangePVclRangeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusChPVclRangeTable",
                    "catmSegCCStatusChPVclRangeEntry",
                    "catmStatusChangePVclRangeIndex"
                  ]
                },
                "description": "Retrieve catmStatusChangePVclRangeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclSegCCLowerRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusChPVclRangeTable/catmSegCCStatusChPVclRangeEntry/catmPVclSegCCLowerRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusChPVclRangeTable",
                    "catmSegCCStatusChPVclRangeEntry",
                    "catmPVclSegCCLowerRangeValue"
                  ]
                },
                "description": "Retrieve catmPVclSegCCLowerRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclSegCCHigherRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusChPVclRangeTable/catmSegCCStatusChPVclRangeEntry/catmPVclSegCCHigherRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusChPVclRangeTable",
                    "catmSegCCStatusChPVclRangeEntry",
                    "catmPVclSegCCHigherRangeValue"
                  ]
                },
                "description": "Retrieve catmPVclSegCCHigherRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclSegCCRangeStatusChStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusChPVclRangeTable/catmSegCCStatusChPVclRangeEntry/catmPVclSegCCRangeStatusChStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusChPVclRangeTable",
                    "catmSegCCStatusChPVclRangeEntry",
                    "catmPVclSegCCRangeStatusChStart"
                  ]
                },
                "description": "Retrieve catmPVclSegCCRangeStatusChStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclSegCCRangeStatusChEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusChPVclRangeTable/catmSegCCStatusChPVclRangeEntry/catmPVclSegCCRangeStatusChEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusChPVclRangeTable",
                    "catmSegCCStatusChPVclRangeEntry",
                    "catmPVclSegCCRangeStatusChEnd"
                  ]
                },
                "description": "Retrieve catmPVclSegCCRangeStatusChEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmEndCCStatusChPVclRangeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusChPVclRangeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusChPVclRangeTable"
                  ]
                },
                "description": "Retrieve catmEndCCStatusChPVclRangeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmEndCCStatusChPVclRangeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusChPVclRangeTable/catmEndCCStatusChPVclRangeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusChPVclRangeTable",
                    "catmEndCCStatusChPVclRangeEntry"
                  ]
                },
                "description": "Retrieve catmEndCCStatusChPVclRangeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusChPVclRangeTable/catmEndCCStatusChPVclRangeEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusChPVclRangeTable",
                    "catmEndCCStatusChPVclRangeEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusChPVclRangeTable/catmEndCCStatusChPVclRangeEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusChPVclRangeTable",
                    "catmEndCCStatusChPVclRangeEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmStatusChangePVclRangeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusChPVclRangeTable/catmEndCCStatusChPVclRangeEntry/catmStatusChangePVclRangeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusChPVclRangeTable",
                    "catmEndCCStatusChPVclRangeEntry",
                    "catmStatusChangePVclRangeIndex"
                  ]
                },
                "description": "Retrieve catmStatusChangePVclRangeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclEndCCLowerRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusChPVclRangeTable/catmEndCCStatusChPVclRangeEntry/catmPVclEndCCLowerRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusChPVclRangeTable",
                    "catmEndCCStatusChPVclRangeEntry",
                    "catmPVclEndCCLowerRangeValue"
                  ]
                },
                "description": "Retrieve catmPVclEndCCLowerRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclEndCCHigherRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusChPVclRangeTable/catmEndCCStatusChPVclRangeEntry/catmPVclEndCCHigherRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusChPVclRangeTable",
                    "catmEndCCStatusChPVclRangeEntry",
                    "catmPVclEndCCHigherRangeValue"
                  ]
                },
                "description": "Retrieve catmPVclEndCCHigherRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclEndCCRangeStatusChStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusChPVclRangeTable/catmEndCCStatusChPVclRangeEntry/catmPVclEndCCRangeStatusChStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusChPVclRangeTable",
                    "catmEndCCStatusChPVclRangeEntry",
                    "catmPVclEndCCRangeStatusChStart"
                  ]
                },
                "description": "Retrieve catmPVclEndCCRangeStatusChStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclEndCCRangeStatusChEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusChPVclRangeTable/catmEndCCStatusChPVclRangeEntry/catmPVclEndCCRangeStatusChEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusChPVclRangeTable",
                    "catmEndCCStatusChPVclRangeEntry",
                    "catmPVclEndCCRangeStatusChEnd"
                  ]
                },
                "description": "Retrieve catmPVclEndCCRangeStatusChEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmAISRDIStatusChPVclRangeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusChPVclRangeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusChPVclRangeTable"
                  ]
                },
                "description": "Retrieve catmAISRDIStatusChPVclRangeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmAISRDIStatusChPVclRangeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusChPVclRangeTable/catmAISRDIStatusChPVclRangeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusChPVclRangeTable",
                    "catmAISRDIStatusChPVclRangeEntry"
                  ]
                },
                "description": "Retrieve catmAISRDIStatusChPVclRangeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusChPVclRangeTable/catmAISRDIStatusChPVclRangeEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusChPVclRangeTable",
                    "catmAISRDIStatusChPVclRangeEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusChPVclRangeTable/catmAISRDIStatusChPVclRangeEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusChPVclRangeTable",
                    "catmAISRDIStatusChPVclRangeEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmStatusChangePVclRangeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusChPVclRangeTable/catmAISRDIStatusChPVclRangeEntry/catmStatusChangePVclRangeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusChPVclRangeTable",
                    "catmAISRDIStatusChPVclRangeEntry",
                    "catmStatusChangePVclRangeIndex"
                  ]
                },
                "description": "Retrieve catmStatusChangePVclRangeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclAISRDILowerRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusChPVclRangeTable/catmAISRDIStatusChPVclRangeEntry/catmPVclAISRDILowerRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusChPVclRangeTable",
                    "catmAISRDIStatusChPVclRangeEntry",
                    "catmPVclAISRDILowerRangeValue"
                  ]
                },
                "description": "Retrieve catmPVclAISRDILowerRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclAISRDIHigherRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusChPVclRangeTable/catmAISRDIStatusChPVclRangeEntry/catmPVclAISRDIHigherRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusChPVclRangeTable",
                    "catmAISRDIStatusChPVclRangeEntry",
                    "catmPVclAISRDIHigherRangeValue"
                  ]
                },
                "description": "Retrieve catmPVclAISRDIHigherRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclAISRDIRangeStatusChStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusChPVclRangeTable/catmAISRDIStatusChPVclRangeEntry/catmPVclAISRDIRangeStatusChStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusChPVclRangeTable",
                    "catmAISRDIStatusChPVclRangeEntry",
                    "catmPVclAISRDIRangeStatusChStart"
                  ]
                },
                "description": "Retrieve catmPVclAISRDIRangeStatusChStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclAISRDIRangeStatusChEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusChPVclRangeTable/catmAISRDIStatusChPVclRangeEntry/catmPVclAISRDIRangeStatusChEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusChPVclRangeTable",
                    "catmAISRDIStatusChPVclRangeEntry",
                    "catmPVclAISRDIRangeStatusChEnd"
                  ]
                },
                "description": "Retrieve catmPVclAISRDIRangeStatusChEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmDownPVclRangeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmDownPVclRangeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmDownPVclRangeTable"
                  ]
                },
                "description": "Retrieve catmDownPVclRangeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmDownPVclRangeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmDownPVclRangeTable/catmDownPVclRangeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmDownPVclRangeTable",
                    "catmDownPVclRangeEntry"
                  ]
                },
                "description": "Retrieve catmDownPVclRangeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmDownPVclRangeTable/catmDownPVclRangeEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmDownPVclRangeTable",
                    "catmDownPVclRangeEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmDownPVclRangeTable/catmDownPVclRangeEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmDownPVclRangeTable",
                    "catmDownPVclRangeEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmStatusChangePVclRangeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmDownPVclRangeTable/catmDownPVclRangeEntry/catmStatusChangePVclRangeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmDownPVclRangeTable",
                    "catmDownPVclRangeEntry",
                    "catmStatusChangePVclRangeIndex"
                  ]
                },
                "description": "Retrieve catmStatusChangePVclRangeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmDownPVclLowerRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmDownPVclRangeTable/catmDownPVclRangeEntry/catmDownPVclLowerRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmDownPVclRangeTable",
                    "catmDownPVclRangeEntry",
                    "catmDownPVclLowerRangeValue"
                  ]
                },
                "description": "Retrieve catmDownPVclLowerRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmDownPVclHigherRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmDownPVclRangeTable/catmDownPVclRangeEntry/catmDownPVclHigherRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmDownPVclRangeTable",
                    "catmDownPVclRangeEntry",
                    "catmDownPVclHigherRangeValue"
                  ]
                },
                "description": "Retrieve catmDownPVclHigherRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmDownPVclRangeStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmDownPVclRangeTable/catmDownPVclRangeEntry/catmDownPVclRangeStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmDownPVclRangeTable",
                    "catmDownPVclRangeEntry",
                    "catmDownPVclRangeStart"
                  ]
                },
                "description": "Retrieve catmDownPVclRangeStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmDownPVclRangeEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmDownPVclRangeTable/catmDownPVclRangeEntry/catmDownPVclRangeEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmDownPVclRangeTable",
                    "catmDownPVclRangeEntry",
                    "catmDownPVclRangeEnd"
                  ]
                },
                "description": "Retrieve catmDownPVclRangeEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPrevUpPVclRangeStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmDownPVclRangeTable/catmDownPVclRangeEntry/catmPrevUpPVclRangeStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmDownPVclRangeTable",
                    "catmDownPVclRangeEntry",
                    "catmPrevUpPVclRangeStart"
                  ]
                },
                "description": "Retrieve catmPrevUpPVclRangeStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPrevUpPVclRangeEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmDownPVclRangeTable/catmDownPVclRangeEntry/catmPrevUpPVclRangeEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmDownPVclRangeTable",
                    "catmDownPVclRangeEntry",
                    "catmPrevUpPVclRangeEnd"
                  ]
                },
                "description": "Retrieve catmPrevUpPVclRangeEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclRangeFailureReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmDownPVclRangeTable/catmDownPVclRangeEntry/catmPVclRangeFailureReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmDownPVclRangeTable",
                    "catmDownPVclRangeEntry",
                    "catmPVclRangeFailureReason"
                  ]
                },
                "description": "Retrieve catmPVclRangeFailureReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmCurStatusUpPVclTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable"
                  ]
                },
                "description": "Retrieve catmCurStatusUpPVclTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmCurStatusUpPVclEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry"
                  ]
                },
                "description": "Retrieve catmCurStatusUpPVclEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/atmVclVci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "atmVclVci"
                  ]
                },
                "description": "Retrieve atmVclVci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclStatusUpTransition",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/catmPVclStatusUpTransition",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "catmPVclStatusUpTransition"
                  ]
                },
                "description": "Retrieve catmPVclStatusUpTransition from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclStatusUpStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/catmPVclStatusUpStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "catmPVclStatusUpStart"
                  ]
                },
                "description": "Retrieve catmPVclStatusUpStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclStatusUpEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/catmPVclStatusUpEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "catmPVclStatusUpEnd"
                  ]
                },
                "description": "Retrieve catmPVclStatusUpEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclSegCCStatusUpTransition",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/catmPVclSegCCStatusUpTransition",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "catmPVclSegCCStatusUpTransition"
                  ]
                },
                "description": "Retrieve catmPVclSegCCStatusUpTransition from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclSegCCStatusUpStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/catmPVclSegCCStatusUpStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "catmPVclSegCCStatusUpStart"
                  ]
                },
                "description": "Retrieve catmPVclSegCCStatusUpStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclSegCCStatusUpEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/catmPVclSegCCStatusUpEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "catmPVclSegCCStatusUpEnd"
                  ]
                },
                "description": "Retrieve catmPVclSegCCStatusUpEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclEndCCStatusUpTransition",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/catmPVclEndCCStatusUpTransition",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "catmPVclEndCCStatusUpTransition"
                  ]
                },
                "description": "Retrieve catmPVclEndCCStatusUpTransition from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclEndCCStatusUpStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/catmPVclEndCCStatusUpStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "catmPVclEndCCStatusUpStart"
                  ]
                },
                "description": "Retrieve catmPVclEndCCStatusUpStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclEndCCStatusUpEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/catmPVclEndCCStatusUpEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "catmPVclEndCCStatusUpEnd"
                  ]
                },
                "description": "Retrieve catmPVclEndCCStatusUpEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclAISRDIStatusUpTransition",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/catmPVclAISRDIStatusUpTransition",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "catmPVclAISRDIStatusUpTransition"
                  ]
                },
                "description": "Retrieve catmPVclAISRDIStatusUpTransition from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclAISRDIStatusUpStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/catmPVclAISRDIStatusUpStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "catmPVclAISRDIStatusUpStart"
                  ]
                },
                "description": "Retrieve catmPVclAISRDIStatusUpStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclAISRDIStatusUpEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/catmPVclAISRDIStatusUpEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "catmPVclAISRDIStatusUpEnd"
                  ]
                },
                "description": "Retrieve catmPVclAISRDIStatusUpEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclCurRecoverTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/catmPVclCurRecoverTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "catmPVclCurRecoverTime"
                  ]
                },
                "description": "Retrieve catmPVclCurRecoverTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclPrevFailTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/catmPVclPrevFailTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "catmPVclPrevFailTime"
                  ]
                },
                "description": "Retrieve catmPVclPrevFailTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclRecoveryReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmCurStatusUpPVclTable/catmCurStatusUpPVclEntry/catmPVclRecoveryReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmCurStatusUpPVclTable",
                    "catmCurStatusUpPVclEntry",
                    "catmPVclRecoveryReason"
                  ]
                },
                "description": "Retrieve catmPVclRecoveryReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmStatusUpPVclRangeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusUpPVclRangeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusUpPVclRangeTable"
                  ]
                },
                "description": "Retrieve catmStatusUpPVclRangeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmStatusUpPVclRangeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusUpPVclRangeTable/catmStatusUpPVclRangeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusUpPVclRangeTable",
                    "catmStatusUpPVclRangeEntry"
                  ]
                },
                "description": "Retrieve catmStatusUpPVclRangeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusUpPVclRangeTable/catmStatusUpPVclRangeEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusUpPVclRangeTable",
                    "catmStatusUpPVclRangeEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusUpPVclRangeTable/catmStatusUpPVclRangeEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusUpPVclRangeTable",
                    "catmStatusUpPVclRangeEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmStatusChangePVclRangeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusUpPVclRangeTable/catmStatusUpPVclRangeEntry/catmStatusChangePVclRangeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusUpPVclRangeTable",
                    "catmStatusUpPVclRangeEntry",
                    "catmStatusChangePVclRangeIndex"
                  ]
                },
                "description": "Retrieve catmStatusChangePVclRangeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclUpLowerRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusUpPVclRangeTable/catmStatusUpPVclRangeEntry/catmPVclUpLowerRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusUpPVclRangeTable",
                    "catmStatusUpPVclRangeEntry",
                    "catmPVclUpLowerRangeValue"
                  ]
                },
                "description": "Retrieve catmPVclUpLowerRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclUpHigherRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusUpPVclRangeTable/catmStatusUpPVclRangeEntry/catmPVclUpHigherRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusUpPVclRangeTable",
                    "catmStatusUpPVclRangeEntry",
                    "catmPVclUpHigherRangeValue"
                  ]
                },
                "description": "Retrieve catmPVclUpHigherRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclRangeStatusUpStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusUpPVclRangeTable/catmStatusUpPVclRangeEntry/catmPVclRangeStatusUpStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusUpPVclRangeTable",
                    "catmStatusUpPVclRangeEntry",
                    "catmPVclRangeStatusUpStart"
                  ]
                },
                "description": "Retrieve catmPVclRangeStatusUpStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclRangeStatusUpEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmStatusUpPVclRangeTable/catmStatusUpPVclRangeEntry/catmPVclRangeStatusUpEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmStatusUpPVclRangeTable",
                    "catmStatusUpPVclRangeEntry",
                    "catmPVclRangeStatusUpEnd"
                  ]
                },
                "description": "Retrieve catmPVclRangeStatusUpEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmSegCCStatusUpPVclRangeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusUpPVclRangeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusUpPVclRangeTable"
                  ]
                },
                "description": "Retrieve catmSegCCStatusUpPVclRangeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmSegCCStatusUpPVclRangeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusUpPVclRangeTable/catmSegCCStatusUpPVclRangeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusUpPVclRangeTable",
                    "catmSegCCStatusUpPVclRangeEntry"
                  ]
                },
                "description": "Retrieve catmSegCCStatusUpPVclRangeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusUpPVclRangeTable/catmSegCCStatusUpPVclRangeEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusUpPVclRangeTable",
                    "catmSegCCStatusUpPVclRangeEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusUpPVclRangeTable/catmSegCCStatusUpPVclRangeEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusUpPVclRangeTable",
                    "catmSegCCStatusUpPVclRangeEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmStatusChangePVclRangeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusUpPVclRangeTable/catmSegCCStatusUpPVclRangeEntry/catmStatusChangePVclRangeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusUpPVclRangeTable",
                    "catmSegCCStatusUpPVclRangeEntry",
                    "catmStatusChangePVclRangeIndex"
                  ]
                },
                "description": "Retrieve catmStatusChangePVclRangeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclSegCCUpLowerRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusUpPVclRangeTable/catmSegCCStatusUpPVclRangeEntry/catmPVclSegCCUpLowerRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusUpPVclRangeTable",
                    "catmSegCCStatusUpPVclRangeEntry",
                    "catmPVclSegCCUpLowerRangeValue"
                  ]
                },
                "description": "Retrieve catmPVclSegCCUpLowerRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclSegCCUpHigherRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusUpPVclRangeTable/catmSegCCStatusUpPVclRangeEntry/catmPVclSegCCUpHigherRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusUpPVclRangeTable",
                    "catmSegCCStatusUpPVclRangeEntry",
                    "catmPVclSegCCUpHigherRangeValue"
                  ]
                },
                "description": "Retrieve catmPVclSegCCUpHigherRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclSegCCRangeStatusUpStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusUpPVclRangeTable/catmSegCCStatusUpPVclRangeEntry/catmPVclSegCCRangeStatusUpStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusUpPVclRangeTable",
                    "catmSegCCStatusUpPVclRangeEntry",
                    "catmPVclSegCCRangeStatusUpStart"
                  ]
                },
                "description": "Retrieve catmPVclSegCCRangeStatusUpStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclSegCCRangeStatusUpEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmSegCCStatusUpPVclRangeTable/catmSegCCStatusUpPVclRangeEntry/catmPVclSegCCRangeStatusUpEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmSegCCStatusUpPVclRangeTable",
                    "catmSegCCStatusUpPVclRangeEntry",
                    "catmPVclSegCCRangeStatusUpEnd"
                  ]
                },
                "description": "Retrieve catmPVclSegCCRangeStatusUpEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmEndCCStatusUpPVclRangeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusUpPVclRangeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusUpPVclRangeTable"
                  ]
                },
                "description": "Retrieve catmEndCCStatusUpPVclRangeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmEndCCStatusUpPVclRangeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusUpPVclRangeTable/catmEndCCStatusUpPVclRangeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusUpPVclRangeTable",
                    "catmEndCCStatusUpPVclRangeEntry"
                  ]
                },
                "description": "Retrieve catmEndCCStatusUpPVclRangeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusUpPVclRangeTable/catmEndCCStatusUpPVclRangeEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusUpPVclRangeTable",
                    "catmEndCCStatusUpPVclRangeEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusUpPVclRangeTable/catmEndCCStatusUpPVclRangeEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusUpPVclRangeTable",
                    "catmEndCCStatusUpPVclRangeEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmStatusChangePVclRangeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusUpPVclRangeTable/catmEndCCStatusUpPVclRangeEntry/catmStatusChangePVclRangeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusUpPVclRangeTable",
                    "catmEndCCStatusUpPVclRangeEntry",
                    "catmStatusChangePVclRangeIndex"
                  ]
                },
                "description": "Retrieve catmStatusChangePVclRangeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclEndCCUpLowerRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusUpPVclRangeTable/catmEndCCStatusUpPVclRangeEntry/catmPVclEndCCUpLowerRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusUpPVclRangeTable",
                    "catmEndCCStatusUpPVclRangeEntry",
                    "catmPVclEndCCUpLowerRangeValue"
                  ]
                },
                "description": "Retrieve catmPVclEndCCUpLowerRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclEndCCUpHigherRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusUpPVclRangeTable/catmEndCCStatusUpPVclRangeEntry/catmPVclEndCCUpHigherRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusUpPVclRangeTable",
                    "catmEndCCStatusUpPVclRangeEntry",
                    "catmPVclEndCCUpHigherRangeValue"
                  ]
                },
                "description": "Retrieve catmPVclEndCCUpHigherRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclEndCCRangeStatusUpStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusUpPVclRangeTable/catmEndCCStatusUpPVclRangeEntry/catmPVclEndCCRangeStatusUpStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusUpPVclRangeTable",
                    "catmEndCCStatusUpPVclRangeEntry",
                    "catmPVclEndCCRangeStatusUpStart"
                  ]
                },
                "description": "Retrieve catmPVclEndCCRangeStatusUpStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclEndCCRangeStatusUpEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmEndCCStatusUpPVclRangeTable/catmEndCCStatusUpPVclRangeEntry/catmPVclEndCCRangeStatusUpEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmEndCCStatusUpPVclRangeTable",
                    "catmEndCCStatusUpPVclRangeEntry",
                    "catmPVclEndCCRangeStatusUpEnd"
                  ]
                },
                "description": "Retrieve catmPVclEndCCRangeStatusUpEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmAISRDIStatusUpPVclRangeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusUpPVclRangeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusUpPVclRangeTable"
                  ]
                },
                "description": "Retrieve catmAISRDIStatusUpPVclRangeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmAISRDIStatusUpPVclRangeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusUpPVclRangeTable/catmAISRDIStatusUpPVclRangeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusUpPVclRangeTable",
                    "catmAISRDIStatusUpPVclRangeEntry"
                  ]
                },
                "description": "Retrieve catmAISRDIStatusUpPVclRangeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusUpPVclRangeTable/catmAISRDIStatusUpPVclRangeEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusUpPVclRangeTable",
                    "catmAISRDIStatusUpPVclRangeEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusUpPVclRangeTable/catmAISRDIStatusUpPVclRangeEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusUpPVclRangeTable",
                    "catmAISRDIStatusUpPVclRangeEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmStatusChangePVclRangeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusUpPVclRangeTable/catmAISRDIStatusUpPVclRangeEntry/catmStatusChangePVclRangeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusUpPVclRangeTable",
                    "catmAISRDIStatusUpPVclRangeEntry",
                    "catmStatusChangePVclRangeIndex"
                  ]
                },
                "description": "Retrieve catmStatusChangePVclRangeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclAISRDIUpLowerRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusUpPVclRangeTable/catmAISRDIStatusUpPVclRangeEntry/catmPVclAISRDIUpLowerRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusUpPVclRangeTable",
                    "catmAISRDIStatusUpPVclRangeEntry",
                    "catmPVclAISRDIUpLowerRangeValue"
                  ]
                },
                "description": "Retrieve catmPVclAISRDIUpLowerRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclAISRDIUpHigherRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusUpPVclRangeTable/catmAISRDIStatusUpPVclRangeEntry/catmPVclAISRDIUpHigherRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusUpPVclRangeTable",
                    "catmAISRDIStatusUpPVclRangeEntry",
                    "catmPVclAISRDIUpHigherRangeValue"
                  ]
                },
                "description": "Retrieve catmPVclAISRDIUpHigherRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclAISRDIRangeStatusUpStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusUpPVclRangeTable/catmAISRDIStatusUpPVclRangeEntry/catmPVclAISRDIRangeStatusUpStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusUpPVclRangeTable",
                    "catmAISRDIStatusUpPVclRangeEntry",
                    "catmPVclAISRDIRangeStatusUpStart"
                  ]
                },
                "description": "Retrieve catmPVclAISRDIRangeStatusUpStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclAISRDIRangeStatusUpEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmAISRDIStatusUpPVclRangeTable/catmAISRDIStatusUpPVclRangeEntry/catmPVclAISRDIRangeStatusUpEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmAISRDIStatusUpPVclRangeTable",
                    "catmAISRDIStatusUpPVclRangeEntry",
                    "catmPVclAISRDIRangeStatusUpEnd"
                  ]
                },
                "description": "Retrieve catmPVclAISRDIRangeStatusUpEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmUpPVclRangeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmUpPVclRangeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmUpPVclRangeTable"
                  ]
                },
                "description": "Retrieve catmUpPVclRangeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmUpPVclRangeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmUpPVclRangeTable/catmUpPVclRangeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmUpPVclRangeTable",
                    "catmUpPVclRangeEntry"
                  ]
                },
                "description": "Retrieve catmUpPVclRangeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmUpPVclRangeTable/catmUpPVclRangeEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmUpPVclRangeTable",
                    "catmUpPVclRangeEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmUpPVclRangeTable/catmUpPVclRangeEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmUpPVclRangeTable",
                    "catmUpPVclRangeEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmStatusChangePVclRangeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmUpPVclRangeTable/catmUpPVclRangeEntry/catmStatusChangePVclRangeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmUpPVclRangeTable",
                    "catmUpPVclRangeEntry",
                    "catmStatusChangePVclRangeIndex"
                  ]
                },
                "description": "Retrieve catmStatusChangePVclRangeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmUpPVclLowerRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmUpPVclRangeTable/catmUpPVclRangeEntry/catmUpPVclLowerRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmUpPVclRangeTable",
                    "catmUpPVclRangeEntry",
                    "catmUpPVclLowerRangeValue"
                  ]
                },
                "description": "Retrieve catmUpPVclLowerRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmUpPVclHigherRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmUpPVclRangeTable/catmUpPVclRangeEntry/catmUpPVclHigherRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmUpPVclRangeTable",
                    "catmUpPVclRangeEntry",
                    "catmUpPVclHigherRangeValue"
                  ]
                },
                "description": "Retrieve catmUpPVclHigherRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmUpPVclRangeStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmUpPVclRangeTable/catmUpPVclRangeEntry/catmUpPVclRangeStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmUpPVclRangeTable",
                    "catmUpPVclRangeEntry",
                    "catmUpPVclRangeStart"
                  ]
                },
                "description": "Retrieve catmUpPVclRangeStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmUpPVclRangeEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmUpPVclRangeTable/catmUpPVclRangeEntry/catmUpPVclRangeEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmUpPVclRangeTable",
                    "catmUpPVclRangeEntry",
                    "catmUpPVclRangeEnd"
                  ]
                },
                "description": "Retrieve catmUpPVclRangeEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPrevDownPVclRangeStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmUpPVclRangeTable/catmUpPVclRangeEntry/catmPrevDownPVclRangeStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmUpPVclRangeTable",
                    "catmUpPVclRangeEntry",
                    "catmPrevDownPVclRangeStart"
                  ]
                },
                "description": "Retrieve catmPrevDownPVclRangeStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPrevDownPVclRangeEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmUpPVclRangeTable/catmUpPVclRangeEntry/catmPrevDownPVclRangeEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmUpPVclRangeTable",
                    "catmUpPVclRangeEntry",
                    "catmPrevDownPVclRangeEnd"
                  ]
                },
                "description": "Retrieve catmPrevDownPVclRangeEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmPVclRangeRecoveryReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmUpPVclRangeTable/catmUpPVclRangeEntry/catmPVclRangeRecoveryReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmUpPVclRangeTable",
                    "catmUpPVclRangeEntry",
                    "catmPVclRangeRecoveryReason"
                  ]
                },
                "description": "Retrieve catmPVclRangeRecoveryReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfCurrentlyDownToUpPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfCurrentlyDownToUpPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfCurrentlyDownToUpPVcls"
                  ]
                },
                "description": "Retrieve catmIntfCurrentlyDownToUpPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfOAMFailedPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfOAMFailedPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfOAMFailedPVcls"
                  ]
                },
                "description": "Retrieve catmIntfOAMFailedPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfCurrentOAMFailingPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfCurrentOAMFailingPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfCurrentOAMFailingPVcls"
                  ]
                },
                "description": "Retrieve catmIntfCurrentOAMFailingPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfSegCCOAMFailedPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfSegCCOAMFailedPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfSegCCOAMFailedPVcls"
                  ]
                },
                "description": "Retrieve catmIntfSegCCOAMFailedPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfCurSegCCOAMFailingPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfCurSegCCOAMFailingPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfCurSegCCOAMFailingPVcls"
                  ]
                },
                "description": "Retrieve catmIntfCurSegCCOAMFailingPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfEndCCOAMFailedPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfEndCCOAMFailedPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfEndCCOAMFailedPVcls"
                  ]
                },
                "description": "Retrieve catmIntfEndCCOAMFailedPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfCurEndCCOAMFailingPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfCurEndCCOAMFailingPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfCurEndCCOAMFailingPVcls"
                  ]
                },
                "description": "Retrieve catmIntfCurEndCCOAMFailingPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfAISRDIOAMFailedPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfAISRDIOAMFailedPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfAISRDIOAMFailedPVcls"
                  ]
                },
                "description": "Retrieve catmIntfAISRDIOAMFailedPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfCurAISRDIOAMFailingPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfCurAISRDIOAMFailingPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfCurAISRDIOAMFailingPVcls"
                  ]
                },
                "description": "Retrieve catmIntfCurAISRDIOAMFailingPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfAnyOAMFailedPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfAnyOAMFailedPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfAnyOAMFailedPVcls"
                  ]
                },
                "description": "Retrieve catmIntfAnyOAMFailedPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfCurAnyOAMFailingPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfCurAnyOAMFailingPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfCurAnyOAMFailingPVcls"
                  ]
                },
                "description": "Retrieve catmIntfCurAnyOAMFailingPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfTypeOfOAMFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfTypeOfOAMFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfTypeOfOAMFailure"
                  ]
                },
                "description": "Retrieve catmIntfTypeOfOAMFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfOAMRcovedPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfOAMRcovedPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfOAMRcovedPVcls"
                  ]
                },
                "description": "Retrieve catmIntfOAMRcovedPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfCurrentOAMRcovingPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfCurrentOAMRcovingPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfCurrentOAMRcovingPVcls"
                  ]
                },
                "description": "Retrieve catmIntfCurrentOAMRcovingPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfSegCCOAMRcovedPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfSegCCOAMRcovedPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfSegCCOAMRcovedPVcls"
                  ]
                },
                "description": "Retrieve catmIntfSegCCOAMRcovedPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfCurSegCCOAMRcovingPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfCurSegCCOAMRcovingPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfCurSegCCOAMRcovingPVcls"
                  ]
                },
                "description": "Retrieve catmIntfCurSegCCOAMRcovingPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfEndCCOAMRcovedPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfEndCCOAMRcovedPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfEndCCOAMRcovedPVcls"
                  ]
                },
                "description": "Retrieve catmIntfEndCCOAMRcovedPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfCurEndCCOAMRcovingPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfCurEndCCOAMRcovingPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfCurEndCCOAMRcovingPVcls"
                  ]
                },
                "description": "Retrieve catmIntfCurEndCCOAMRcovingPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfAISRDIOAMRcovedPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfAISRDIOAMRcovedPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfAISRDIOAMRcovedPVcls"
                  ]
                },
                "description": "Retrieve catmIntfAISRDIOAMRcovedPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfCurAISRDIOAMRcovingPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfCurAISRDIOAMRcovingPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfCurAISRDIOAMRcovingPVcls"
                  ]
                },
                "description": "Retrieve catmIntfCurAISRDIOAMRcovingPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfAnyOAMRcovedPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfAnyOAMRcovedPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfAnyOAMRcovedPVcls"
                  ]
                },
                "description": "Retrieve catmIntfAnyOAMRcovedPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfCurAnyOAMRcovingPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfCurAnyOAMRcovingPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfCurAnyOAMRcovingPVcls"
                  ]
                },
                "description": "Retrieve catmIntfCurAnyOAMRcovingPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get catmIntfTypeOfOAMRecover",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB/catmIntfTypeOfOAMRecover",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-PVCTRAP-EXTN-MIB:CISCO-ATM-PVCTRAP-EXTN-MIB",
                    "catmIntfTypeOfOAMRecover"
                  ]
                },
                "description": "Retrieve catmIntfTypeOfOAMRecover from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-ATM-QOS-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-ATM-QOS-MIB\n\nMIB data from `CISCO-ATM-QOS-MIB` module.\n\n**Root containers:** 1 (CISCO-ATM-QOS-MIB)\n**Paths:** 65 | **Descendants:** 64\n\nAll endpoints are read-only (GET).\n\nEndpoints: 65 | Operations: 65",
          "item": [
            {
              "name": "GET Get CISCO-ATM-QOS-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB"
                  ]
                },
                "description": "Retrieve CISCO-ATM-QOS-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable"
                  ]
                },
                "description": "Retrieve caqVccParamsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry"
                  ]
                },
                "description": "Retrieve caqVccParamsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/atmVclVci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "atmVclVci"
                  ]
                },
                "description": "Retrieve atmVclVci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsType"
                  ]
                },
                "description": "Retrieve caqVccParamsType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsPcrIn0",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsPcrIn0",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsPcrIn0"
                  ]
                },
                "description": "Retrieve caqVccParamsPcrIn0 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsPcrIn01",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsPcrIn01",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsPcrIn01"
                  ]
                },
                "description": "Retrieve caqVccParamsPcrIn01 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsPcrOut0",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsPcrOut0",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsPcrOut0"
                  ]
                },
                "description": "Retrieve caqVccParamsPcrOut0 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsPcrOut01",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsPcrOut01",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsPcrOut01"
                  ]
                },
                "description": "Retrieve caqVccParamsPcrOut01 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsScrIn0",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsScrIn0",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsScrIn0"
                  ]
                },
                "description": "Retrieve caqVccParamsScrIn0 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsScrIn01",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsScrIn01",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsScrIn01"
                  ]
                },
                "description": "Retrieve caqVccParamsScrIn01 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsScrOut0",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsScrOut0",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsScrOut0"
                  ]
                },
                "description": "Retrieve caqVccParamsScrOut0 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsScrOut01",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsScrOut01",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsScrOut01"
                  ]
                },
                "description": "Retrieve caqVccParamsScrOut01 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsBcsIn0",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsBcsIn0",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsBcsIn0"
                  ]
                },
                "description": "Retrieve caqVccParamsBcsIn0 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsBcsIn01",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsBcsIn01",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsBcsIn01"
                  ]
                },
                "description": "Retrieve caqVccParamsBcsIn01 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsBcsOut0",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsBcsOut0",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsBcsOut0"
                  ]
                },
                "description": "Retrieve caqVccParamsBcsOut0 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsBcsOut01",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsBcsOut01",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsBcsOut01"
                  ]
                },
                "description": "Retrieve caqVccParamsBcsOut01 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsInheritLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsInheritLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsInheritLevel"
                  ]
                },
                "description": "Retrieve caqVccParamsInheritLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsMcrIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsMcrIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsMcrIn"
                  ]
                },
                "description": "Retrieve caqVccParamsMcrIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsMcrOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsMcrOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsMcrOut"
                  ]
                },
                "description": "Retrieve caqVccParamsMcrOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsInvRdf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsInvRdf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsInvRdf"
                  ]
                },
                "description": "Retrieve caqVccParamsInvRdf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsInvRif",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsInvRif",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsInvRif"
                  ]
                },
                "description": "Retrieve caqVccParamsInvRif from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsRfl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsRfl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsRfl"
                  ]
                },
                "description": "Retrieve caqVccParamsRfl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsCdv",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsCdv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsCdv"
                  ]
                },
                "description": "Retrieve caqVccParamsCdv from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsCdvt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsCdvt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsCdvt"
                  ]
                },
                "description": "Retrieve caqVccParamsCdvt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsIcr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsIcr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsIcr"
                  ]
                },
                "description": "Retrieve caqVccParamsIcr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsTbe",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsTbe",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsTbe"
                  ]
                },
                "description": "Retrieve caqVccParamsTbe from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsFrtt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsFrtt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsFrtt"
                  ]
                },
                "description": "Retrieve caqVccParamsFrtt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsNrm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsNrm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsNrm"
                  ]
                },
                "description": "Retrieve caqVccParamsNrm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsInvTrm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsInvTrm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsInvTrm"
                  ]
                },
                "description": "Retrieve caqVccParamsInvTrm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsInvCdf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsInvCdf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsInvCdf"
                  ]
                },
                "description": "Retrieve caqVccParamsInvCdf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVccParamsAdtf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVccParamsTable/caqVccParamsEntry/caqVccParamsAdtf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVccParamsTable",
                    "caqVccParamsEntry",
                    "caqVccParamsAdtf"
                  ]
                },
                "description": "Retrieve caqVccParamsAdtf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVpcParamsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVpcParamsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVpcParamsTable"
                  ]
                },
                "description": "Retrieve caqVpcParamsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVpcParamsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVpcParamsTable/caqVpcParamsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVpcParamsTable",
                    "caqVpcParamsEntry"
                  ]
                },
                "description": "Retrieve caqVpcParamsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVpcParamsTable/caqVpcParamsEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVpcParamsTable",
                    "caqVpcParamsEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVplVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVpcParamsTable/caqVpcParamsEntry/atmVplVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVpcParamsTable",
                    "caqVpcParamsEntry",
                    "atmVplVpi"
                  ]
                },
                "description": "Retrieve atmVplVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVpcParamsVpState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVpcParamsTable/caqVpcParamsEntry/caqVpcParamsVpState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVpcParamsTable",
                    "caqVpcParamsEntry",
                    "caqVpcParamsVpState"
                  ]
                },
                "description": "Retrieve caqVpcParamsVpState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVpcParamsPeakRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVpcParamsTable/caqVpcParamsEntry/caqVpcParamsPeakRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVpcParamsTable",
                    "caqVpcParamsEntry",
                    "caqVpcParamsPeakRate"
                  ]
                },
                "description": "Retrieve caqVpcParamsPeakRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVpcParamsCesRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVpcParamsTable/caqVpcParamsEntry/caqVpcParamsCesRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVpcParamsTable",
                    "caqVpcParamsEntry",
                    "caqVpcParamsCesRate"
                  ]
                },
                "description": "Retrieve caqVpcParamsCesRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVpcParamsDataVcCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVpcParamsTable/caqVpcParamsEntry/caqVpcParamsDataVcCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVpcParamsTable",
                    "caqVpcParamsEntry",
                    "caqVpcParamsDataVcCount"
                  ]
                },
                "description": "Retrieve caqVpcParamsDataVcCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVpcParamsCesVcCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVpcParamsTable/caqVpcParamsEntry/caqVpcParamsCesVcCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVpcParamsTable",
                    "caqVpcParamsEntry",
                    "caqVpcParamsCesVcCount"
                  ]
                },
                "description": "Retrieve caqVpcParamsCesVcCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVpcParamsVcdF4Seg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVpcParamsTable/caqVpcParamsEntry/caqVpcParamsVcdF4Seg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVpcParamsTable",
                    "caqVpcParamsEntry",
                    "caqVpcParamsVcdF4Seg"
                  ]
                },
                "description": "Retrieve caqVpcParamsVcdF4Seg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVpcParamsVcdF4Ete",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVpcParamsTable/caqVpcParamsEntry/caqVpcParamsVcdF4Ete",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVpcParamsTable",
                    "caqVpcParamsEntry",
                    "caqVpcParamsVcdF4Ete"
                  ]
                },
                "description": "Retrieve caqVpcParamsVcdF4Ete from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVpcParamsScr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVpcParamsTable/caqVpcParamsEntry/caqVpcParamsScr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVpcParamsTable",
                    "caqVpcParamsEntry",
                    "caqVpcParamsScr"
                  ]
                },
                "description": "Retrieve caqVpcParamsScr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVpcParamsMbs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVpcParamsTable/caqVpcParamsEntry/caqVpcParamsMbs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVpcParamsTable",
                    "caqVpcParamsEntry",
                    "caqVpcParamsMbs"
                  ]
                },
                "description": "Retrieve caqVpcParamsMbs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqVpcParamsAvailBw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqVpcParamsTable/caqVpcParamsEntry/caqVpcParamsAvailBw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqVpcParamsTable",
                    "caqVpcParamsEntry",
                    "caqVpcParamsAvailBw"
                  ]
                },
                "description": "Retrieve caqVpcParamsAvailBw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqQueuingParamsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsTable"
                  ]
                },
                "description": "Retrieve caqQueuingParamsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqQueuingParamsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsTable/caqQueuingParamsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsTable",
                    "caqQueuingParamsEntry"
                  ]
                },
                "description": "Retrieve caqQueuingParamsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsTable/caqQueuingParamsEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsTable",
                    "caqQueuingParamsEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsTable/caqQueuingParamsEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsTable",
                    "caqQueuingParamsEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsTable/caqQueuingParamsEntry/atmVclVci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsTable",
                    "caqQueuingParamsEntry",
                    "atmVclVci"
                  ]
                },
                "description": "Retrieve atmVclVci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqQueuingParamsMeanQDepth",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsTable/caqQueuingParamsEntry/caqQueuingParamsMeanQDepth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsTable",
                    "caqQueuingParamsEntry",
                    "caqQueuingParamsMeanQDepth"
                  ]
                },
                "description": "Retrieve caqQueuingParamsMeanQDepth from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqQueuingParamsClassTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsClassTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsClassTable"
                  ]
                },
                "description": "Retrieve caqQueuingParamsClassTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqQueuingParamsClassEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsClassTable/caqQueuingParamsClassEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsClassTable",
                    "caqQueuingParamsClassEntry"
                  ]
                },
                "description": "Retrieve caqQueuingParamsClassEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsClassTable/caqQueuingParamsClassEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsClassTable",
                    "caqQueuingParamsClassEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsClassTable/caqQueuingParamsClassEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsClassTable",
                    "caqQueuingParamsClassEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsClassTable/caqQueuingParamsClassEntry/atmVclVci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsClassTable",
                    "caqQueuingParamsClassEntry",
                    "atmVclVci"
                  ]
                },
                "description": "Retrieve atmVclVci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqQueuingParamsClassIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsClassTable/caqQueuingParamsClassEntry/caqQueuingParamsClassIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsClassTable",
                    "caqQueuingParamsClassEntry",
                    "caqQueuingParamsClassIndex"
                  ]
                },
                "description": "Retrieve caqQueuingParamsClassIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqQueuingParamsClassRandDrp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsClassTable/caqQueuingParamsClassEntry/caqQueuingParamsClassRandDrp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsClassTable",
                    "caqQueuingParamsClassEntry",
                    "caqQueuingParamsClassRandDrp"
                  ]
                },
                "description": "Retrieve caqQueuingParamsClassRandDrp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqQueuingParamsClassTailDrp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsClassTable/caqQueuingParamsClassEntry/caqQueuingParamsClassTailDrp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsClassTable",
                    "caqQueuingParamsClassEntry",
                    "caqQueuingParamsClassTailDrp"
                  ]
                },
                "description": "Retrieve caqQueuingParamsClassTailDrp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqQueuingParamsClassMinThre",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsClassTable/caqQueuingParamsClassEntry/caqQueuingParamsClassMinThre",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsClassTable",
                    "caqQueuingParamsClassEntry",
                    "caqQueuingParamsClassMinThre"
                  ]
                },
                "description": "Retrieve caqQueuingParamsClassMinThre from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqQueuingParamsClassMaxThre",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsClassTable/caqQueuingParamsClassEntry/caqQueuingParamsClassMaxThre",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsClassTable",
                    "caqQueuingParamsClassEntry",
                    "caqQueuingParamsClassMaxThre"
                  ]
                },
                "description": "Retrieve caqQueuingParamsClassMaxThre from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caqQueuingParamsClassMrkProb",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB/caqQueuingParamsClassTable/caqQueuingParamsClassEntry/caqQueuingParamsClassMrkProb",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ATM-QOS-MIB:CISCO-ATM-QOS-MIB",
                    "caqQueuingParamsClassTable",
                    "caqQueuingParamsClassEntry",
                    "caqQueuingParamsClassMrkProb"
                  ]
                },
                "description": "Retrieve caqQueuingParamsClassMrkProb from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-BGP-POLICY-ACCOUNTING-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-BGP-POLICY-ACCOUNTING-MIB\n\nMIB data from `CISCO-BGP-POLICY-ACCOUNTING-MIB` module.\n\n**Root containers:** 1 (CISCO-BGP-POLICY-ACCOUNTING-MIB)\n**Paths:** 9 | **Descendants:** 8\n\nAll endpoints are read-only (GET).\n\nEndpoints: 9 | Operations: 9",
          "item": [
            {
              "name": "GET Get CISCO-BGP-POLICY-ACCOUNTING-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB"
                  ]
                },
                "description": "Retrieve CISCO-BGP-POLICY-ACCOUNTING-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbpAcctTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB/cbpAcctTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB",
                    "cbpAcctTable"
                  ]
                },
                "description": "Retrieve cbpAcctTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbpAcctEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB/cbpAcctTable/cbpAcctEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB",
                    "cbpAcctTable",
                    "cbpAcctEntry"
                  ]
                },
                "description": "Retrieve cbpAcctEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB/cbpAcctTable/cbpAcctEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB",
                    "cbpAcctTable",
                    "cbpAcctEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbpAcctTrafficIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB/cbpAcctTable/cbpAcctEntry/cbpAcctTrafficIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB",
                    "cbpAcctTable",
                    "cbpAcctEntry",
                    "cbpAcctTrafficIndex"
                  ]
                },
                "description": "Retrieve cbpAcctTrafficIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbpAcctInPacketCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB/cbpAcctTable/cbpAcctEntry/cbpAcctInPacketCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB",
                    "cbpAcctTable",
                    "cbpAcctEntry",
                    "cbpAcctInPacketCount"
                  ]
                },
                "description": "Retrieve cbpAcctInPacketCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbpAcctInOctetCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB/cbpAcctTable/cbpAcctEntry/cbpAcctInOctetCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB",
                    "cbpAcctTable",
                    "cbpAcctEntry",
                    "cbpAcctInOctetCount"
                  ]
                },
                "description": "Retrieve cbpAcctInOctetCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbpAcctOutPacketCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB/cbpAcctTable/cbpAcctEntry/cbpAcctOutPacketCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB",
                    "cbpAcctTable",
                    "cbpAcctEntry",
                    "cbpAcctOutPacketCount"
                  ]
                },
                "description": "Retrieve cbpAcctOutPacketCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbpAcctOutOctetCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB/cbpAcctTable/cbpAcctEntry/cbpAcctOutOctetCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP-POLICY-ACCOUNTING-MIB:CISCO-BGP-POLICY-ACCOUNTING-MIB",
                    "cbpAcctTable",
                    "cbpAcctEntry",
                    "cbpAcctOutOctetCount"
                  ]
                },
                "description": "Retrieve cbpAcctOutOctetCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-BGP4-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-BGP4-MIB\n\nMIB data from `CISCO-BGP4-MIB` module.\n\n**Root containers:** 1 (CISCO-BGP4-MIB)\n**Paths:** 111 | **Descendants:** 226\n\nAll endpoints are read-only (GET).\n\nEndpoints: 111 | Operations: 111",
          "item": [
            {
              "name": "GET Get CISCO-BGP4-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB"
                  ]
                },
                "description": "Retrieve CISCO-BGP4-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpGlobal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpGlobal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpGlobal"
                  ]
                },
                "description": "Retrieve cbgpGlobal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpNotifsEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpGlobal/cbgpNotifsEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpGlobal",
                    "cbgpNotifsEnable"
                  ]
                },
                "description": "Retrieve cbgpNotifsEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpLocalAs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpGlobal/cbgpLocalAs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpGlobal",
                    "cbgpLocalAs"
                  ]
                },
                "description": "Retrieve cbgpLocalAs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable"
                  ]
                },
                "description": "Retrieve cbgpRouteTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry"
                  ]
                },
                "description": "Retrieve cbgpRouteEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteAfi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteAfi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteAfi"
                  ]
                },
                "description": "Retrieve cbgpRouteAfi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteSafi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteSafi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteSafi"
                  ]
                },
                "description": "Retrieve cbgpRouteSafi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRoutePeerType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRoutePeerType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRoutePeerType"
                  ]
                },
                "description": "Retrieve cbgpRoutePeerType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRoutePeer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRoutePeer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRoutePeer"
                  ]
                },
                "description": "Retrieve cbgpRoutePeer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteAddrPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteAddrPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteAddrPrefix"
                  ]
                },
                "description": "Retrieve cbgpRouteAddrPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteAddrPrefixLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteAddrPrefixLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteAddrPrefixLen"
                  ]
                },
                "description": "Retrieve cbgpRouteAddrPrefixLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteOrigin"
                  ]
                },
                "description": "Retrieve cbgpRouteOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteASPathSegment",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteASPathSegment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteASPathSegment"
                  ]
                },
                "description": "Retrieve cbgpRouteASPathSegment from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteNextHop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteNextHop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteNextHop"
                  ]
                },
                "description": "Retrieve cbgpRouteNextHop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteMedPresent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteMedPresent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteMedPresent"
                  ]
                },
                "description": "Retrieve cbgpRouteMedPresent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteMultiExitDisc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteMultiExitDisc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteMultiExitDisc"
                  ]
                },
                "description": "Retrieve cbgpRouteMultiExitDisc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteLocalPrefPresent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteLocalPrefPresent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteLocalPrefPresent"
                  ]
                },
                "description": "Retrieve cbgpRouteLocalPrefPresent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteLocalPref",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteLocalPref",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteLocalPref"
                  ]
                },
                "description": "Retrieve cbgpRouteLocalPref from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteAtomicAggregate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteAtomicAggregate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteAtomicAggregate"
                  ]
                },
                "description": "Retrieve cbgpRouteAtomicAggregate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteAggregatorAS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteAggregatorAS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteAggregatorAS"
                  ]
                },
                "description": "Retrieve cbgpRouteAggregatorAS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteAggregatorAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteAggregatorAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteAggregatorAddrType"
                  ]
                },
                "description": "Retrieve cbgpRouteAggregatorAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteAggregatorAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteAggregatorAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteAggregatorAddr"
                  ]
                },
                "description": "Retrieve cbgpRouteAggregatorAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteBest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteBest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteBest"
                  ]
                },
                "description": "Retrieve cbgpRouteBest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpRouteUnknownAttr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpRouteTable/cbgpRouteEntry/cbgpRouteUnknownAttr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpRouteTable",
                    "cbgpRouteEntry",
                    "cbgpRouteUnknownAttr"
                  ]
                },
                "description": "Retrieve cbgpRouteUnknownAttr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerCapsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerCapsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerCapsTable"
                  ]
                },
                "description": "Retrieve cbgpPeerCapsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerCapsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerCapsTable/cbgpPeerCapsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerCapsTable",
                    "cbgpPeerCapsEntry"
                  ]
                },
                "description": "Retrieve cbgpPeerCapsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerRemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerCapsTable/cbgpPeerCapsEntry/bgpPeerRemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerCapsTable",
                    "cbgpPeerCapsEntry",
                    "bgpPeerRemoteAddr"
                  ]
                },
                "description": "Retrieve bgpPeerRemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerCapCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerCapsTable/cbgpPeerCapsEntry/cbgpPeerCapCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerCapsTable",
                    "cbgpPeerCapsEntry",
                    "cbgpPeerCapCode"
                  ]
                },
                "description": "Retrieve cbgpPeerCapCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerCapIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerCapsTable/cbgpPeerCapsEntry/cbgpPeerCapIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerCapsTable",
                    "cbgpPeerCapsEntry",
                    "cbgpPeerCapIndex"
                  ]
                },
                "description": "Retrieve cbgpPeerCapIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerCapValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerCapsTable/cbgpPeerCapsEntry/cbgpPeerCapValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerCapsTable",
                    "cbgpPeerCapsEntry",
                    "cbgpPeerCapValue"
                  ]
                },
                "description": "Retrieve cbgpPeerCapValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerAddrFamilyTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyTable"
                  ]
                },
                "description": "Retrieve cbgpPeerAddrFamilyTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerAddrFamilyEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyTable/cbgpPeerAddrFamilyEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyTable",
                    "cbgpPeerAddrFamilyEntry"
                  ]
                },
                "description": "Retrieve cbgpPeerAddrFamilyEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerRemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyTable/cbgpPeerAddrFamilyEntry/bgpPeerRemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyTable",
                    "cbgpPeerAddrFamilyEntry",
                    "bgpPeerRemoteAddr"
                  ]
                },
                "description": "Retrieve bgpPeerRemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerAddrFamilyAfi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyTable/cbgpPeerAddrFamilyEntry/cbgpPeerAddrFamilyAfi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyTable",
                    "cbgpPeerAddrFamilyEntry",
                    "cbgpPeerAddrFamilyAfi"
                  ]
                },
                "description": "Retrieve cbgpPeerAddrFamilyAfi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerAddrFamilySafi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyTable/cbgpPeerAddrFamilyEntry/cbgpPeerAddrFamilySafi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyTable",
                    "cbgpPeerAddrFamilyEntry",
                    "cbgpPeerAddrFamilySafi"
                  ]
                },
                "description": "Retrieve cbgpPeerAddrFamilySafi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerAddrFamilyName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyTable/cbgpPeerAddrFamilyEntry/cbgpPeerAddrFamilyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyTable",
                    "cbgpPeerAddrFamilyEntry",
                    "cbgpPeerAddrFamilyName"
                  ]
                },
                "description": "Retrieve cbgpPeerAddrFamilyName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerAddrFamilyPrefixTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyPrefixTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyPrefixTable"
                  ]
                },
                "description": "Retrieve cbgpPeerAddrFamilyPrefixTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerAddrFamilyPrefixEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyPrefixTable/cbgpPeerAddrFamilyPrefixEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyPrefixTable",
                    "cbgpPeerAddrFamilyPrefixEntry"
                  ]
                },
                "description": "Retrieve cbgpPeerAddrFamilyPrefixEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgpPeerRemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyPrefixTable/cbgpPeerAddrFamilyPrefixEntry/bgpPeerRemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyPrefixTable",
                    "cbgpPeerAddrFamilyPrefixEntry",
                    "bgpPeerRemoteAddr"
                  ]
                },
                "description": "Retrieve bgpPeerRemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerAddrFamilyAfi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyPrefixTable/cbgpPeerAddrFamilyPrefixEntry/cbgpPeerAddrFamilyAfi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyPrefixTable",
                    "cbgpPeerAddrFamilyPrefixEntry",
                    "cbgpPeerAddrFamilyAfi"
                  ]
                },
                "description": "Retrieve cbgpPeerAddrFamilyAfi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerAddrFamilySafi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyPrefixTable/cbgpPeerAddrFamilyPrefixEntry/cbgpPeerAddrFamilySafi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyPrefixTable",
                    "cbgpPeerAddrFamilyPrefixEntry",
                    "cbgpPeerAddrFamilySafi"
                  ]
                },
                "description": "Retrieve cbgpPeerAddrFamilySafi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerAcceptedPrefixes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyPrefixTable/cbgpPeerAddrFamilyPrefixEntry/cbgpPeerAcceptedPrefixes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyPrefixTable",
                    "cbgpPeerAddrFamilyPrefixEntry",
                    "cbgpPeerAcceptedPrefixes"
                  ]
                },
                "description": "Retrieve cbgpPeerAcceptedPrefixes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerDeniedPrefixes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyPrefixTable/cbgpPeerAddrFamilyPrefixEntry/cbgpPeerDeniedPrefixes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyPrefixTable",
                    "cbgpPeerAddrFamilyPrefixEntry",
                    "cbgpPeerDeniedPrefixes"
                  ]
                },
                "description": "Retrieve cbgpPeerDeniedPrefixes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerPrefixAdminLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyPrefixTable/cbgpPeerAddrFamilyPrefixEntry/cbgpPeerPrefixAdminLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyPrefixTable",
                    "cbgpPeerAddrFamilyPrefixEntry",
                    "cbgpPeerPrefixAdminLimit"
                  ]
                },
                "description": "Retrieve cbgpPeerPrefixAdminLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerPrefixThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyPrefixTable/cbgpPeerAddrFamilyPrefixEntry/cbgpPeerPrefixThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyPrefixTable",
                    "cbgpPeerAddrFamilyPrefixEntry",
                    "cbgpPeerPrefixThreshold"
                  ]
                },
                "description": "Retrieve cbgpPeerPrefixThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerPrefixClearThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyPrefixTable/cbgpPeerAddrFamilyPrefixEntry/cbgpPeerPrefixClearThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyPrefixTable",
                    "cbgpPeerAddrFamilyPrefixEntry",
                    "cbgpPeerPrefixClearThreshold"
                  ]
                },
                "description": "Retrieve cbgpPeerPrefixClearThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerAdvertisedPrefixes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyPrefixTable/cbgpPeerAddrFamilyPrefixEntry/cbgpPeerAdvertisedPrefixes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyPrefixTable",
                    "cbgpPeerAddrFamilyPrefixEntry",
                    "cbgpPeerAdvertisedPrefixes"
                  ]
                },
                "description": "Retrieve cbgpPeerAdvertisedPrefixes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerSuppressedPrefixes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyPrefixTable/cbgpPeerAddrFamilyPrefixEntry/cbgpPeerSuppressedPrefixes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyPrefixTable",
                    "cbgpPeerAddrFamilyPrefixEntry",
                    "cbgpPeerSuppressedPrefixes"
                  ]
                },
                "description": "Retrieve cbgpPeerSuppressedPrefixes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerWithdrawnPrefixes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerAddrFamilyPrefixTable/cbgpPeerAddrFamilyPrefixEntry/cbgpPeerWithdrawnPrefixes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerAddrFamilyPrefixTable",
                    "cbgpPeerAddrFamilyPrefixEntry",
                    "cbgpPeerWithdrawnPrefixes"
                  ]
                },
                "description": "Retrieve cbgpPeerWithdrawnPrefixes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2Table",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table"
                  ]
                },
                "description": "Retrieve cbgpPeer2Table from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2Entry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry"
                  ]
                },
                "description": "Retrieve cbgpPeer2Entry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2Type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2Type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2Type"
                  ]
                },
                "description": "Retrieve cbgpPeer2Type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2RemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2RemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2RemoteAddr"
                  ]
                },
                "description": "Retrieve cbgpPeer2RemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2State",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2State",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2State"
                  ]
                },
                "description": "Retrieve cbgpPeer2State from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2AdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2AdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2AdminStatus"
                  ]
                },
                "description": "Retrieve cbgpPeer2AdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2NegotiatedVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2NegotiatedVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2NegotiatedVersion"
                  ]
                },
                "description": "Retrieve cbgpPeer2NegotiatedVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2LocalAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2LocalAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2LocalAddr"
                  ]
                },
                "description": "Retrieve cbgpPeer2LocalAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2LocalPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2LocalPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2LocalPort"
                  ]
                },
                "description": "Retrieve cbgpPeer2LocalPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2LocalAs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2LocalAs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2LocalAs"
                  ]
                },
                "description": "Retrieve cbgpPeer2LocalAs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2LocalIdentifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2LocalIdentifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2LocalIdentifier"
                  ]
                },
                "description": "Retrieve cbgpPeer2LocalIdentifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2RemotePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2RemotePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2RemotePort"
                  ]
                },
                "description": "Retrieve cbgpPeer2RemotePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2RemoteAs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2RemoteAs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2RemoteAs"
                  ]
                },
                "description": "Retrieve cbgpPeer2RemoteAs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2RemoteIdentifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2RemoteIdentifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2RemoteIdentifier"
                  ]
                },
                "description": "Retrieve cbgpPeer2RemoteIdentifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2InUpdates",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2InUpdates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2InUpdates"
                  ]
                },
                "description": "Retrieve cbgpPeer2InUpdates from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2OutUpdates",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2OutUpdates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2OutUpdates"
                  ]
                },
                "description": "Retrieve cbgpPeer2OutUpdates from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2InTotalMessages",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2InTotalMessages",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2InTotalMessages"
                  ]
                },
                "description": "Retrieve cbgpPeer2InTotalMessages from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2OutTotalMessages",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2OutTotalMessages",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2OutTotalMessages"
                  ]
                },
                "description": "Retrieve cbgpPeer2OutTotalMessages from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2LastError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2LastError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2LastError"
                  ]
                },
                "description": "Retrieve cbgpPeer2LastError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2FsmEstablishedTransitions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2FsmEstablishedTransitions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2FsmEstablishedTransitions"
                  ]
                },
                "description": "Retrieve cbgpPeer2FsmEstablishedTransitions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2FsmEstablishedTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2FsmEstablishedTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2FsmEstablishedTime"
                  ]
                },
                "description": "Retrieve cbgpPeer2FsmEstablishedTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2ConnectRetryInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2ConnectRetryInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2ConnectRetryInterval"
                  ]
                },
                "description": "Retrieve cbgpPeer2ConnectRetryInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2HoldTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2HoldTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2HoldTime"
                  ]
                },
                "description": "Retrieve cbgpPeer2HoldTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2KeepAlive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2KeepAlive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2KeepAlive"
                  ]
                },
                "description": "Retrieve cbgpPeer2KeepAlive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2HoldTimeConfigured",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2HoldTimeConfigured",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2HoldTimeConfigured"
                  ]
                },
                "description": "Retrieve cbgpPeer2HoldTimeConfigured from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2KeepAliveConfigured",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2KeepAliveConfigured",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2KeepAliveConfigured"
                  ]
                },
                "description": "Retrieve cbgpPeer2KeepAliveConfigured from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2MinASOriginationInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2MinASOriginationInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2MinASOriginationInterval"
                  ]
                },
                "description": "Retrieve cbgpPeer2MinASOriginationInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2MinRouteAdvertisementInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2MinRouteAdvertisementInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2MinRouteAdvertisementInterval"
                  ]
                },
                "description": "Retrieve cbgpPeer2MinRouteAdvertisementInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2InUpdateElapsedTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2InUpdateElapsedTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2InUpdateElapsedTime"
                  ]
                },
                "description": "Retrieve cbgpPeer2InUpdateElapsedTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2LastErrorTxt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2LastErrorTxt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2LastErrorTxt"
                  ]
                },
                "description": "Retrieve cbgpPeer2LastErrorTxt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2PrevState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2Table/cbgpPeer2Entry/cbgpPeer2PrevState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2Table",
                    "cbgpPeer2Entry",
                    "cbgpPeer2PrevState"
                  ]
                },
                "description": "Retrieve cbgpPeer2PrevState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2CapsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2CapsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2CapsTable"
                  ]
                },
                "description": "Retrieve cbgpPeer2CapsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2CapsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2CapsTable/cbgpPeer2CapsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2CapsTable",
                    "cbgpPeer2CapsEntry"
                  ]
                },
                "description": "Retrieve cbgpPeer2CapsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2Type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2CapsTable/cbgpPeer2CapsEntry/cbgpPeer2Type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2CapsTable",
                    "cbgpPeer2CapsEntry",
                    "cbgpPeer2Type"
                  ]
                },
                "description": "Retrieve cbgpPeer2Type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2RemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2CapsTable/cbgpPeer2CapsEntry/cbgpPeer2RemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2CapsTable",
                    "cbgpPeer2CapsEntry",
                    "cbgpPeer2RemoteAddr"
                  ]
                },
                "description": "Retrieve cbgpPeer2RemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2CapCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2CapsTable/cbgpPeer2CapsEntry/cbgpPeer2CapCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2CapsTable",
                    "cbgpPeer2CapsEntry",
                    "cbgpPeer2CapCode"
                  ]
                },
                "description": "Retrieve cbgpPeer2CapCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2CapIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2CapsTable/cbgpPeer2CapsEntry/cbgpPeer2CapIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2CapsTable",
                    "cbgpPeer2CapsEntry",
                    "cbgpPeer2CapIndex"
                  ]
                },
                "description": "Retrieve cbgpPeer2CapIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2CapValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2CapsTable/cbgpPeer2CapsEntry/cbgpPeer2CapValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2CapsTable",
                    "cbgpPeer2CapsEntry",
                    "cbgpPeer2CapValue"
                  ]
                },
                "description": "Retrieve cbgpPeer2CapValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2AddrFamilyTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyTable"
                  ]
                },
                "description": "Retrieve cbgpPeer2AddrFamilyTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2AddrFamilyEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyTable/cbgpPeer2AddrFamilyEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyTable",
                    "cbgpPeer2AddrFamilyEntry"
                  ]
                },
                "description": "Retrieve cbgpPeer2AddrFamilyEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2Type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyTable/cbgpPeer2AddrFamilyEntry/cbgpPeer2Type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyTable",
                    "cbgpPeer2AddrFamilyEntry",
                    "cbgpPeer2Type"
                  ]
                },
                "description": "Retrieve cbgpPeer2Type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2RemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyTable/cbgpPeer2AddrFamilyEntry/cbgpPeer2RemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyTable",
                    "cbgpPeer2AddrFamilyEntry",
                    "cbgpPeer2RemoteAddr"
                  ]
                },
                "description": "Retrieve cbgpPeer2RemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2AddrFamilyAfi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyTable/cbgpPeer2AddrFamilyEntry/cbgpPeer2AddrFamilyAfi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyTable",
                    "cbgpPeer2AddrFamilyEntry",
                    "cbgpPeer2AddrFamilyAfi"
                  ]
                },
                "description": "Retrieve cbgpPeer2AddrFamilyAfi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2AddrFamilySafi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyTable/cbgpPeer2AddrFamilyEntry/cbgpPeer2AddrFamilySafi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyTable",
                    "cbgpPeer2AddrFamilyEntry",
                    "cbgpPeer2AddrFamilySafi"
                  ]
                },
                "description": "Retrieve cbgpPeer2AddrFamilySafi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2AddrFamilyName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyTable/cbgpPeer2AddrFamilyEntry/cbgpPeer2AddrFamilyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyTable",
                    "cbgpPeer2AddrFamilyEntry",
                    "cbgpPeer2AddrFamilyName"
                  ]
                },
                "description": "Retrieve cbgpPeer2AddrFamilyName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2AddrFamilyPrefixTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyPrefixTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyPrefixTable"
                  ]
                },
                "description": "Retrieve cbgpPeer2AddrFamilyPrefixTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2AddrFamilyPrefixEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyPrefixTable/cbgpPeer2AddrFamilyPrefixEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyPrefixTable",
                    "cbgpPeer2AddrFamilyPrefixEntry"
                  ]
                },
                "description": "Retrieve cbgpPeer2AddrFamilyPrefixEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2Type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyPrefixTable/cbgpPeer2AddrFamilyPrefixEntry/cbgpPeer2Type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyPrefixTable",
                    "cbgpPeer2AddrFamilyPrefixEntry",
                    "cbgpPeer2Type"
                  ]
                },
                "description": "Retrieve cbgpPeer2Type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2RemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyPrefixTable/cbgpPeer2AddrFamilyPrefixEntry/cbgpPeer2RemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyPrefixTable",
                    "cbgpPeer2AddrFamilyPrefixEntry",
                    "cbgpPeer2RemoteAddr"
                  ]
                },
                "description": "Retrieve cbgpPeer2RemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2AddrFamilyAfi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyPrefixTable/cbgpPeer2AddrFamilyPrefixEntry/cbgpPeer2AddrFamilyAfi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyPrefixTable",
                    "cbgpPeer2AddrFamilyPrefixEntry",
                    "cbgpPeer2AddrFamilyAfi"
                  ]
                },
                "description": "Retrieve cbgpPeer2AddrFamilyAfi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2AddrFamilySafi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyPrefixTable/cbgpPeer2AddrFamilyPrefixEntry/cbgpPeer2AddrFamilySafi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyPrefixTable",
                    "cbgpPeer2AddrFamilyPrefixEntry",
                    "cbgpPeer2AddrFamilySafi"
                  ]
                },
                "description": "Retrieve cbgpPeer2AddrFamilySafi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2AcceptedPrefixes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyPrefixTable/cbgpPeer2AddrFamilyPrefixEntry/cbgpPeer2AcceptedPrefixes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyPrefixTable",
                    "cbgpPeer2AddrFamilyPrefixEntry",
                    "cbgpPeer2AcceptedPrefixes"
                  ]
                },
                "description": "Retrieve cbgpPeer2AcceptedPrefixes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2DeniedPrefixes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyPrefixTable/cbgpPeer2AddrFamilyPrefixEntry/cbgpPeer2DeniedPrefixes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyPrefixTable",
                    "cbgpPeer2AddrFamilyPrefixEntry",
                    "cbgpPeer2DeniedPrefixes"
                  ]
                },
                "description": "Retrieve cbgpPeer2DeniedPrefixes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2PrefixAdminLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyPrefixTable/cbgpPeer2AddrFamilyPrefixEntry/cbgpPeer2PrefixAdminLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyPrefixTable",
                    "cbgpPeer2AddrFamilyPrefixEntry",
                    "cbgpPeer2PrefixAdminLimit"
                  ]
                },
                "description": "Retrieve cbgpPeer2PrefixAdminLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2PrefixThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyPrefixTable/cbgpPeer2AddrFamilyPrefixEntry/cbgpPeer2PrefixThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyPrefixTable",
                    "cbgpPeer2AddrFamilyPrefixEntry",
                    "cbgpPeer2PrefixThreshold"
                  ]
                },
                "description": "Retrieve cbgpPeer2PrefixThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2PrefixClearThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyPrefixTable/cbgpPeer2AddrFamilyPrefixEntry/cbgpPeer2PrefixClearThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyPrefixTable",
                    "cbgpPeer2AddrFamilyPrefixEntry",
                    "cbgpPeer2PrefixClearThreshold"
                  ]
                },
                "description": "Retrieve cbgpPeer2PrefixClearThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2AdvertisedPrefixes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyPrefixTable/cbgpPeer2AddrFamilyPrefixEntry/cbgpPeer2AdvertisedPrefixes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyPrefixTable",
                    "cbgpPeer2AddrFamilyPrefixEntry",
                    "cbgpPeer2AdvertisedPrefixes"
                  ]
                },
                "description": "Retrieve cbgpPeer2AdvertisedPrefixes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2SuppressedPrefixes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyPrefixTable/cbgpPeer2AddrFamilyPrefixEntry/cbgpPeer2SuppressedPrefixes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyPrefixTable",
                    "cbgpPeer2AddrFamilyPrefixEntry",
                    "cbgpPeer2SuppressedPrefixes"
                  ]
                },
                "description": "Retrieve cbgpPeer2SuppressedPrefixes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeer2WithdrawnPrefixes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeer2AddrFamilyPrefixTable/cbgpPeer2AddrFamilyPrefixEntry/cbgpPeer2WithdrawnPrefixes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeer2AddrFamilyPrefixTable",
                    "cbgpPeer2AddrFamilyPrefixEntry",
                    "cbgpPeer2WithdrawnPrefixes"
                  ]
                },
                "description": "Retrieve cbgpPeer2WithdrawnPrefixes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerLastErrorTxt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerLastErrorTxt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerLastErrorTxt"
                  ]
                },
                "description": "Retrieve cbgpPeerLastErrorTxt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbgpPeerPrevState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BGP4-MIB:CISCO-BGP4-MIB/cbgpPeerPrevState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BGP4-MIB:CISCO-BGP4-MIB",
                    "cbgpPeerPrevState"
                  ]
                },
                "description": "Retrieve cbgpPeerPrevState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-BULK-FILE-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-BULK-FILE-MIB\n\nMIB data from `CISCO-BULK-FILE-MIB` module.\n\n**Root containers:** 1 (CISCO-BULK-FILE-MIB)\n**Paths:** 49 | **Descendants:** 48\n\nAll endpoints are read-only (GET).\n\nEndpoints: 49 | Operations: 49",
          "item": [
            {
              "name": "GET Get CISCO-BULK-FILE-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB"
                  ]
                },
                "description": "Retrieve CISCO-BULK-FILE-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefine",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefine",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefine"
                  ]
                },
                "description": "Retrieve cbfDefine from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineMaxFiles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefine/cbfDefineMaxFiles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefine",
                    "cbfDefineMaxFiles"
                  ]
                },
                "description": "Retrieve cbfDefineMaxFiles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineFiles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefine/cbfDefineFiles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefine",
                    "cbfDefineFiles"
                  ]
                },
                "description": "Retrieve cbfDefineFiles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineHighFiles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefine/cbfDefineHighFiles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefine",
                    "cbfDefineHighFiles"
                  ]
                },
                "description": "Retrieve cbfDefineHighFiles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineFilesRefused",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefine/cbfDefineFilesRefused",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefine",
                    "cbfDefineFilesRefused"
                  ]
                },
                "description": "Retrieve cbfDefineFilesRefused from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineMaxObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefine/cbfDefineMaxObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefine",
                    "cbfDefineMaxObjects"
                  ]
                },
                "description": "Retrieve cbfDefineMaxObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefine/cbfDefineObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefine",
                    "cbfDefineObjects"
                  ]
                },
                "description": "Retrieve cbfDefineObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineHighObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefine/cbfDefineHighObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefine",
                    "cbfDefineHighObjects"
                  ]
                },
                "description": "Retrieve cbfDefineHighObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineObjectsRefused",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefine/cbfDefineObjectsRefused",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefine",
                    "cbfDefineObjectsRefused"
                  ]
                },
                "description": "Retrieve cbfDefineObjectsRefused from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatus"
                  ]
                },
                "description": "Retrieve cbfStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfStatusMaxFiles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatus/cbfStatusMaxFiles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatus",
                    "cbfStatusMaxFiles"
                  ]
                },
                "description": "Retrieve cbfStatusMaxFiles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfStatusFiles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatus/cbfStatusFiles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatus",
                    "cbfStatusFiles"
                  ]
                },
                "description": "Retrieve cbfStatusFiles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfStatusHighFiles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatus/cbfStatusHighFiles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatus",
                    "cbfStatusHighFiles"
                  ]
                },
                "description": "Retrieve cbfStatusHighFiles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfStatusFilesBumped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatus/cbfStatusFilesBumped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatus",
                    "cbfStatusFilesBumped"
                  ]
                },
                "description": "Retrieve cbfStatusFilesBumped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineFileTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineFileTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineFileTable"
                  ]
                },
                "description": "Retrieve cbfDefineFileTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineFileEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineFileTable/cbfDefineFileEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineFileTable",
                    "cbfDefineFileEntry"
                  ]
                },
                "description": "Retrieve cbfDefineFileEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineFileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineFileTable/cbfDefineFileEntry/cbfDefineFileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineFileTable",
                    "cbfDefineFileEntry",
                    "cbfDefineFileIndex"
                  ]
                },
                "description": "Retrieve cbfDefineFileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineFileName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineFileTable/cbfDefineFileEntry/cbfDefineFileName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineFileTable",
                    "cbfDefineFileEntry",
                    "cbfDefineFileName"
                  ]
                },
                "description": "Retrieve cbfDefineFileName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineFileStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineFileTable/cbfDefineFileEntry/cbfDefineFileStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineFileTable",
                    "cbfDefineFileEntry",
                    "cbfDefineFileStorage"
                  ]
                },
                "description": "Retrieve cbfDefineFileStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineFileFormat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineFileTable/cbfDefineFileEntry/cbfDefineFileFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineFileTable",
                    "cbfDefineFileEntry",
                    "cbfDefineFileFormat"
                  ]
                },
                "description": "Retrieve cbfDefineFileFormat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineFileNow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineFileTable/cbfDefineFileEntry/cbfDefineFileNow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineFileTable",
                    "cbfDefineFileEntry",
                    "cbfDefineFileNow"
                  ]
                },
                "description": "Retrieve cbfDefineFileNow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineFileEntryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineFileTable/cbfDefineFileEntry/cbfDefineFileEntryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineFileTable",
                    "cbfDefineFileEntry",
                    "cbfDefineFileEntryStatus"
                  ]
                },
                "description": "Retrieve cbfDefineFileEntryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineFileNotifyOnCompletion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineFileTable/cbfDefineFileEntry/cbfDefineFileNotifyOnCompletion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineFileTable",
                    "cbfDefineFileEntry",
                    "cbfDefineFileNotifyOnCompletion"
                  ]
                },
                "description": "Retrieve cbfDefineFileNotifyOnCompletion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineObjectTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineObjectTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineObjectTable"
                  ]
                },
                "description": "Retrieve cbfDefineObjectTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineObjectEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineObjectTable/cbfDefineObjectEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineObjectTable",
                    "cbfDefineObjectEntry"
                  ]
                },
                "description": "Retrieve cbfDefineObjectEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineFileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineObjectTable/cbfDefineObjectEntry/cbfDefineFileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineObjectTable",
                    "cbfDefineObjectEntry",
                    "cbfDefineFileIndex"
                  ]
                },
                "description": "Retrieve cbfDefineFileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineObjectIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineObjectTable/cbfDefineObjectEntry/cbfDefineObjectIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineObjectTable",
                    "cbfDefineObjectEntry",
                    "cbfDefineObjectIndex"
                  ]
                },
                "description": "Retrieve cbfDefineObjectIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineObjectClass",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineObjectTable/cbfDefineObjectEntry/cbfDefineObjectClass",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineObjectTable",
                    "cbfDefineObjectEntry",
                    "cbfDefineObjectClass"
                  ]
                },
                "description": "Retrieve cbfDefineObjectClass from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineObjectID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineObjectTable/cbfDefineObjectEntry/cbfDefineObjectID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineObjectTable",
                    "cbfDefineObjectEntry",
                    "cbfDefineObjectID"
                  ]
                },
                "description": "Retrieve cbfDefineObjectID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineObjectEntryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineObjectTable/cbfDefineObjectEntry/cbfDefineObjectEntryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineObjectTable",
                    "cbfDefineObjectEntry",
                    "cbfDefineObjectEntryStatus"
                  ]
                },
                "description": "Retrieve cbfDefineObjectEntryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineObjectTableInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineObjectTable/cbfDefineObjectEntry/cbfDefineObjectTableInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineObjectTable",
                    "cbfDefineObjectEntry",
                    "cbfDefineObjectTableInstance"
                  ]
                },
                "description": "Retrieve cbfDefineObjectTableInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineObjectNumEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineObjectTable/cbfDefineObjectEntry/cbfDefineObjectNumEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineObjectTable",
                    "cbfDefineObjectEntry",
                    "cbfDefineObjectNumEntries"
                  ]
                },
                "description": "Retrieve cbfDefineObjectNumEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineObjectLastPolledInst",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfDefineObjectTable/cbfDefineObjectEntry/cbfDefineObjectLastPolledInst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfDefineObjectTable",
                    "cbfDefineObjectEntry",
                    "cbfDefineObjectLastPolledInst"
                  ]
                },
                "description": "Retrieve cbfDefineObjectLastPolledInst from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfStatusFileTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatusFileTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatusFileTable"
                  ]
                },
                "description": "Retrieve cbfStatusFileTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfStatusFileEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatusFileTable/cbfStatusFileEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatusFileTable",
                    "cbfStatusFileEntry"
                  ]
                },
                "description": "Retrieve cbfStatusFileEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineFileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatusFileTable/cbfStatusFileEntry/cbfDefineFileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatusFileTable",
                    "cbfStatusFileEntry",
                    "cbfDefineFileIndex"
                  ]
                },
                "description": "Retrieve cbfDefineFileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfStatusFileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatusFileTable/cbfStatusFileEntry/cbfStatusFileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatusFileTable",
                    "cbfStatusFileEntry",
                    "cbfStatusFileIndex"
                  ]
                },
                "description": "Retrieve cbfStatusFileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfStatusFileState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatusFileTable/cbfStatusFileEntry/cbfStatusFileState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatusFileTable",
                    "cbfStatusFileEntry",
                    "cbfStatusFileState"
                  ]
                },
                "description": "Retrieve cbfStatusFileState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfStatusFileCompletionTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatusFileTable/cbfStatusFileEntry/cbfStatusFileCompletionTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatusFileTable",
                    "cbfStatusFileEntry",
                    "cbfStatusFileCompletionTime"
                  ]
                },
                "description": "Retrieve cbfStatusFileCompletionTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfStatusFileEntryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatusFileTable/cbfStatusFileEntry/cbfStatusFileEntryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatusFileTable",
                    "cbfStatusFileEntry",
                    "cbfStatusFileEntryStatus"
                  ]
                },
                "description": "Retrieve cbfStatusFileEntryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatusFileTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatusFileTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineFileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatusFileTable/object-1/cbfDefineFileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatusFileTable",
                    "object-1",
                    "cbfDefineFileIndex"
                  ]
                },
                "description": "Retrieve cbfDefineFileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfStatusFileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatusFileTable/object-1/cbfStatusFileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatusFileTable",
                    "object-1",
                    "cbfStatusFileIndex"
                  ]
                },
                "description": "Retrieve cbfStatusFileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfStatusFileState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatusFileTable/object-1/cbfStatusFileState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatusFileTable",
                    "object-1",
                    "cbfStatusFileState"
                  ]
                },
                "description": "Retrieve cbfStatusFileState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatusFileTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatusFileTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfDefineFileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatusFileTable/object-2/cbfDefineFileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatusFileTable",
                    "object-2",
                    "cbfDefineFileIndex"
                  ]
                },
                "description": "Retrieve cbfDefineFileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfStatusFileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatusFileTable/object-2/cbfStatusFileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatusFileTable",
                    "object-2",
                    "cbfStatusFileIndex"
                  ]
                },
                "description": "Retrieve cbfStatusFileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cbfStatusFileCompletionTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB/cbfStatusFileTable/object-2/cbfStatusFileCompletionTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-BULK-FILE-MIB:CISCO-BULK-FILE-MIB",
                    "cbfStatusFileTable",
                    "object-2",
                    "cbfStatusFileCompletionTime"
                  ]
                },
                "description": "Retrieve cbfStatusFileCompletionTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-CBP-TARGET-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-CBP-TARGET-MIB\n\nMIB data from `CISCO-CBP-TARGET-MIB` module.\n\n**Root containers:** 1 (CISCO-CBP-TARGET-MIB)\n**Paths:** 16 | **Descendants:** 15\n\nAll endpoints are read-only (GET).\n\nEndpoints: 16 | Operations: 16",
          "item": [
            {
              "name": "GET Get CISCO-CBP-TARGET-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB"
                  ]
                },
                "description": "Retrieve CISCO-CBP-TARGET-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccbptTargetAttachCfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB/ccbptTargetAttachCfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB",
                    "ccbptTargetAttachCfg"
                  ]
                },
                "description": "Retrieve ccbptTargetAttachCfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccbptPolicyIdNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB/ccbptTargetAttachCfg/ccbptPolicyIdNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB",
                    "ccbptTargetAttachCfg",
                    "ccbptPolicyIdNext"
                  ]
                },
                "description": "Retrieve ccbptPolicyIdNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccbptTargetTableLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB/ccbptTargetAttachCfg/ccbptTargetTableLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB",
                    "ccbptTargetAttachCfg",
                    "ccbptTargetTableLastChange"
                  ]
                },
                "description": "Retrieve ccbptTargetTableLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccbptTargetTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB/ccbptTargetTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB",
                    "ccbptTargetTable"
                  ]
                },
                "description": "Retrieve ccbptTargetTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccbptTargetEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB/ccbptTargetTable/ccbptTargetEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB",
                    "ccbptTargetTable",
                    "ccbptTargetEntry"
                  ]
                },
                "description": "Retrieve ccbptTargetEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccbptTargetType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB/ccbptTargetTable/ccbptTargetEntry/ccbptTargetType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB",
                    "ccbptTargetTable",
                    "ccbptTargetEntry",
                    "ccbptTargetType"
                  ]
                },
                "description": "Retrieve ccbptTargetType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccbptTargetId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB/ccbptTargetTable/ccbptTargetEntry/ccbptTargetId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB",
                    "ccbptTargetTable",
                    "ccbptTargetEntry",
                    "ccbptTargetId"
                  ]
                },
                "description": "Retrieve ccbptTargetId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccbptTargetDir",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB/ccbptTargetTable/ccbptTargetEntry/ccbptTargetDir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB",
                    "ccbptTargetTable",
                    "ccbptTargetEntry",
                    "ccbptTargetDir"
                  ]
                },
                "description": "Retrieve ccbptTargetDir from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccbptPolicySourceType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB/ccbptTargetTable/ccbptTargetEntry/ccbptPolicySourceType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB",
                    "ccbptTargetTable",
                    "ccbptTargetEntry",
                    "ccbptPolicySourceType"
                  ]
                },
                "description": "Retrieve ccbptPolicySourceType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccbptPolicyId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB/ccbptTargetTable/ccbptTargetEntry/ccbptPolicyId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB",
                    "ccbptTargetTable",
                    "ccbptTargetEntry",
                    "ccbptPolicyId"
                  ]
                },
                "description": "Retrieve ccbptPolicyId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccbptTargetStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB/ccbptTargetTable/ccbptTargetEntry/ccbptTargetStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB",
                    "ccbptTargetTable",
                    "ccbptTargetEntry",
                    "ccbptTargetStatus"
                  ]
                },
                "description": "Retrieve ccbptTargetStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccbptTargetStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB/ccbptTargetTable/ccbptTargetEntry/ccbptTargetStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB",
                    "ccbptTargetTable",
                    "ccbptTargetEntry",
                    "ccbptTargetStorageType"
                  ]
                },
                "description": "Retrieve ccbptTargetStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccbptPolicyMap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB/ccbptTargetTable/ccbptTargetEntry/ccbptPolicyMap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB",
                    "ccbptTargetTable",
                    "ccbptTargetEntry",
                    "ccbptPolicyMap"
                  ]
                },
                "description": "Retrieve ccbptPolicyMap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccbptPolicyInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB/ccbptTargetTable/ccbptTargetEntry/ccbptPolicyInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB",
                    "ccbptTargetTable",
                    "ccbptTargetEntry",
                    "ccbptPolicyInstance"
                  ]
                },
                "description": "Retrieve ccbptPolicyInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccbptPolicyAttachTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB/ccbptTargetTable/ccbptTargetEntry/ccbptPolicyAttachTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CBP-TARGET-MIB:CISCO-CBP-TARGET-MIB",
                    "ccbptTargetTable",
                    "ccbptTargetEntry",
                    "ccbptPolicyAttachTime"
                  ]
                },
                "description": "Retrieve ccbptPolicyAttachTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-CDP-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-CDP-MIB\n\nMIB data from `CISCO-CDP-MIB` module.\n\n**Root containers:** 1 (CISCO-CDP-MIB)\n**Paths:** 55 | **Descendants:** 54\n\nAll endpoints are read-only (GET).\n\nEndpoints: 55 | Operations: 55",
          "item": [
            {
              "name": "GET Get CISCO-CDP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB"
                  ]
                },
                "description": "Retrieve CISCO-CDP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpGlobal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpGlobal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpGlobal"
                  ]
                },
                "description": "Retrieve cdpGlobal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpGlobalRun",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpGlobal/cdpGlobalRun",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpGlobal",
                    "cdpGlobalRun"
                  ]
                },
                "description": "Retrieve cdpGlobalRun from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpGlobalMessageInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpGlobal/cdpGlobalMessageInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpGlobal",
                    "cdpGlobalMessageInterval"
                  ]
                },
                "description": "Retrieve cdpGlobalMessageInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpGlobalHoldTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpGlobal/cdpGlobalHoldTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpGlobal",
                    "cdpGlobalHoldTime"
                  ]
                },
                "description": "Retrieve cdpGlobalHoldTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpGlobalDeviceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpGlobal/cdpGlobalDeviceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpGlobal",
                    "cdpGlobalDeviceId"
                  ]
                },
                "description": "Retrieve cdpGlobalDeviceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpGlobalLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpGlobal/cdpGlobalLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpGlobal",
                    "cdpGlobalLastChange"
                  ]
                },
                "description": "Retrieve cdpGlobalLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpGlobalDeviceIdFormatCpb",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpGlobal/cdpGlobalDeviceIdFormatCpb",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpGlobal",
                    "cdpGlobalDeviceIdFormatCpb"
                  ]
                },
                "description": "Retrieve cdpGlobalDeviceIdFormatCpb from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpGlobalDeviceIdFormat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpGlobal/cdpGlobalDeviceIdFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpGlobal",
                    "cdpGlobalDeviceIdFormat"
                  ]
                },
                "description": "Retrieve cdpGlobalDeviceIdFormat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpInterfaceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpInterfaceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpInterfaceTable"
                  ]
                },
                "description": "Retrieve cdpInterfaceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpInterfaceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpInterfaceTable/cdpInterfaceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpInterfaceTable",
                    "cdpInterfaceEntry"
                  ]
                },
                "description": "Retrieve cdpInterfaceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpInterfaceIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpInterfaceTable/cdpInterfaceEntry/cdpInterfaceIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpInterfaceTable",
                    "cdpInterfaceEntry",
                    "cdpInterfaceIfIndex"
                  ]
                },
                "description": "Retrieve cdpInterfaceIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpInterfaceEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpInterfaceTable/cdpInterfaceEntry/cdpInterfaceEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpInterfaceTable",
                    "cdpInterfaceEntry",
                    "cdpInterfaceEnable"
                  ]
                },
                "description": "Retrieve cdpInterfaceEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpInterfaceMessageInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpInterfaceTable/cdpInterfaceEntry/cdpInterfaceMessageInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpInterfaceTable",
                    "cdpInterfaceEntry",
                    "cdpInterfaceMessageInterval"
                  ]
                },
                "description": "Retrieve cdpInterfaceMessageInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpInterfaceGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpInterfaceTable/cdpInterfaceEntry/cdpInterfaceGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpInterfaceTable",
                    "cdpInterfaceEntry",
                    "cdpInterfaceGroup"
                  ]
                },
                "description": "Retrieve cdpInterfaceGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpInterfacePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpInterfaceTable/cdpInterfaceEntry/cdpInterfacePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpInterfaceTable",
                    "cdpInterfaceEntry",
                    "cdpInterfacePort"
                  ]
                },
                "description": "Retrieve cdpInterfacePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpInterfaceName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpInterfaceTable/cdpInterfaceEntry/cdpInterfaceName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpInterfaceTable",
                    "cdpInterfaceEntry",
                    "cdpInterfaceName"
                  ]
                },
                "description": "Retrieve cdpInterfaceName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpInterfaceExtTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpInterfaceExtTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpInterfaceExtTable"
                  ]
                },
                "description": "Retrieve cdpInterfaceExtTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpInterfaceExtEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpInterfaceExtTable/cdpInterfaceExtEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpInterfaceExtTable",
                    "cdpInterfaceExtEntry"
                  ]
                },
                "description": "Retrieve cdpInterfaceExtEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpInterfaceExtTable/cdpInterfaceExtEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpInterfaceExtTable",
                    "cdpInterfaceExtEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpInterfaceExtendedTrust",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpInterfaceExtTable/cdpInterfaceExtEntry/cdpInterfaceExtendedTrust",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpInterfaceExtTable",
                    "cdpInterfaceExtEntry",
                    "cdpInterfaceExtendedTrust"
                  ]
                },
                "description": "Retrieve cdpInterfaceExtendedTrust from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpInterfaceCosForUntrustedPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpInterfaceExtTable/cdpInterfaceExtEntry/cdpInterfaceCosForUntrustedPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpInterfaceExtTable",
                    "cdpInterfaceExtEntry",
                    "cdpInterfaceCosForUntrustedPort"
                  ]
                },
                "description": "Retrieve cdpInterfaceCosForUntrustedPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable"
                  ]
                },
                "description": "Retrieve cdpCacheTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry"
                  ]
                },
                "description": "Retrieve cdpCacheEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheIfIndex"
                  ]
                },
                "description": "Retrieve cdpCacheIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheDeviceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheDeviceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheDeviceIndex"
                  ]
                },
                "description": "Retrieve cdpCacheDeviceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheAddressType"
                  ]
                },
                "description": "Retrieve cdpCacheAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheAddress"
                  ]
                },
                "description": "Retrieve cdpCacheAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheVersion"
                  ]
                },
                "description": "Retrieve cdpCacheVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheDeviceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheDeviceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheDeviceId"
                  ]
                },
                "description": "Retrieve cdpCacheDeviceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheDevicePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheDevicePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheDevicePort"
                  ]
                },
                "description": "Retrieve cdpCacheDevicePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCachePlatform",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCachePlatform",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCachePlatform"
                  ]
                },
                "description": "Retrieve cdpCachePlatform from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheCapabilities",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheCapabilities",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheCapabilities"
                  ]
                },
                "description": "Retrieve cdpCacheCapabilities from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheVTPMgmtDomain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheVTPMgmtDomain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheVTPMgmtDomain"
                  ]
                },
                "description": "Retrieve cdpCacheVTPMgmtDomain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheNativeVLAN",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheNativeVLAN",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheNativeVLAN"
                  ]
                },
                "description": "Retrieve cdpCacheNativeVLAN from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheDuplex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheDuplex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheDuplex"
                  ]
                },
                "description": "Retrieve cdpCacheDuplex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheApplianceID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheApplianceID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheApplianceID"
                  ]
                },
                "description": "Retrieve cdpCacheApplianceID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheVlanID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheVlanID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheVlanID"
                  ]
                },
                "description": "Retrieve cdpCacheVlanID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCachePowerConsumption",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCachePowerConsumption",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCachePowerConsumption"
                  ]
                },
                "description": "Retrieve cdpCachePowerConsumption from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheMTU",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheMTU",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheMTU"
                  ]
                },
                "description": "Retrieve cdpCacheMTU from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheSysName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheSysName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheSysName"
                  ]
                },
                "description": "Retrieve cdpCacheSysName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheSysObjectID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheSysObjectID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheSysObjectID"
                  ]
                },
                "description": "Retrieve cdpCacheSysObjectID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCachePrimaryMgmtAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCachePrimaryMgmtAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCachePrimaryMgmtAddrType"
                  ]
                },
                "description": "Retrieve cdpCachePrimaryMgmtAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCachePrimaryMgmtAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCachePrimaryMgmtAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCachePrimaryMgmtAddr"
                  ]
                },
                "description": "Retrieve cdpCachePrimaryMgmtAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheSecondaryMgmtAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheSecondaryMgmtAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheSecondaryMgmtAddrType"
                  ]
                },
                "description": "Retrieve cdpCacheSecondaryMgmtAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheSecondaryMgmtAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheSecondaryMgmtAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheSecondaryMgmtAddr"
                  ]
                },
                "description": "Retrieve cdpCacheSecondaryMgmtAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCachePhysLocation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCachePhysLocation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCachePhysLocation"
                  ]
                },
                "description": "Retrieve cdpCachePhysLocation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCacheTable/cdpCacheEntry/cdpCacheLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCacheTable",
                    "cdpCacheEntry",
                    "cdpCacheLastChange"
                  ]
                },
                "description": "Retrieve cdpCacheLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCtAddressTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCtAddressTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCtAddressTable"
                  ]
                },
                "description": "Retrieve cdpCtAddressTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCtAddressEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCtAddressTable/cdpCtAddressEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCtAddressTable",
                    "cdpCtAddressEntry"
                  ]
                },
                "description": "Retrieve cdpCtAddressEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCtAddressTable/cdpCtAddressEntry/cdpCacheIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCtAddressTable",
                    "cdpCtAddressEntry",
                    "cdpCacheIfIndex"
                  ]
                },
                "description": "Retrieve cdpCacheIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCacheDeviceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCtAddressTable/cdpCtAddressEntry/cdpCacheDeviceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCtAddressTable",
                    "cdpCtAddressEntry",
                    "cdpCacheDeviceIndex"
                  ]
                },
                "description": "Retrieve cdpCacheDeviceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCtAddressIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCtAddressTable/cdpCtAddressEntry/cdpCtAddressIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCtAddressTable",
                    "cdpCtAddressEntry",
                    "cdpCtAddressIndex"
                  ]
                },
                "description": "Retrieve cdpCtAddressIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCtAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCtAddressTable/cdpCtAddressEntry/cdpCtAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCtAddressTable",
                    "cdpCtAddressEntry",
                    "cdpCtAddressType"
                  ]
                },
                "description": "Retrieve cdpCtAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdpCtAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CDP-MIB:CISCO-CDP-MIB/cdpCtAddressTable/cdpCtAddressEntry/cdpCtAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CDP-MIB:CISCO-CDP-MIB",
                    "cdpCtAddressTable",
                    "cdpCtAddressEntry",
                    "cdpCtAddress"
                  ]
                },
                "description": "Retrieve cdpCtAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-CEF-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-CEF-MIB\n\nMIB data from `CISCO-CEF-MIB` module.\n\n**Root containers:** 1 (CISCO-CEF-MIB)\n**Paths:** 198 | **Descendants:** 203\n\nAll endpoints are read-only (GET).\n\nEndpoints: 198 | Operations: 198",
          "item": [
            {
              "name": "GET Get CISCO-CEF-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB"
                  ]
                },
                "description": "Retrieve CISCO-CEF-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFIB"
                  ]
                },
                "description": "Retrieve cefFIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefLMPrefixSpinLock",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFIB/cefLMPrefixSpinLock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFIB",
                    "cefLMPrefixSpinLock"
                  ]
                },
                "description": "Retrieve cefLMPrefixSpinLock from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCC",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCC",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCC"
                  ]
                },
                "description": "Retrieve cefCC from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entLastInconsistencyDetectTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCC/entLastInconsistencyDetectTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCC",
                    "entLastInconsistencyDetectTime"
                  ]
                },
                "description": "Retrieve entLastInconsistencyDetectTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefInconsistencyReset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCC/cefInconsistencyReset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCC",
                    "cefInconsistencyReset"
                  ]
                },
                "description": "Retrieve cefInconsistencyReset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefInconsistencyResetStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCC/cefInconsistencyResetStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCC",
                    "cefInconsistencyResetStatus"
                  ]
                },
                "description": "Retrieve cefInconsistencyResetStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefNotifCntl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefNotifCntl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefNotifCntl"
                  ]
                },
                "description": "Retrieve cefNotifCntl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefResourceFailureNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefNotifCntl/cefResourceFailureNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefNotifCntl",
                    "cefResourceFailureNotifEnable"
                  ]
                },
                "description": "Retrieve cefResourceFailureNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPeerStateChangeNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefNotifCntl/cefPeerStateChangeNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefNotifCntl",
                    "cefPeerStateChangeNotifEnable"
                  ]
                },
                "description": "Retrieve cefPeerStateChangeNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPeerFIBStateChangeNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefNotifCntl/cefPeerFIBStateChangeNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefNotifCntl",
                    "cefPeerFIBStateChangeNotifEnable"
                  ]
                },
                "description": "Retrieve cefPeerFIBStateChangeNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefNotifThrottlingInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefNotifCntl/cefNotifThrottlingInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefNotifCntl",
                    "cefNotifThrottlingInterval"
                  ]
                },
                "description": "Retrieve cefNotifThrottlingInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefInconsistencyNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefNotifCntl/cefInconsistencyNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefNotifCntl",
                    "cefInconsistencyNotifEnable"
                  ]
                },
                "description": "Retrieve cefInconsistencyNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFIBSummaryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFIBSummaryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFIBSummaryTable"
                  ]
                },
                "description": "Retrieve cefFIBSummaryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFIBSummaryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFIBSummaryTable/cefFIBSummaryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFIBSummaryTable",
                    "cefFIBSummaryEntry"
                  ]
                },
                "description": "Retrieve cefFIBSummaryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFIBSummaryTable/cefFIBSummaryEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFIBSummaryTable",
                    "cefFIBSummaryEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFIBIpVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFIBSummaryTable/cefFIBSummaryEntry/cefFIBIpVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFIBSummaryTable",
                    "cefFIBSummaryEntry",
                    "cefFIBIpVersion"
                  ]
                },
                "description": "Retrieve cefFIBIpVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFIBSummaryFwdPrefixes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFIBSummaryTable/cefFIBSummaryEntry/cefFIBSummaryFwdPrefixes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFIBSummaryTable",
                    "cefFIBSummaryEntry",
                    "cefFIBSummaryFwdPrefixes"
                  ]
                },
                "description": "Retrieve cefFIBSummaryFwdPrefixes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable"
                  ]
                },
                "description": "Retrieve cefPrefixTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry"
                  ]
                },
                "description": "Retrieve cefPrefixEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/cefPrefixType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "cefPrefixType"
                  ]
                },
                "description": "Retrieve cefPrefixType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/cefPrefixAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "cefPrefixAddr"
                  ]
                },
                "description": "Retrieve cefPrefixAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/cefPrefixLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "cefPrefixLen"
                  ]
                },
                "description": "Retrieve cefPrefixLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixForwardingInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/cefPrefixForwardingInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "cefPrefixForwardingInfo"
                  ]
                },
                "description": "Retrieve cefPrefixForwardingInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/cefPrefixPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "cefPrefixPkts"
                  ]
                },
                "description": "Retrieve cefPrefixPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixHCPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/cefPrefixHCPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "cefPrefixHCPkts"
                  ]
                },
                "description": "Retrieve cefPrefixHCPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/cefPrefixBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "cefPrefixBytes"
                  ]
                },
                "description": "Retrieve cefPrefixBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixHCBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/cefPrefixHCBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "cefPrefixHCBytes"
                  ]
                },
                "description": "Retrieve cefPrefixHCBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixInternalNRPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/cefPrefixInternalNRPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "cefPrefixInternalNRPkts"
                  ]
                },
                "description": "Retrieve cefPrefixInternalNRPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixInternalNRHCPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/cefPrefixInternalNRHCPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "cefPrefixInternalNRHCPkts"
                  ]
                },
                "description": "Retrieve cefPrefixInternalNRHCPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixInternalNRBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/cefPrefixInternalNRBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "cefPrefixInternalNRBytes"
                  ]
                },
                "description": "Retrieve cefPrefixInternalNRBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixInternalNRHCBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/cefPrefixInternalNRHCBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "cefPrefixInternalNRHCBytes"
                  ]
                },
                "description": "Retrieve cefPrefixInternalNRHCBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixExternalNRPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/cefPrefixExternalNRPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "cefPrefixExternalNRPkts"
                  ]
                },
                "description": "Retrieve cefPrefixExternalNRPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixExternalNRHCPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/cefPrefixExternalNRHCPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "cefPrefixExternalNRHCPkts"
                  ]
                },
                "description": "Retrieve cefPrefixExternalNRHCPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixExternalNRBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/cefPrefixExternalNRBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "cefPrefixExternalNRBytes"
                  ]
                },
                "description": "Retrieve cefPrefixExternalNRBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixExternalNRHCBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPrefixTable/cefPrefixEntry/cefPrefixExternalNRHCBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPrefixTable",
                    "cefPrefixEntry",
                    "cefPrefixExternalNRHCBytes"
                  ]
                },
                "description": "Retrieve cefPrefixExternalNRHCBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefLMPrefixTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefLMPrefixTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefLMPrefixTable"
                  ]
                },
                "description": "Retrieve cefLMPrefixTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefLMPrefixEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefLMPrefixTable/cefLMPrefixEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefLMPrefixTable",
                    "cefLMPrefixEntry"
                  ]
                },
                "description": "Retrieve cefLMPrefixEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefLMPrefixTable/cefLMPrefixEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefLMPrefixTable",
                    "cefLMPrefixEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefLMPrefixDestAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefLMPrefixTable/cefLMPrefixEntry/cefLMPrefixDestAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefLMPrefixTable",
                    "cefLMPrefixEntry",
                    "cefLMPrefixDestAddrType"
                  ]
                },
                "description": "Retrieve cefLMPrefixDestAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefLMPrefixDestAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefLMPrefixTable/cefLMPrefixEntry/cefLMPrefixDestAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefLMPrefixTable",
                    "cefLMPrefixEntry",
                    "cefLMPrefixDestAddr"
                  ]
                },
                "description": "Retrieve cefLMPrefixDestAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefLMPrefixState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefLMPrefixTable/cefLMPrefixEntry/cefLMPrefixState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefLMPrefixTable",
                    "cefLMPrefixEntry",
                    "cefLMPrefixState"
                  ]
                },
                "description": "Retrieve cefLMPrefixState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefLMPrefixAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefLMPrefixTable/cefLMPrefixEntry/cefLMPrefixAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefLMPrefixTable",
                    "cefLMPrefixEntry",
                    "cefLMPrefixAddr"
                  ]
                },
                "description": "Retrieve cefLMPrefixAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefLMPrefixLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefLMPrefixTable/cefLMPrefixEntry/cefLMPrefixLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefLMPrefixTable",
                    "cefLMPrefixEntry",
                    "cefLMPrefixLen"
                  ]
                },
                "description": "Retrieve cefLMPrefixLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefLMPrefixRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefLMPrefixTable/cefLMPrefixEntry/cefLMPrefixRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefLMPrefixTable",
                    "cefLMPrefixEntry",
                    "cefLMPrefixRowStatus"
                  ]
                },
                "description": "Retrieve cefLMPrefixRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPathTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPathTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPathTable"
                  ]
                },
                "description": "Retrieve cefPathTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPathEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPathTable/cefPathEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPathTable",
                    "cefPathEntry"
                  ]
                },
                "description": "Retrieve cefPathEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPathTable/cefPathEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPathTable",
                    "cefPathEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPathTable/cefPathEntry/cefPrefixType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPathTable",
                    "cefPathEntry",
                    "cefPrefixType"
                  ]
                },
                "description": "Retrieve cefPrefixType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPathTable/cefPathEntry/cefPrefixAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPathTable",
                    "cefPathEntry",
                    "cefPrefixAddr"
                  ]
                },
                "description": "Retrieve cefPrefixAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPrefixLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPathTable/cefPathEntry/cefPrefixLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPathTable",
                    "cefPathEntry",
                    "cefPrefixLen"
                  ]
                },
                "description": "Retrieve cefPrefixLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPathId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPathTable/cefPathEntry/cefPathId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPathTable",
                    "cefPathEntry",
                    "cefPathId"
                  ]
                },
                "description": "Retrieve cefPathId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPathType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPathTable/cefPathEntry/cefPathType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPathTable",
                    "cefPathEntry",
                    "cefPathType"
                  ]
                },
                "description": "Retrieve cefPathType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPathInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPathTable/cefPathEntry/cefPathInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPathTable",
                    "cefPathEntry",
                    "cefPathInterface"
                  ]
                },
                "description": "Retrieve cefPathInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPathNextHopAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPathTable/cefPathEntry/cefPathNextHopAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPathTable",
                    "cefPathEntry",
                    "cefPathNextHopAddr"
                  ]
                },
                "description": "Retrieve cefPathNextHopAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPathRecurseVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPathTable/cefPathEntry/cefPathRecurseVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPathTable",
                    "cefPathEntry",
                    "cefPathRecurseVrfName"
                  ]
                },
                "description": "Retrieve cefPathRecurseVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjSummaryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjSummaryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjSummaryTable"
                  ]
                },
                "description": "Retrieve cefAdjSummaryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjSummaryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjSummaryTable/cefAdjSummaryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjSummaryTable",
                    "cefAdjSummaryEntry"
                  ]
                },
                "description": "Retrieve cefAdjSummaryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjSummaryTable/cefAdjSummaryEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjSummaryTable",
                    "cefAdjSummaryEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjSummaryLinkType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjSummaryTable/cefAdjSummaryEntry/cefAdjSummaryLinkType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjSummaryTable",
                    "cefAdjSummaryEntry",
                    "cefAdjSummaryLinkType"
                  ]
                },
                "description": "Retrieve cefAdjSummaryLinkType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjSummaryComplete",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjSummaryTable/cefAdjSummaryEntry/cefAdjSummaryComplete",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjSummaryTable",
                    "cefAdjSummaryEntry",
                    "cefAdjSummaryComplete"
                  ]
                },
                "description": "Retrieve cefAdjSummaryComplete from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjSummaryIncomplete",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjSummaryTable/cefAdjSummaryEntry/cefAdjSummaryIncomplete",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjSummaryTable",
                    "cefAdjSummaryEntry",
                    "cefAdjSummaryIncomplete"
                  ]
                },
                "description": "Retrieve cefAdjSummaryIncomplete from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjSummaryFixup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjSummaryTable/cefAdjSummaryEntry/cefAdjSummaryFixup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjSummaryTable",
                    "cefAdjSummaryEntry",
                    "cefAdjSummaryFixup"
                  ]
                },
                "description": "Retrieve cefAdjSummaryFixup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjSummaryRedirect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjSummaryTable/cefAdjSummaryEntry/cefAdjSummaryRedirect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjSummaryTable",
                    "cefAdjSummaryEntry",
                    "cefAdjSummaryRedirect"
                  ]
                },
                "description": "Retrieve cefAdjSummaryRedirect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable"
                  ]
                },
                "description": "Retrieve cefAdjTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable/cefAdjEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable",
                    "cefAdjEntry"
                  ]
                },
                "description": "Retrieve cefAdjEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable/cefAdjEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable",
                    "cefAdjEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable/cefAdjEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable",
                    "cefAdjEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjSummaryLinkType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable/cefAdjEntry/cefAdjSummaryLinkType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable",
                    "cefAdjEntry",
                    "cefAdjSummaryLinkType"
                  ]
                },
                "description": "Retrieve cefAdjSummaryLinkType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjNextHopAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable/cefAdjEntry/cefAdjNextHopAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable",
                    "cefAdjEntry",
                    "cefAdjNextHopAddrType"
                  ]
                },
                "description": "Retrieve cefAdjNextHopAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjNextHopAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable/cefAdjEntry/cefAdjNextHopAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable",
                    "cefAdjEntry",
                    "cefAdjNextHopAddr"
                  ]
                },
                "description": "Retrieve cefAdjNextHopAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjConnId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable/cefAdjEntry/cefAdjConnId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable",
                    "cefAdjEntry",
                    "cefAdjConnId"
                  ]
                },
                "description": "Retrieve cefAdjConnId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable/cefAdjEntry/cefAdjSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable",
                    "cefAdjEntry",
                    "cefAdjSource"
                  ]
                },
                "description": "Retrieve cefAdjSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjEncap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable/cefAdjEntry/cefAdjEncap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable",
                    "cefAdjEntry",
                    "cefAdjEncap"
                  ]
                },
                "description": "Retrieve cefAdjEncap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjFixup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable/cefAdjEntry/cefAdjFixup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable",
                    "cefAdjEntry",
                    "cefAdjFixup"
                  ]
                },
                "description": "Retrieve cefAdjFixup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjMTU",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable/cefAdjEntry/cefAdjMTU",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable",
                    "cefAdjEntry",
                    "cefAdjMTU"
                  ]
                },
                "description": "Retrieve cefAdjMTU from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjForwardingInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable/cefAdjEntry/cefAdjForwardingInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable",
                    "cefAdjEntry",
                    "cefAdjForwardingInfo"
                  ]
                },
                "description": "Retrieve cefAdjForwardingInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable/cefAdjEntry/cefAdjPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable",
                    "cefAdjEntry",
                    "cefAdjPkts"
                  ]
                },
                "description": "Retrieve cefAdjPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjHCPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable/cefAdjEntry/cefAdjHCPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable",
                    "cefAdjEntry",
                    "cefAdjHCPkts"
                  ]
                },
                "description": "Retrieve cefAdjHCPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable/cefAdjEntry/cefAdjBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable",
                    "cefAdjEntry",
                    "cefAdjBytes"
                  ]
                },
                "description": "Retrieve cefAdjBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefAdjHCBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefAdjTable/cefAdjEntry/cefAdjHCBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefAdjTable",
                    "cefAdjEntry",
                    "cefAdjHCBytes"
                  ]
                },
                "description": "Retrieve cefAdjHCBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFESelectionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFESelectionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFESelectionTable"
                  ]
                },
                "description": "Retrieve cefFESelectionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFESelectionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFESelectionTable/cefFESelectionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFESelectionTable",
                    "cefFESelectionEntry"
                  ]
                },
                "description": "Retrieve cefFESelectionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFESelectionTable/cefFESelectionEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFESelectionTable",
                    "cefFESelectionEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFESelectionName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFESelectionTable/cefFESelectionEntry/cefFESelectionName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFESelectionTable",
                    "cefFESelectionEntry",
                    "cefFESelectionName"
                  ]
                },
                "description": "Retrieve cefFESelectionName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFESelectionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFESelectionTable/cefFESelectionEntry/cefFESelectionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFESelectionTable",
                    "cefFESelectionEntry",
                    "cefFESelectionId"
                  ]
                },
                "description": "Retrieve cefFESelectionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFESelectionSpecial",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFESelectionTable/cefFESelectionEntry/cefFESelectionSpecial",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFESelectionTable",
                    "cefFESelectionEntry",
                    "cefFESelectionSpecial"
                  ]
                },
                "description": "Retrieve cefFESelectionSpecial from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFESelectionLabels",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFESelectionTable/cefFESelectionEntry/cefFESelectionLabels",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFESelectionTable",
                    "cefFESelectionEntry",
                    "cefFESelectionLabels"
                  ]
                },
                "description": "Retrieve cefFESelectionLabels from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFESelectionAdjLinkType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFESelectionTable/cefFESelectionEntry/cefFESelectionAdjLinkType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFESelectionTable",
                    "cefFESelectionEntry",
                    "cefFESelectionAdjLinkType"
                  ]
                },
                "description": "Retrieve cefFESelectionAdjLinkType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFESelectionAdjInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFESelectionTable/cefFESelectionEntry/cefFESelectionAdjInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFESelectionTable",
                    "cefFESelectionEntry",
                    "cefFESelectionAdjInterface"
                  ]
                },
                "description": "Retrieve cefFESelectionAdjInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFESelectionAdjNextHopAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFESelectionTable/cefFESelectionEntry/cefFESelectionAdjNextHopAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFESelectionTable",
                    "cefFESelectionEntry",
                    "cefFESelectionAdjNextHopAddrType"
                  ]
                },
                "description": "Retrieve cefFESelectionAdjNextHopAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFESelectionAdjNextHopAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFESelectionTable/cefFESelectionEntry/cefFESelectionAdjNextHopAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFESelectionTable",
                    "cefFESelectionEntry",
                    "cefFESelectionAdjNextHopAddr"
                  ]
                },
                "description": "Retrieve cefFESelectionAdjNextHopAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFESelectionAdjConnId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFESelectionTable/cefFESelectionEntry/cefFESelectionAdjConnId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFESelectionTable",
                    "cefFESelectionEntry",
                    "cefFESelectionAdjConnId"
                  ]
                },
                "description": "Retrieve cefFESelectionAdjConnId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFESelectionVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFESelectionTable/cefFESelectionEntry/cefFESelectionVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFESelectionTable",
                    "cefFESelectionEntry",
                    "cefFESelectionVrfName"
                  ]
                },
                "description": "Retrieve cefFESelectionVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFESelectionWeight",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefFESelectionTable/cefFESelectionEntry/cefFESelectionWeight",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefFESelectionTable",
                    "cefFESelectionEntry",
                    "cefFESelectionWeight"
                  ]
                },
                "description": "Retrieve cefFESelectionWeight from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCfgTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCfgTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCfgTable"
                  ]
                },
                "description": "Retrieve cefCfgTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCfgEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCfgTable/cefCfgEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCfgTable",
                    "cefCfgEntry"
                  ]
                },
                "description": "Retrieve cefCfgEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCfgTable/cefCfgEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCfgTable",
                    "cefCfgEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFIBIpVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCfgTable/cefCfgEntry/cefFIBIpVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCfgTable",
                    "cefCfgEntry",
                    "cefFIBIpVersion"
                  ]
                },
                "description": "Retrieve cefFIBIpVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCfgAdminState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCfgTable/cefCfgEntry/cefCfgAdminState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCfgTable",
                    "cefCfgEntry",
                    "cefCfgAdminState"
                  ]
                },
                "description": "Retrieve cefCfgAdminState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCfgOperState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCfgTable/cefCfgEntry/cefCfgOperState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCfgTable",
                    "cefCfgEntry",
                    "cefCfgOperState"
                  ]
                },
                "description": "Retrieve cefCfgOperState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCfgDistributionAdminState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCfgTable/cefCfgEntry/cefCfgDistributionAdminState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCfgTable",
                    "cefCfgEntry",
                    "cefCfgDistributionAdminState"
                  ]
                },
                "description": "Retrieve cefCfgDistributionAdminState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCfgDistributionOperState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCfgTable/cefCfgEntry/cefCfgDistributionOperState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCfgTable",
                    "cefCfgEntry",
                    "cefCfgDistributionOperState"
                  ]
                },
                "description": "Retrieve cefCfgDistributionOperState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCfgAccountingMap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCfgTable/cefCfgEntry/cefCfgAccountingMap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCfgTable",
                    "cefCfgEntry",
                    "cefCfgAccountingMap"
                  ]
                },
                "description": "Retrieve cefCfgAccountingMap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCfgLoadSharingAlgorithm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCfgTable/cefCfgEntry/cefCfgLoadSharingAlgorithm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCfgTable",
                    "cefCfgEntry",
                    "cefCfgLoadSharingAlgorithm"
                  ]
                },
                "description": "Retrieve cefCfgLoadSharingAlgorithm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCfgLoadSharingID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCfgTable/cefCfgEntry/cefCfgLoadSharingID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCfgTable",
                    "cefCfgEntry",
                    "cefCfgLoadSharingID"
                  ]
                },
                "description": "Retrieve cefCfgLoadSharingID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCfgTrafficStatsLoadInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCfgTable/cefCfgEntry/cefCfgTrafficStatsLoadInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCfgTable",
                    "cefCfgEntry",
                    "cefCfgTrafficStatsLoadInterval"
                  ]
                },
                "description": "Retrieve cefCfgTrafficStatsLoadInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCfgTrafficStatsUpdateRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCfgTable/cefCfgEntry/cefCfgTrafficStatsUpdateRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCfgTable",
                    "cefCfgEntry",
                    "cefCfgTrafficStatsUpdateRate"
                  ]
                },
                "description": "Retrieve cefCfgTrafficStatsUpdateRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefResourceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefResourceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefResourceTable"
                  ]
                },
                "description": "Retrieve cefResourceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefResourceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefResourceTable/cefResourceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefResourceTable",
                    "cefResourceEntry"
                  ]
                },
                "description": "Retrieve cefResourceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefResourceTable/cefResourceEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefResourceTable",
                    "cefResourceEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefResourceMemoryUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefResourceTable/cefResourceEntry/cefResourceMemoryUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefResourceTable",
                    "cefResourceEntry",
                    "cefResourceMemoryUsed"
                  ]
                },
                "description": "Retrieve cefResourceMemoryUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefResourceFailureReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefResourceTable/cefResourceEntry/cefResourceFailureReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefResourceTable",
                    "cefResourceEntry",
                    "cefResourceFailureReason"
                  ]
                },
                "description": "Retrieve cefResourceFailureReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefIntTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefIntTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefIntTable"
                  ]
                },
                "description": "Retrieve cefIntTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefIntEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefIntTable/cefIntEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefIntTable",
                    "cefIntEntry"
                  ]
                },
                "description": "Retrieve cefIntEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefIntTable/cefIntEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefIntTable",
                    "cefIntEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFIBIpVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefIntTable/cefIntEntry/cefFIBIpVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefIntTable",
                    "cefIntEntry",
                    "cefFIBIpVersion"
                  ]
                },
                "description": "Retrieve cefFIBIpVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefIntTable/cefIntEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefIntTable",
                    "cefIntEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefIntSwitchingState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefIntTable/cefIntEntry/cefIntSwitchingState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefIntTable",
                    "cefIntEntry",
                    "cefIntSwitchingState"
                  ]
                },
                "description": "Retrieve cefIntSwitchingState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefIntLoadSharing",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefIntTable/cefIntEntry/cefIntLoadSharing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefIntTable",
                    "cefIntEntry",
                    "cefIntLoadSharing"
                  ]
                },
                "description": "Retrieve cefIntLoadSharing from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefIntNonrecursiveAccouting",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefIntTable/cefIntEntry/cefIntNonrecursiveAccouting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefIntTable",
                    "cefIntEntry",
                    "cefIntNonrecursiveAccouting"
                  ]
                },
                "description": "Retrieve cefIntNonrecursiveAccouting from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPeerTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPeerTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPeerTable"
                  ]
                },
                "description": "Retrieve cefPeerTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPeerEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPeerTable/cefPeerEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPeerTable",
                    "cefPeerEntry"
                  ]
                },
                "description": "Retrieve cefPeerEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPeerTable/cefPeerEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPeerTable",
                    "cefPeerEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPeerPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPeerTable/cefPeerEntry/entPeerPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPeerTable",
                    "cefPeerEntry",
                    "entPeerPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPeerPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPeerOperState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPeerTable/cefPeerEntry/cefPeerOperState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPeerTable",
                    "cefPeerEntry",
                    "cefPeerOperState"
                  ]
                },
                "description": "Retrieve cefPeerOperState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPeerNumberOfResets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPeerTable/cefPeerEntry/cefPeerNumberOfResets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPeerTable",
                    "cefPeerEntry",
                    "cefPeerNumberOfResets"
                  ]
                },
                "description": "Retrieve cefPeerNumberOfResets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPeerFIBTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPeerFIBTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPeerFIBTable"
                  ]
                },
                "description": "Retrieve cefPeerFIBTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPeerFIBEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPeerFIBTable/cefPeerFIBEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPeerFIBTable",
                    "cefPeerFIBEntry"
                  ]
                },
                "description": "Retrieve cefPeerFIBEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPeerFIBTable/cefPeerFIBEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPeerFIBTable",
                    "cefPeerFIBEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPeerPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPeerFIBTable/cefPeerFIBEntry/entPeerPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPeerFIBTable",
                    "cefPeerFIBEntry",
                    "entPeerPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPeerPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFIBIpVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPeerFIBTable/cefPeerFIBEntry/cefFIBIpVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPeerFIBTable",
                    "cefPeerFIBEntry",
                    "cefFIBIpVersion"
                  ]
                },
                "description": "Retrieve cefFIBIpVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPeerFIBOperState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefPeerFIBTable/cefPeerFIBEntry/cefPeerFIBOperState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefPeerFIBTable",
                    "cefPeerFIBEntry",
                    "cefPeerFIBOperState"
                  ]
                },
                "description": "Retrieve cefPeerFIBOperState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCGlobalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCGlobalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCGlobalTable"
                  ]
                },
                "description": "Retrieve cefCCGlobalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCGlobalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCGlobalTable/cefCCGlobalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCGlobalTable",
                    "cefCCGlobalEntry"
                  ]
                },
                "description": "Retrieve cefCCGlobalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFIBIpVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCGlobalTable/cefCCGlobalEntry/cefFIBIpVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCGlobalTable",
                    "cefCCGlobalEntry",
                    "cefFIBIpVersion"
                  ]
                },
                "description": "Retrieve cefFIBIpVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCGlobalAutoRepairEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCGlobalTable/cefCCGlobalEntry/cefCCGlobalAutoRepairEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCGlobalTable",
                    "cefCCGlobalEntry",
                    "cefCCGlobalAutoRepairEnabled"
                  ]
                },
                "description": "Retrieve cefCCGlobalAutoRepairEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCGlobalAutoRepairDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCGlobalTable/cefCCGlobalEntry/cefCCGlobalAutoRepairDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCGlobalTable",
                    "cefCCGlobalEntry",
                    "cefCCGlobalAutoRepairDelay"
                  ]
                },
                "description": "Retrieve cefCCGlobalAutoRepairDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCGlobalAutoRepairHoldDown",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCGlobalTable/cefCCGlobalEntry/cefCCGlobalAutoRepairHoldDown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCGlobalTable",
                    "cefCCGlobalEntry",
                    "cefCCGlobalAutoRepairHoldDown"
                  ]
                },
                "description": "Retrieve cefCCGlobalAutoRepairHoldDown from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCGlobalErrorMsgEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCGlobalTable/cefCCGlobalEntry/cefCCGlobalErrorMsgEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCGlobalTable",
                    "cefCCGlobalEntry",
                    "cefCCGlobalErrorMsgEnabled"
                  ]
                },
                "description": "Retrieve cefCCGlobalErrorMsgEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCGlobalFullScanAction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCGlobalTable/cefCCGlobalEntry/cefCCGlobalFullScanAction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCGlobalTable",
                    "cefCCGlobalEntry",
                    "cefCCGlobalFullScanAction"
                  ]
                },
                "description": "Retrieve cefCCGlobalFullScanAction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCGlobalFullScanStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCGlobalTable/cefCCGlobalEntry/cefCCGlobalFullScanStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCGlobalTable",
                    "cefCCGlobalEntry",
                    "cefCCGlobalFullScanStatus"
                  ]
                },
                "description": "Retrieve cefCCGlobalFullScanStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCTypeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCTypeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCTypeTable"
                  ]
                },
                "description": "Retrieve cefCCTypeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCTypeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCTypeTable/cefCCTypeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCTypeTable",
                    "cefCCTypeEntry"
                  ]
                },
                "description": "Retrieve cefCCTypeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFIBIpVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCTypeTable/cefCCTypeEntry/cefFIBIpVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCTypeTable",
                    "cefCCTypeEntry",
                    "cefFIBIpVersion"
                  ]
                },
                "description": "Retrieve cefFIBIpVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCTypeTable/cefCCTypeEntry/cefCCType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCTypeTable",
                    "cefCCTypeEntry",
                    "cefCCType"
                  ]
                },
                "description": "Retrieve cefCCType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCTypeTable/cefCCTypeEntry/cefCCEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCTypeTable",
                    "cefCCTypeEntry",
                    "cefCCEnabled"
                  ]
                },
                "description": "Retrieve cefCCEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCTypeTable/cefCCTypeEntry/cefCCCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCTypeTable",
                    "cefCCTypeEntry",
                    "cefCCCount"
                  ]
                },
                "description": "Retrieve cefCCCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCPeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCTypeTable/cefCCTypeEntry/cefCCPeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCTypeTable",
                    "cefCCTypeEntry",
                    "cefCCPeriod"
                  ]
                },
                "description": "Retrieve cefCCPeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCQueriesSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCTypeTable/cefCCTypeEntry/cefCCQueriesSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCTypeTable",
                    "cefCCTypeEntry",
                    "cefCCQueriesSent"
                  ]
                },
                "description": "Retrieve cefCCQueriesSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCQueriesIgnored",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCTypeTable/cefCCTypeEntry/cefCCQueriesIgnored",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCTypeTable",
                    "cefCCTypeEntry",
                    "cefCCQueriesIgnored"
                  ]
                },
                "description": "Retrieve cefCCQueriesIgnored from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCQueriesChecked",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCTypeTable/cefCCTypeEntry/cefCCQueriesChecked",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCTypeTable",
                    "cefCCTypeEntry",
                    "cefCCQueriesChecked"
                  ]
                },
                "description": "Retrieve cefCCQueriesChecked from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefCCQueriesIterated",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefCCTypeTable/cefCCTypeEntry/cefCCQueriesIterated",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefCCTypeTable",
                    "cefCCTypeEntry",
                    "cefCCQueriesIterated"
                  ]
                },
                "description": "Retrieve cefCCQueriesIterated from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefInconsistencyRecordTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefInconsistencyRecordTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefInconsistencyRecordTable"
                  ]
                },
                "description": "Retrieve cefInconsistencyRecordTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefInconsistencyRecordEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefInconsistencyRecordTable/cefInconsistencyRecordEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefInconsistencyRecordTable",
                    "cefInconsistencyRecordEntry"
                  ]
                },
                "description": "Retrieve cefInconsistencyRecordEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFIBIpVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefInconsistencyRecordTable/cefInconsistencyRecordEntry/cefFIBIpVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefInconsistencyRecordTable",
                    "cefInconsistencyRecordEntry",
                    "cefFIBIpVersion"
                  ]
                },
                "description": "Retrieve cefFIBIpVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefInconsistencyRecId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefInconsistencyRecordTable/cefInconsistencyRecordEntry/cefInconsistencyRecId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefInconsistencyRecordTable",
                    "cefInconsistencyRecordEntry",
                    "cefInconsistencyRecId"
                  ]
                },
                "description": "Retrieve cefInconsistencyRecId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefInconsistencyPrefixType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefInconsistencyRecordTable/cefInconsistencyRecordEntry/cefInconsistencyPrefixType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefInconsistencyRecordTable",
                    "cefInconsistencyRecordEntry",
                    "cefInconsistencyPrefixType"
                  ]
                },
                "description": "Retrieve cefInconsistencyPrefixType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefInconsistencyPrefixAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefInconsistencyRecordTable/cefInconsistencyRecordEntry/cefInconsistencyPrefixAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefInconsistencyRecordTable",
                    "cefInconsistencyRecordEntry",
                    "cefInconsistencyPrefixAddr"
                  ]
                },
                "description": "Retrieve cefInconsistencyPrefixAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefInconsistencyPrefixLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefInconsistencyRecordTable/cefInconsistencyRecordEntry/cefInconsistencyPrefixLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefInconsistencyRecordTable",
                    "cefInconsistencyRecordEntry",
                    "cefInconsistencyPrefixLen"
                  ]
                },
                "description": "Retrieve cefInconsistencyPrefixLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefInconsistencyVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefInconsistencyRecordTable/cefInconsistencyRecordEntry/cefInconsistencyVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefInconsistencyRecordTable",
                    "cefInconsistencyRecordEntry",
                    "cefInconsistencyVrfName"
                  ]
                },
                "description": "Retrieve cefInconsistencyVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefInconsistencyCCType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefInconsistencyRecordTable/cefInconsistencyRecordEntry/cefInconsistencyCCType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefInconsistencyRecordTable",
                    "cefInconsistencyRecordEntry",
                    "cefInconsistencyCCType"
                  ]
                },
                "description": "Retrieve cefInconsistencyCCType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefInconsistencyEntity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefInconsistencyRecordTable/cefInconsistencyRecordEntry/cefInconsistencyEntity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefInconsistencyRecordTable",
                    "cefInconsistencyRecordEntry",
                    "cefInconsistencyEntity"
                  ]
                },
                "description": "Retrieve cefInconsistencyEntity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefInconsistencyReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefInconsistencyRecordTable/cefInconsistencyRecordEntry/cefInconsistencyReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefInconsistencyRecordTable",
                    "cefInconsistencyRecordEntry",
                    "cefInconsistencyReason"
                  ]
                },
                "description": "Retrieve cefInconsistencyReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefStatsPrefixLenTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefStatsPrefixLenTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefStatsPrefixLenTable"
                  ]
                },
                "description": "Retrieve cefStatsPrefixLenTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefStatsPrefixLenEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefStatsPrefixLenTable/cefStatsPrefixLenEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefStatsPrefixLenTable",
                    "cefStatsPrefixLenEntry"
                  ]
                },
                "description": "Retrieve cefStatsPrefixLenEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefStatsPrefixLenTable/cefStatsPrefixLenEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefStatsPrefixLenTable",
                    "cefStatsPrefixLenEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFIBIpVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefStatsPrefixLenTable/cefStatsPrefixLenEntry/cefFIBIpVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefStatsPrefixLenTable",
                    "cefStatsPrefixLenEntry",
                    "cefFIBIpVersion"
                  ]
                },
                "description": "Retrieve cefFIBIpVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefStatsPrefixLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefStatsPrefixLenTable/cefStatsPrefixLenEntry/cefStatsPrefixLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefStatsPrefixLenTable",
                    "cefStatsPrefixLenEntry",
                    "cefStatsPrefixLen"
                  ]
                },
                "description": "Retrieve cefStatsPrefixLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefStatsPrefixQueries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefStatsPrefixLenTable/cefStatsPrefixLenEntry/cefStatsPrefixQueries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefStatsPrefixLenTable",
                    "cefStatsPrefixLenEntry",
                    "cefStatsPrefixQueries"
                  ]
                },
                "description": "Retrieve cefStatsPrefixQueries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefStatsPrefixHCQueries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefStatsPrefixLenTable/cefStatsPrefixLenEntry/cefStatsPrefixHCQueries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefStatsPrefixLenTable",
                    "cefStatsPrefixLenEntry",
                    "cefStatsPrefixHCQueries"
                  ]
                },
                "description": "Retrieve cefStatsPrefixHCQueries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefStatsPrefixInserts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefStatsPrefixLenTable/cefStatsPrefixLenEntry/cefStatsPrefixInserts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefStatsPrefixLenTable",
                    "cefStatsPrefixLenEntry",
                    "cefStatsPrefixInserts"
                  ]
                },
                "description": "Retrieve cefStatsPrefixInserts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefStatsPrefixHCInserts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefStatsPrefixLenTable/cefStatsPrefixLenEntry/cefStatsPrefixHCInserts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefStatsPrefixLenTable",
                    "cefStatsPrefixLenEntry",
                    "cefStatsPrefixHCInserts"
                  ]
                },
                "description": "Retrieve cefStatsPrefixHCInserts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefStatsPrefixDeletes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefStatsPrefixLenTable/cefStatsPrefixLenEntry/cefStatsPrefixDeletes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefStatsPrefixLenTable",
                    "cefStatsPrefixLenEntry",
                    "cefStatsPrefixDeletes"
                  ]
                },
                "description": "Retrieve cefStatsPrefixDeletes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefStatsPrefixHCDeletes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefStatsPrefixLenTable/cefStatsPrefixLenEntry/cefStatsPrefixHCDeletes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefStatsPrefixLenTable",
                    "cefStatsPrefixLenEntry",
                    "cefStatsPrefixHCDeletes"
                  ]
                },
                "description": "Retrieve cefStatsPrefixHCDeletes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefStatsPrefixElements",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefStatsPrefixLenTable/cefStatsPrefixLenEntry/cefStatsPrefixElements",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefStatsPrefixLenTable",
                    "cefStatsPrefixLenEntry",
                    "cefStatsPrefixElements"
                  ]
                },
                "description": "Retrieve cefStatsPrefixElements from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefStatsPrefixHCElements",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefStatsPrefixLenTable/cefStatsPrefixLenEntry/cefStatsPrefixHCElements",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefStatsPrefixLenTable",
                    "cefStatsPrefixLenEntry",
                    "cefStatsPrefixHCElements"
                  ]
                },
                "description": "Retrieve cefStatsPrefixHCElements from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefSwitchingStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable"
                  ]
                },
                "description": "Retrieve cefSwitchingStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefSwitchingStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/cefSwitchingStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "cefSwitchingStatsEntry"
                  ]
                },
                "description": "Retrieve cefSwitchingStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/cefSwitchingStatsEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "cefSwitchingStatsEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFIBIpVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/cefSwitchingStatsEntry/cefFIBIpVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "cefSwitchingStatsEntry",
                    "cefFIBIpVersion"
                  ]
                },
                "description": "Retrieve cefFIBIpVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefSwitchingIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/cefSwitchingStatsEntry/cefSwitchingIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "cefSwitchingStatsEntry",
                    "cefSwitchingIndex"
                  ]
                },
                "description": "Retrieve cefSwitchingIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefSwitchingPath",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/cefSwitchingStatsEntry/cefSwitchingPath",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "cefSwitchingStatsEntry",
                    "cefSwitchingPath"
                  ]
                },
                "description": "Retrieve cefSwitchingPath from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefSwitchingDrop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/cefSwitchingStatsEntry/cefSwitchingDrop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "cefSwitchingStatsEntry",
                    "cefSwitchingDrop"
                  ]
                },
                "description": "Retrieve cefSwitchingDrop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefSwitchingHCDrop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/cefSwitchingStatsEntry/cefSwitchingHCDrop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "cefSwitchingStatsEntry",
                    "cefSwitchingHCDrop"
                  ]
                },
                "description": "Retrieve cefSwitchingHCDrop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefSwitchingPunt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/cefSwitchingStatsEntry/cefSwitchingPunt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "cefSwitchingStatsEntry",
                    "cefSwitchingPunt"
                  ]
                },
                "description": "Retrieve cefSwitchingPunt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefSwitchingHCPunt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/cefSwitchingStatsEntry/cefSwitchingHCPunt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "cefSwitchingStatsEntry",
                    "cefSwitchingHCPunt"
                  ]
                },
                "description": "Retrieve cefSwitchingHCPunt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefSwitchingPunt2Host",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/cefSwitchingStatsEntry/cefSwitchingPunt2Host",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "cefSwitchingStatsEntry",
                    "cefSwitchingPunt2Host"
                  ]
                },
                "description": "Retrieve cefSwitchingPunt2Host from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefSwitchingHCPunt2Host",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/cefSwitchingStatsEntry/cefSwitchingHCPunt2Host",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "cefSwitchingStatsEntry",
                    "cefSwitchingHCPunt2Host"
                  ]
                },
                "description": "Retrieve cefSwitchingHCPunt2Host from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/object-1/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "object-1",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefResourceFailureReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/object-1/cefResourceFailureReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "object-1",
                    "cefResourceFailureReason"
                  ]
                },
                "description": "Retrieve cefResourceFailureReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPeerPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/object-1/entPeerPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "object-1",
                    "entPeerPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPeerPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPeerOperState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/object-1/cefPeerOperState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "object-1",
                    "cefPeerOperState"
                  ]
                },
                "description": "Retrieve cefPeerOperState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefFIBIpVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/object-1/cefFIBIpVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "object-1",
                    "cefFIBIpVersion"
                  ]
                },
                "description": "Retrieve cefFIBIpVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefPeerFIBOperState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/object-1/cefPeerFIBOperState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "object-1",
                    "cefPeerFIBOperState"
                  ]
                },
                "description": "Retrieve cefPeerFIBOperState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entLastInconsistencyDetectTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CEF-MIB:CISCO-CEF-MIB/cefSwitchingStatsTable/object-1/entLastInconsistencyDetectTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CEF-MIB:CISCO-CEF-MIB",
                    "cefSwitchingStatsTable",
                    "object-1",
                    "entLastInconsistencyDetectTime"
                  ]
                },
                "description": "Retrieve entLastInconsistencyDetectTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-CONFIG-COPY-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-CONFIG-COPY-MIB\n\nMIB data from `CISCO-CONFIG-COPY-MIB` module.\n\n**Root containers:** 1 (CISCO-CONFIG-COPY-MIB)\n**Paths:** 43 | **Descendants:** 42\n\nAll endpoints are read-only (GET).\n\nEndpoints: 43 | Operations: 43",
          "item": [
            {
              "name": "GET Get CISCO-CONFIG-COPY-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB"
                  ]
                },
                "description": "Retrieve CISCO-CONFIG-COPY-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable"
                  ]
                },
                "description": "Retrieve ccCopyTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable/ccCopyEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable",
                    "ccCopyEntry"
                  ]
                },
                "description": "Retrieve ccCopyEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable/ccCopyEntry/ccCopyIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable",
                    "ccCopyEntry",
                    "ccCopyIndex"
                  ]
                },
                "description": "Retrieve ccCopyIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable/ccCopyEntry/ccCopyProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable",
                    "ccCopyEntry",
                    "ccCopyProtocol"
                  ]
                },
                "description": "Retrieve ccCopyProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopySourceFileType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable/ccCopyEntry/ccCopySourceFileType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable",
                    "ccCopyEntry",
                    "ccCopySourceFileType"
                  ]
                },
                "description": "Retrieve ccCopySourceFileType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyDestFileType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable/ccCopyEntry/ccCopyDestFileType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable",
                    "ccCopyEntry",
                    "ccCopyDestFileType"
                  ]
                },
                "description": "Retrieve ccCopyDestFileType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyFileName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable/ccCopyEntry/ccCopyFileName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable",
                    "ccCopyEntry",
                    "ccCopyFileName"
                  ]
                },
                "description": "Retrieve ccCopyFileName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyUserName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable/ccCopyEntry/ccCopyUserName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable",
                    "ccCopyEntry",
                    "ccCopyUserName"
                  ]
                },
                "description": "Retrieve ccCopyUserName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyUserPassword",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable/ccCopyEntry/ccCopyUserPassword",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable",
                    "ccCopyEntry",
                    "ccCopyUserPassword"
                  ]
                },
                "description": "Retrieve ccCopyUserPassword from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyNotificationOnCompletion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable/ccCopyEntry/ccCopyNotificationOnCompletion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable",
                    "ccCopyEntry",
                    "ccCopyNotificationOnCompletion"
                  ]
                },
                "description": "Retrieve ccCopyNotificationOnCompletion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable/ccCopyEntry/ccCopyState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable",
                    "ccCopyEntry",
                    "ccCopyState"
                  ]
                },
                "description": "Retrieve ccCopyState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyTimeStarted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable/ccCopyEntry/ccCopyTimeStarted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable",
                    "ccCopyEntry",
                    "ccCopyTimeStarted"
                  ]
                },
                "description": "Retrieve ccCopyTimeStarted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyTimeCompleted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable/ccCopyEntry/ccCopyTimeCompleted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable",
                    "ccCopyEntry",
                    "ccCopyTimeCompleted"
                  ]
                },
                "description": "Retrieve ccCopyTimeCompleted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyFailCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable/ccCopyEntry/ccCopyFailCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable",
                    "ccCopyEntry",
                    "ccCopyFailCause"
                  ]
                },
                "description": "Retrieve ccCopyFailCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyEntryRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable/ccCopyEntry/ccCopyEntryRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable",
                    "ccCopyEntry",
                    "ccCopyEntryRowStatus"
                  ]
                },
                "description": "Retrieve ccCopyEntryRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyServerAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable/ccCopyEntry/ccCopyServerAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable",
                    "ccCopyEntry",
                    "ccCopyServerAddressType"
                  ]
                },
                "description": "Retrieve ccCopyServerAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyServerAddressRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyTable/ccCopyEntry/ccCopyServerAddressRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyTable",
                    "ccCopyEntry",
                    "ccCopyServerAddressRev1"
                  ]
                },
                "description": "Retrieve ccCopyServerAddressRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyErrorTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable"
                  ]
                },
                "description": "Retrieve ccCopyErrorTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyErrorEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/ccCopyErrorEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "ccCopyErrorEntry"
                  ]
                },
                "description": "Retrieve ccCopyErrorEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/ccCopyErrorEntry/ccCopyIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "ccCopyErrorEntry",
                    "ccCopyIndex"
                  ]
                },
                "description": "Retrieve ccCopyIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyErrorIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/ccCopyErrorEntry/ccCopyErrorIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "ccCopyErrorEntry",
                    "ccCopyErrorIndex"
                  ]
                },
                "description": "Retrieve ccCopyErrorIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyErrorDeviceIpAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/ccCopyErrorEntry/ccCopyErrorDeviceIpAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "ccCopyErrorEntry",
                    "ccCopyErrorDeviceIpAddressType"
                  ]
                },
                "description": "Retrieve ccCopyErrorDeviceIpAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyErrorDeviceIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/ccCopyErrorEntry/ccCopyErrorDeviceIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "ccCopyErrorEntry",
                    "ccCopyErrorDeviceIpAddress"
                  ]
                },
                "description": "Retrieve ccCopyErrorDeviceIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyErrorDeviceWWN",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/ccCopyErrorEntry/ccCopyErrorDeviceWWN",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "ccCopyErrorEntry",
                    "ccCopyErrorDeviceWWN"
                  ]
                },
                "description": "Retrieve ccCopyErrorDeviceWWN from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyErrorDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/ccCopyErrorEntry/ccCopyErrorDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "ccCopyErrorEntry",
                    "ccCopyErrorDescription"
                  ]
                },
                "description": "Retrieve ccCopyErrorDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-1/ccCopyIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-1",
                    "ccCopyIndex"
                  ]
                },
                "description": "Retrieve ccCopyIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-2/ccCopyIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-2",
                    "ccCopyIndex"
                  ]
                },
                "description": "Retrieve ccCopyIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyFileName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-2/ccCopyFileName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-2",
                    "ccCopyFileName"
                  ]
                },
                "description": "Retrieve ccCopyFileName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-3/ccCopyIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-3",
                    "ccCopyIndex"
                  ]
                },
                "description": "Retrieve ccCopyIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-3/ccCopyState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-3",
                    "ccCopyState"
                  ]
                },
                "description": "Retrieve ccCopyState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-4/ccCopyIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-4",
                    "ccCopyIndex"
                  ]
                },
                "description": "Retrieve ccCopyIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyTimeStarted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-4/ccCopyTimeStarted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-4",
                    "ccCopyTimeStarted"
                  ]
                },
                "description": "Retrieve ccCopyTimeStarted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-5/ccCopyIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-5",
                    "ccCopyIndex"
                  ]
                },
                "description": "Retrieve ccCopyIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyTimeCompleted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-5/ccCopyTimeCompleted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-5",
                    "ccCopyTimeCompleted"
                  ]
                },
                "description": "Retrieve ccCopyTimeCompleted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-6"
                  ]
                },
                "description": "Retrieve object-6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-6/ccCopyIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-6",
                    "ccCopyIndex"
                  ]
                },
                "description": "Retrieve ccCopyIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccCopyFailCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB/ccCopyErrorTable/object-6/ccCopyFailCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-COPY-MIB:CISCO-CONFIG-COPY-MIB",
                    "ccCopyErrorTable",
                    "object-6",
                    "ccCopyFailCause"
                  ]
                },
                "description": "Retrieve ccCopyFailCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-CONFIG-MAN-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-CONFIG-MAN-MIB\n\nMIB data from `CISCO-CONFIG-MAN-MIB` module.\n\n**Root containers:** 1 (CISCO-CONFIG-MAN-MIB)\n**Paths:** 53 | **Descendants:** 55\n\nAll endpoints are read-only (GET).\n\nEndpoints: 53 | Operations: 53",
          "item": [
            {
              "name": "GET Get CISCO-CONFIG-MAN-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB"
                  ]
                },
                "description": "Retrieve CISCO-CONFIG-MAN-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistory",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistory",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistory"
                  ]
                },
                "description": "Retrieve ccmHistory from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryRunningLastChanged",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistory/ccmHistoryRunningLastChanged",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistory",
                    "ccmHistoryRunningLastChanged"
                  ]
                },
                "description": "Retrieve ccmHistoryRunningLastChanged from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryRunningLastSaved",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistory/ccmHistoryRunningLastSaved",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistory",
                    "ccmHistoryRunningLastSaved"
                  ]
                },
                "description": "Retrieve ccmHistoryRunningLastSaved from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryStartupLastChanged",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistory/ccmHistoryStartupLastChanged",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistory",
                    "ccmHistoryStartupLastChanged"
                  ]
                },
                "description": "Retrieve ccmHistoryStartupLastChanged from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryMaxEventEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistory/ccmHistoryMaxEventEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistory",
                    "ccmHistoryMaxEventEntries"
                  ]
                },
                "description": "Retrieve ccmHistoryMaxEventEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventEntriesBumped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistory/ccmHistoryEventEntriesBumped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistory",
                    "ccmHistoryEventEntriesBumped"
                  ]
                },
                "description": "Retrieve ccmHistoryEventEntriesBumped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmCLIHistory",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistory",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistory"
                  ]
                },
                "description": "Retrieve ccmCLIHistory from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmCLIHistoryMaxCmdEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistory/ccmCLIHistoryMaxCmdEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistory",
                    "ccmCLIHistoryMaxCmdEntries"
                  ]
                },
                "description": "Retrieve ccmCLIHistoryMaxCmdEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmCLIHistoryCmdEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistory/ccmCLIHistoryCmdEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistory",
                    "ccmCLIHistoryCmdEntries"
                  ]
                },
                "description": "Retrieve ccmCLIHistoryCmdEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmCLIHistoryCmdEntriesAllowed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistory/ccmCLIHistoryCmdEntriesAllowed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistory",
                    "ccmCLIHistoryCmdEntriesAllowed"
                  ]
                },
                "description": "Retrieve ccmCLIHistoryCmdEntriesAllowed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmCLICfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLICfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLICfg"
                  ]
                },
                "description": "Retrieve ccmCLICfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmCLICfgRunConfNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLICfg/ccmCLICfgRunConfNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLICfg",
                    "ccmCLICfgRunConfNotifEnable"
                  ]
                },
                "description": "Retrieve ccmCLICfgRunConfNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmCTIDObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCTIDObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCTIDObjects"
                  ]
                },
                "description": "Retrieve ccmCTIDObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmCTID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCTIDObjects/ccmCTID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCTIDObjects",
                    "ccmCTID"
                  ]
                },
                "description": "Retrieve ccmCTID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmCTIDLastChangeTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCTIDObjects/ccmCTIDLastChangeTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCTIDObjects",
                    "ccmCTIDLastChangeTime"
                  ]
                },
                "description": "Retrieve ccmCTIDLastChangeTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmCTIDWhoChanged",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCTIDObjects/ccmCTIDWhoChanged",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCTIDObjects",
                    "ccmCTIDWhoChanged"
                  ]
                },
                "description": "Retrieve ccmCTIDWhoChanged from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmCTIDRolledOverNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCTIDObjects/ccmCTIDRolledOverNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCTIDObjects",
                    "ccmCTIDRolledOverNotifEnable"
                  ]
                },
                "description": "Retrieve ccmCTIDRolledOverNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable"
                  ]
                },
                "description": "Retrieve ccmHistoryEventTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry"
                  ]
                },
                "description": "Retrieve ccmHistoryEventEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryEventIndex"
                  ]
                },
                "description": "Retrieve ccmHistoryEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryEventTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryEventTime"
                  ]
                },
                "description": "Retrieve ccmHistoryEventTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventCommandSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryEventCommandSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryEventCommandSource"
                  ]
                },
                "description": "Retrieve ccmHistoryEventCommandSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventConfigSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryEventConfigSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryEventConfigSource"
                  ]
                },
                "description": "Retrieve ccmHistoryEventConfigSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventConfigDestination",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryEventConfigDestination",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryEventConfigDestination"
                  ]
                },
                "description": "Retrieve ccmHistoryEventConfigDestination from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventTerminalType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryEventTerminalType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryEventTerminalType"
                  ]
                },
                "description": "Retrieve ccmHistoryEventTerminalType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventTerminalNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryEventTerminalNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryEventTerminalNumber"
                  ]
                },
                "description": "Retrieve ccmHistoryEventTerminalNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventTerminalUser",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryEventTerminalUser",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryEventTerminalUser"
                  ]
                },
                "description": "Retrieve ccmHistoryEventTerminalUser from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventTerminalLocation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryEventTerminalLocation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryEventTerminalLocation"
                  ]
                },
                "description": "Retrieve ccmHistoryEventTerminalLocation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventVirtualHostName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryEventVirtualHostName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryEventVirtualHostName"
                  ]
                },
                "description": "Retrieve ccmHistoryEventVirtualHostName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventFile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryEventFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryEventFile"
                  ]
                },
                "description": "Retrieve ccmHistoryEventFile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventRcpUser",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryEventRcpUser",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryEventRcpUser"
                  ]
                },
                "description": "Retrieve ccmHistoryEventRcpUser from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryCLICmdEntriesBumped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryCLICmdEntriesBumped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryCLICmdEntriesBumped"
                  ]
                },
                "description": "Retrieve ccmHistoryCLICmdEntriesBumped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventCommandSourceAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryEventCommandSourceAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryEventCommandSourceAddrType"
                  ]
                },
                "description": "Retrieve ccmHistoryEventCommandSourceAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventCommandSourceAddrRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryEventCommandSourceAddrRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryEventCommandSourceAddrRev1"
                  ]
                },
                "description": "Retrieve ccmHistoryEventCommandSourceAddrRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventServerAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryEventServerAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryEventServerAddrType"
                  ]
                },
                "description": "Retrieve ccmHistoryEventServerAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventServerAddrRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmHistoryEventTable/ccmHistoryEventEntry/ccmHistoryEventServerAddrRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmHistoryEventTable",
                    "ccmHistoryEventEntry",
                    "ccmHistoryEventServerAddrRev1"
                  ]
                },
                "description": "Retrieve ccmHistoryEventServerAddrRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmCLIHistoryCommandTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistoryCommandTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistoryCommandTable"
                  ]
                },
                "description": "Retrieve ccmCLIHistoryCommandTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmCLIHistoryCommandEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistoryCommandTable/ccmCLIHistoryCommandEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistoryCommandTable",
                    "ccmCLIHistoryCommandEntry"
                  ]
                },
                "description": "Retrieve ccmCLIHistoryCommandEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistoryCommandTable/ccmCLIHistoryCommandEntry/ccmHistoryEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistoryCommandTable",
                    "ccmCLIHistoryCommandEntry",
                    "ccmHistoryEventIndex"
                  ]
                },
                "description": "Retrieve ccmHistoryEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmCLIHistoryCommandIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistoryCommandTable/ccmCLIHistoryCommandEntry/ccmCLIHistoryCommandIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistoryCommandTable",
                    "ccmCLIHistoryCommandEntry",
                    "ccmCLIHistoryCommandIndex"
                  ]
                },
                "description": "Retrieve ccmCLIHistoryCommandIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmCLIHistoryCommand",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistoryCommandTable/ccmCLIHistoryCommandEntry/ccmCLIHistoryCommand",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistoryCommandTable",
                    "ccmCLIHistoryCommandEntry",
                    "ccmCLIHistoryCommand"
                  ]
                },
                "description": "Retrieve ccmCLIHistoryCommand from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistoryCommandTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistoryCommandTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistoryCommandTable/object-1/ccmHistoryEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistoryCommandTable",
                    "object-1",
                    "ccmHistoryEventIndex"
                  ]
                },
                "description": "Retrieve ccmHistoryEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventCommandSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistoryCommandTable/object-1/ccmHistoryEventCommandSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistoryCommandTable",
                    "object-1",
                    "ccmHistoryEventCommandSource"
                  ]
                },
                "description": "Retrieve ccmHistoryEventCommandSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistoryCommandTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistoryCommandTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistoryCommandTable/object-2/ccmHistoryEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistoryCommandTable",
                    "object-2",
                    "ccmHistoryEventIndex"
                  ]
                },
                "description": "Retrieve ccmHistoryEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventConfigSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistoryCommandTable/object-2/ccmHistoryEventConfigSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistoryCommandTable",
                    "object-2",
                    "ccmHistoryEventConfigSource"
                  ]
                },
                "description": "Retrieve ccmHistoryEventConfigSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistoryCommandTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistoryCommandTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistoryCommandTable/object-3/ccmHistoryEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistoryCommandTable",
                    "object-3",
                    "ccmHistoryEventIndex"
                  ]
                },
                "description": "Retrieve ccmHistoryEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventConfigDestination",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistoryCommandTable/object-3/ccmHistoryEventConfigDestination",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistoryCommandTable",
                    "object-3",
                    "ccmHistoryEventConfigDestination"
                  ]
                },
                "description": "Retrieve ccmHistoryEventConfigDestination from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryRunningLastChanged",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistoryCommandTable/object-1/ccmHistoryRunningLastChanged",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistoryCommandTable",
                    "object-1",
                    "ccmHistoryRunningLastChanged"
                  ]
                },
                "description": "Retrieve ccmHistoryRunningLastChanged from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccmHistoryEventTerminalType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB/ccmCLIHistoryCommandTable/object-2/ccmHistoryEventTerminalType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONFIG-MAN-MIB:CISCO-CONFIG-MAN-MIB",
                    "ccmCLIHistoryCommandTable",
                    "object-2",
                    "ccmHistoryEventTerminalType"
                  ]
                },
                "description": "Retrieve ccmHistoryEventTerminalType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-CONTEXT-MAPPING-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-CONTEXT-MAPPING-MIB\n\nMIB data from `CISCO-CONTEXT-MAPPING-MIB` module.\n\n**Root containers:** 1 (CISCO-CONTEXT-MAPPING-MIB)\n**Paths:** 27 | **Descendants:** 26\n\nAll endpoints are read-only (GET).\n\nEndpoints: 27 | Operations: 27",
          "item": [
            {
              "name": "GET Get CISCO-CONTEXT-MAPPING-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB"
                  ]
                },
                "description": "Retrieve CISCO-CONTEXT-MAPPING-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingTable"
                  ]
                },
                "description": "Retrieve cContextMappingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingTable/cContextMappingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingTable",
                    "cContextMappingEntry"
                  ]
                },
                "description": "Retrieve cContextMappingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingVacmContextName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingTable/cContextMappingEntry/cContextMappingVacmContextName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingTable",
                    "cContextMappingEntry",
                    "cContextMappingVacmContextName"
                  ]
                },
                "description": "Retrieve cContextMappingVacmContextName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingTable/cContextMappingEntry/cContextMappingVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingTable",
                    "cContextMappingEntry",
                    "cContextMappingVrfName"
                  ]
                },
                "description": "Retrieve cContextMappingVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingTopologyName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingTable/cContextMappingEntry/cContextMappingTopologyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingTable",
                    "cContextMappingEntry",
                    "cContextMappingTopologyName"
                  ]
                },
                "description": "Retrieve cContextMappingTopologyName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingProtoInstName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingTable/cContextMappingEntry/cContextMappingProtoInstName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingTable",
                    "cContextMappingEntry",
                    "cContextMappingProtoInstName"
                  ]
                },
                "description": "Retrieve cContextMappingProtoInstName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingTable/cContextMappingEntry/cContextMappingStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingTable",
                    "cContextMappingEntry",
                    "cContextMappingStorageType"
                  ]
                },
                "description": "Retrieve cContextMappingStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingTable/cContextMappingEntry/cContextMappingRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingTable",
                    "cContextMappingEntry",
                    "cContextMappingRowStatus"
                  ]
                },
                "description": "Retrieve cContextMappingRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingBridgeDomainTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingBridgeDomainTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingBridgeDomainTable"
                  ]
                },
                "description": "Retrieve cContextMappingBridgeDomainTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingBridgeDomainEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingBridgeDomainTable/cContextMappingBridgeDomainEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingBridgeDomainTable",
                    "cContextMappingBridgeDomainEntry"
                  ]
                },
                "description": "Retrieve cContextMappingBridgeDomainEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingVacmContextName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingBridgeDomainTable/cContextMappingBridgeDomainEntry/cContextMappingVacmContextName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingBridgeDomainTable",
                    "cContextMappingBridgeDomainEntry",
                    "cContextMappingVacmContextName"
                  ]
                },
                "description": "Retrieve cContextMappingVacmContextName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingBridgeDomainIdentifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingBridgeDomainTable/cContextMappingBridgeDomainEntry/cContextMappingBridgeDomainIdentifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingBridgeDomainTable",
                    "cContextMappingBridgeDomainEntry",
                    "cContextMappingBridgeDomainIdentifier"
                  ]
                },
                "description": "Retrieve cContextMappingBridgeDomainIdentifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingBridgeDomainStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingBridgeDomainTable/cContextMappingBridgeDomainEntry/cContextMappingBridgeDomainStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingBridgeDomainTable",
                    "cContextMappingBridgeDomainEntry",
                    "cContextMappingBridgeDomainStorageType"
                  ]
                },
                "description": "Retrieve cContextMappingBridgeDomainStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingBridgeDomainRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingBridgeDomainTable/cContextMappingBridgeDomainEntry/cContextMappingBridgeDomainRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingBridgeDomainTable",
                    "cContextMappingBridgeDomainEntry",
                    "cContextMappingBridgeDomainRowStatus"
                  ]
                },
                "description": "Retrieve cContextMappingBridgeDomainRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingBridgeInstanceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingBridgeInstanceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingBridgeInstanceTable"
                  ]
                },
                "description": "Retrieve cContextMappingBridgeInstanceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingBridgeInstanceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingBridgeInstanceTable/cContextMappingBridgeInstanceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingBridgeInstanceTable",
                    "cContextMappingBridgeInstanceEntry"
                  ]
                },
                "description": "Retrieve cContextMappingBridgeInstanceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingVacmContextName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingBridgeInstanceTable/cContextMappingBridgeInstanceEntry/cContextMappingVacmContextName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingBridgeInstanceTable",
                    "cContextMappingBridgeInstanceEntry",
                    "cContextMappingVacmContextName"
                  ]
                },
                "description": "Retrieve cContextMappingVacmContextName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingBridgeInstName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingBridgeInstanceTable/cContextMappingBridgeInstanceEntry/cContextMappingBridgeInstName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingBridgeInstanceTable",
                    "cContextMappingBridgeInstanceEntry",
                    "cContextMappingBridgeInstName"
                  ]
                },
                "description": "Retrieve cContextMappingBridgeInstName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingBridgeInstStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingBridgeInstanceTable/cContextMappingBridgeInstanceEntry/cContextMappingBridgeInstStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingBridgeInstanceTable",
                    "cContextMappingBridgeInstanceEntry",
                    "cContextMappingBridgeInstStorageType"
                  ]
                },
                "description": "Retrieve cContextMappingBridgeInstStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingBridgeInstRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingBridgeInstanceTable/cContextMappingBridgeInstanceEntry/cContextMappingBridgeInstRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingBridgeInstanceTable",
                    "cContextMappingBridgeInstanceEntry",
                    "cContextMappingBridgeInstRowStatus"
                  ]
                },
                "description": "Retrieve cContextMappingBridgeInstRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingLicenseGroupTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingLicenseGroupTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingLicenseGroupTable"
                  ]
                },
                "description": "Retrieve cContextMappingLicenseGroupTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingLicenseGroupEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingLicenseGroupTable/cContextMappingLicenseGroupEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingLicenseGroupTable",
                    "cContextMappingLicenseGroupEntry"
                  ]
                },
                "description": "Retrieve cContextMappingLicenseGroupEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingVacmContextName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingLicenseGroupTable/cContextMappingLicenseGroupEntry/cContextMappingVacmContextName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingLicenseGroupTable",
                    "cContextMappingLicenseGroupEntry",
                    "cContextMappingVacmContextName"
                  ]
                },
                "description": "Retrieve cContextMappingVacmContextName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingLicenseGroupName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingLicenseGroupTable/cContextMappingLicenseGroupEntry/cContextMappingLicenseGroupName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingLicenseGroupTable",
                    "cContextMappingLicenseGroupEntry",
                    "cContextMappingLicenseGroupName"
                  ]
                },
                "description": "Retrieve cContextMappingLicenseGroupName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingLicenseGroupStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingLicenseGroupTable/cContextMappingLicenseGroupEntry/cContextMappingLicenseGroupStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingLicenseGroupTable",
                    "cContextMappingLicenseGroupEntry",
                    "cContextMappingLicenseGroupStorageType"
                  ]
                },
                "description": "Retrieve cContextMappingLicenseGroupStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cContextMappingLicenseGroupRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB/cContextMappingLicenseGroupTable/cContextMappingLicenseGroupEntry/cContextMappingLicenseGroupRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-CONTEXT-MAPPING-MIB:CISCO-CONTEXT-MAPPING-MIB",
                    "cContextMappingLicenseGroupTable",
                    "cContextMappingLicenseGroupEntry",
                    "cContextMappingLicenseGroupRowStatus"
                  ]
                },
                "description": "Retrieve cContextMappingLicenseGroupRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-DATA-COLLECTION-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-DATA-COLLECTION-MIB\n\nMIB data from `CISCO-DATA-COLLECTION-MIB` module.\n\n**Root containers:** 1 (CISCO-DATA-COLLECTION-MIB)\n**Paths:** 81 | **Descendants:** 84\n\nAll endpoints are read-only (GET).\n\nEndpoints: 81 | Operations: 81",
          "item": [
            {
              "name": "GET Get CISCO-DATA-COLLECTION-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB"
                  ]
                },
                "description": "Retrieve CISCO-DATA-COLLECTION-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFile"
                  ]
                },
                "description": "Retrieve cdcVFile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFilePersistentStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFile/cdcVFilePersistentStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFile",
                    "cdcVFilePersistentStorage"
                  ]
                },
                "description": "Retrieve cdcVFilePersistentStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileMaxSizeHitsLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFile/cdcVFileMaxSizeHitsLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFile",
                    "cdcVFileMaxSizeHitsLimit"
                  ]
                },
                "description": "Retrieve cdcVFileMaxSizeHitsLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable"
                  ]
                },
                "description": "Retrieve cdcVFileTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable/cdcVFileEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable",
                    "cdcVFileEntry"
                  ]
                },
                "description": "Retrieve cdcVFileEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable/cdcVFileEntry/cdcVFileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable",
                    "cdcVFileEntry",
                    "cdcVFileIndex"
                  ]
                },
                "description": "Retrieve cdcVFileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable/cdcVFileEntry/cdcVFileName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable",
                    "cdcVFileEntry",
                    "cdcVFileName"
                  ]
                },
                "description": "Retrieve cdcVFileName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable/cdcVFileEntry/cdcVFileDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable",
                    "cdcVFileEntry",
                    "cdcVFileDescription"
                  ]
                },
                "description": "Retrieve cdcVFileDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileCommand",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable/cdcVFileEntry/cdcVFileCommand",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable",
                    "cdcVFileEntry",
                    "cdcVFileCommand"
                  ]
                },
                "description": "Retrieve cdcVFileCommand from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileMaxSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable/cdcVFileEntry/cdcVFileMaxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable",
                    "cdcVFileEntry",
                    "cdcVFileMaxSize"
                  ]
                },
                "description": "Retrieve cdcVFileMaxSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileCurrentSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable/cdcVFileEntry/cdcVFileCurrentSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable",
                    "cdcVFileEntry",
                    "cdcVFileCurrentSize"
                  ]
                },
                "description": "Retrieve cdcVFileCurrentSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileFormat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable/cdcVFileEntry/cdcVFileFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable",
                    "cdcVFileEntry",
                    "cdcVFileFormat"
                  ]
                },
                "description": "Retrieve cdcVFileFormat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileCollectMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable/cdcVFileEntry/cdcVFileCollectMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable",
                    "cdcVFileEntry",
                    "cdcVFileCollectMode"
                  ]
                },
                "description": "Retrieve cdcVFileCollectMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileCollectionPeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable/cdcVFileEntry/cdcVFileCollectionPeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable",
                    "cdcVFileEntry",
                    "cdcVFileCollectionPeriod"
                  ]
                },
                "description": "Retrieve cdcVFileCollectionPeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileRetentionPeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable/cdcVFileEntry/cdcVFileRetentionPeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable",
                    "cdcVFileEntry",
                    "cdcVFileRetentionPeriod"
                  ]
                },
                "description": "Retrieve cdcVFileRetentionPeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable/cdcVFileEntry/cdcVFileAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable",
                    "cdcVFileEntry",
                    "cdcVFileAdminStatus"
                  ]
                },
                "description": "Retrieve cdcVFileAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable/cdcVFileEntry/cdcVFileOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable",
                    "cdcVFileEntry",
                    "cdcVFileOperStatus"
                  ]
                },
                "description": "Retrieve cdcVFileOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileErrorCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable/cdcVFileEntry/cdcVFileErrorCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable",
                    "cdcVFileEntry",
                    "cdcVFileErrorCode"
                  ]
                },
                "description": "Retrieve cdcVFileErrorCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileCollectionErrorEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable/cdcVFileEntry/cdcVFileCollectionErrorEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable",
                    "cdcVFileEntry",
                    "cdcVFileCollectionErrorEnable"
                  ]
                },
                "description": "Retrieve cdcVFileCollectionErrorEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileTable/cdcVFileEntry/cdcVFileRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileTable",
                    "cdcVFileEntry",
                    "cdcVFileRowStatus"
                  ]
                },
                "description": "Retrieve cdcVFileRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileMgmtTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileMgmtTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileMgmtTable"
                  ]
                },
                "description": "Retrieve cdcVFileMgmtTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileMgmtEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileMgmtTable/cdcVFileMgmtEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileMgmtTable",
                    "cdcVFileMgmtEntry"
                  ]
                },
                "description": "Retrieve cdcVFileMgmtEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileMgmtTable/cdcVFileMgmtEntry/cdcVFileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileMgmtTable",
                    "cdcVFileMgmtEntry",
                    "cdcVFileIndex"
                  ]
                },
                "description": "Retrieve cdcVFileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileMgmtIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileMgmtTable/cdcVFileMgmtEntry/cdcVFileMgmtIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileMgmtTable",
                    "cdcVFileMgmtEntry",
                    "cdcVFileMgmtIndex"
                  ]
                },
                "description": "Retrieve cdcVFileMgmtIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileMgmtName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileMgmtTable/cdcVFileMgmtEntry/cdcVFileMgmtName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileMgmtTable",
                    "cdcVFileMgmtEntry",
                    "cdcVFileMgmtName"
                  ]
                },
                "description": "Retrieve cdcVFileMgmtName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileMgmtTimestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileMgmtTable/cdcVFileMgmtEntry/cdcVFileMgmtTimestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileMgmtTable",
                    "cdcVFileMgmtEntry",
                    "cdcVFileMgmtTimestamp"
                  ]
                },
                "description": "Retrieve cdcVFileMgmtTimestamp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileMgmtTimeToLive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileMgmtTable/cdcVFileMgmtEntry/cdcVFileMgmtTimeToLive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileMgmtTable",
                    "cdcVFileMgmtEntry",
                    "cdcVFileMgmtTimeToLive"
                  ]
                },
                "description": "Retrieve cdcVFileMgmtTimeToLive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileMgmtCommand",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileMgmtTable/cdcVFileMgmtEntry/cdcVFileMgmtCommand",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileMgmtTable",
                    "cdcVFileMgmtEntry",
                    "cdcVFileMgmtCommand"
                  ]
                },
                "description": "Retrieve cdcVFileMgmtCommand from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileMgmtXferURL",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileMgmtTable/cdcVFileMgmtEntry/cdcVFileMgmtXferURL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileMgmtTable",
                    "cdcVFileMgmtEntry",
                    "cdcVFileMgmtXferURL"
                  ]
                },
                "description": "Retrieve cdcVFileMgmtXferURL from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileMgmtLastXferStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileMgmtTable/cdcVFileMgmtEntry/cdcVFileMgmtLastXferStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileMgmtTable",
                    "cdcVFileMgmtEntry",
                    "cdcVFileMgmtLastXferStatus"
                  ]
                },
                "description": "Retrieve cdcVFileMgmtLastXferStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileMgmtLastXferURL",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcVFileMgmtTable/cdcVFileMgmtEntry/cdcVFileMgmtLastXferURL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcVFileMgmtTable",
                    "cdcVFileMgmtEntry",
                    "cdcVFileMgmtLastXferURL"
                  ]
                },
                "description": "Retrieve cdcVFileMgmtLastXferURL from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGTable"
                  ]
                },
                "description": "Retrieve cdcDGTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGTable/cdcDGEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGTable",
                    "cdcDGEntry"
                  ]
                },
                "description": "Retrieve cdcDGEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGTable/cdcDGEntry/cdcDGIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGTable",
                    "cdcDGEntry",
                    "cdcDGIndex"
                  ]
                },
                "description": "Retrieve cdcDGIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGComment",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGTable/cdcDGEntry/cdcDGComment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGTable",
                    "cdcDGEntry",
                    "cdcDGComment"
                  ]
                },
                "description": "Retrieve cdcDGComment from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGTable/cdcDGEntry/cdcDGType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGTable",
                    "cdcDGEntry",
                    "cdcDGType"
                  ]
                },
                "description": "Retrieve cdcDGType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGVFileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGTable/cdcDGEntry/cdcDGVFileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGTable",
                    "cdcDGEntry",
                    "cdcDGVFileIndex"
                  ]
                },
                "description": "Retrieve cdcDGVFileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGTargetTag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGTable/cdcDGEntry/cdcDGTargetTag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGTable",
                    "cdcDGEntry",
                    "cdcDGTargetTag"
                  ]
                },
                "description": "Retrieve cdcDGTargetTag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGContextName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGTable/cdcDGEntry/cdcDGContextName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGTable",
                    "cdcDGEntry",
                    "cdcDGContextName"
                  ]
                },
                "description": "Retrieve cdcDGContextName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGObject",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGTable/cdcDGEntry/cdcDGObject",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGTable",
                    "cdcDGEntry",
                    "cdcDGObject"
                  ]
                },
                "description": "Retrieve cdcDGObject from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGObjectGrpIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGTable/cdcDGEntry/cdcDGObjectGrpIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGTable",
                    "cdcDGEntry",
                    "cdcDGObjectGrpIndex"
                  ]
                },
                "description": "Retrieve cdcDGObjectGrpIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGInstGrpIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGTable/cdcDGEntry/cdcDGInstGrpIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGTable",
                    "cdcDGEntry",
                    "cdcDGInstGrpIndex"
                  ]
                },
                "description": "Retrieve cdcDGInstGrpIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGPollPeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGTable/cdcDGEntry/cdcDGPollPeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGTable",
                    "cdcDGEntry",
                    "cdcDGPollPeriod"
                  ]
                },
                "description": "Retrieve cdcDGPollPeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGTable/cdcDGEntry/cdcDGRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGTable",
                    "cdcDGEntry",
                    "cdcDGRowStatus"
                  ]
                },
                "description": "Retrieve cdcDGRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGBaseObjectTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGBaseObjectTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGBaseObjectTable"
                  ]
                },
                "description": "Retrieve cdcDGBaseObjectTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGBaseObjectEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGBaseObjectTable/cdcDGBaseObjectEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGBaseObjectTable",
                    "cdcDGBaseObjectEntry"
                  ]
                },
                "description": "Retrieve cdcDGBaseObjectEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGBaseObjectGrpIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGBaseObjectTable/cdcDGBaseObjectEntry/cdcDGBaseObjectGrpIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGBaseObjectTable",
                    "cdcDGBaseObjectEntry",
                    "cdcDGBaseObjectGrpIndex"
                  ]
                },
                "description": "Retrieve cdcDGBaseObjectGrpIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGBaseObjectIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGBaseObjectTable/cdcDGBaseObjectEntry/cdcDGBaseObjectIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGBaseObjectTable",
                    "cdcDGBaseObjectEntry",
                    "cdcDGBaseObjectIndex"
                  ]
                },
                "description": "Retrieve cdcDGBaseObjectIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGBaseObjectSubtree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGBaseObjectTable/cdcDGBaseObjectEntry/cdcDGBaseObjectSubtree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGBaseObjectTable",
                    "cdcDGBaseObjectEntry",
                    "cdcDGBaseObjectSubtree"
                  ]
                },
                "description": "Retrieve cdcDGBaseObjectSubtree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGBaseObjectList",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGBaseObjectTable/cdcDGBaseObjectEntry/cdcDGBaseObjectList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGBaseObjectTable",
                    "cdcDGBaseObjectEntry",
                    "cdcDGBaseObjectList"
                  ]
                },
                "description": "Retrieve cdcDGBaseObjectList from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGBaseObjectRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGBaseObjectTable/cdcDGBaseObjectEntry/cdcDGBaseObjectRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGBaseObjectTable",
                    "cdcDGBaseObjectEntry",
                    "cdcDGBaseObjectRowStatus"
                  ]
                },
                "description": "Retrieve cdcDGBaseObjectRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGInstanceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGInstanceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGInstanceTable"
                  ]
                },
                "description": "Retrieve cdcDGInstanceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGInstanceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGInstanceTable/cdcDGInstanceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGInstanceTable",
                    "cdcDGInstanceEntry"
                  ]
                },
                "description": "Retrieve cdcDGInstanceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGInstanceGrpIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGInstanceTable/cdcDGInstanceEntry/cdcDGInstanceGrpIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGInstanceTable",
                    "cdcDGInstanceEntry",
                    "cdcDGInstanceGrpIndex"
                  ]
                },
                "description": "Retrieve cdcDGInstanceGrpIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGInstanceTable/cdcDGInstanceEntry/cdcDGInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGInstanceTable",
                    "cdcDGInstanceEntry",
                    "cdcDGInstanceIndex"
                  ]
                },
                "description": "Retrieve cdcDGInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGInstanceType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGInstanceTable/cdcDGInstanceEntry/cdcDGInstanceType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGInstanceTable",
                    "cdcDGInstanceEntry",
                    "cdcDGInstanceType"
                  ]
                },
                "description": "Retrieve cdcDGInstanceType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGInstanceOid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGInstanceTable/cdcDGInstanceEntry/cdcDGInstanceOid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGInstanceTable",
                    "cdcDGInstanceEntry",
                    "cdcDGInstanceOid"
                  ]
                },
                "description": "Retrieve cdcDGInstanceOid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGInstanceOidEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGInstanceTable/cdcDGInstanceEntry/cdcDGInstanceOidEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGInstanceTable",
                    "cdcDGInstanceEntry",
                    "cdcDGInstanceOidEnd"
                  ]
                },
                "description": "Retrieve cdcDGInstanceOidEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGInstanceNumRepititions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGInstanceTable/cdcDGInstanceEntry/cdcDGInstanceNumRepititions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGInstanceTable",
                    "cdcDGInstanceEntry",
                    "cdcDGInstanceNumRepititions"
                  ]
                },
                "description": "Retrieve cdcDGInstanceNumRepititions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGInstanceOtherPtr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGInstanceTable/cdcDGInstanceEntry/cdcDGInstanceOtherPtr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGInstanceTable",
                    "cdcDGInstanceEntry",
                    "cdcDGInstanceOtherPtr"
                  ]
                },
                "description": "Retrieve cdcDGInstanceOtherPtr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcDGInstanceRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcDGInstanceTable/cdcDGInstanceEntry/cdcDGInstanceRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcDGInstanceTable",
                    "cdcDGInstanceEntry",
                    "cdcDGInstanceRowStatus"
                  ]
                },
                "description": "Retrieve cdcDGInstanceRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcFileXferConfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable"
                  ]
                },
                "description": "Retrieve cdcFileXferConfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcFileXferConfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/cdcFileXferConfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "cdcFileXferConfEntry"
                  ]
                },
                "description": "Retrieve cdcFileXferConfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/cdcFileXferConfEntry/cdcVFileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "cdcFileXferConfEntry",
                    "cdcVFileIndex"
                  ]
                },
                "description": "Retrieve cdcVFileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcFileXferConfPriUrl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/cdcFileXferConfEntry/cdcFileXferConfPriUrl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "cdcFileXferConfEntry",
                    "cdcFileXferConfPriUrl"
                  ]
                },
                "description": "Retrieve cdcFileXferConfPriUrl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcFileXferConfSecUrl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/cdcFileXferConfEntry/cdcFileXferConfSecUrl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "cdcFileXferConfEntry",
                    "cdcFileXferConfSecUrl"
                  ]
                },
                "description": "Retrieve cdcFileXferConfSecUrl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcFileXferConfRetryPeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/cdcFileXferConfEntry/cdcFileXferConfRetryPeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "cdcFileXferConfEntry",
                    "cdcFileXferConfRetryPeriod"
                  ]
                },
                "description": "Retrieve cdcFileXferConfRetryPeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcFileXferConfRetryCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/cdcFileXferConfEntry/cdcFileXferConfRetryCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "cdcFileXferConfEntry",
                    "cdcFileXferConfRetryCount"
                  ]
                },
                "description": "Retrieve cdcFileXferConfRetryCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcFileXferConfSuccessEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/cdcFileXferConfEntry/cdcFileXferConfSuccessEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "cdcFileXferConfEntry",
                    "cdcFileXferConfSuccessEnable"
                  ]
                },
                "description": "Retrieve cdcFileXferConfSuccessEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcFileXferConfFailureEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/cdcFileXferConfEntry/cdcFileXferConfFailureEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "cdcFileXferConfEntry",
                    "cdcFileXferConfFailureEnable"
                  ]
                },
                "description": "Retrieve cdcFileXferConfFailureEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/object-1/cdcVFileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "object-1",
                    "cdcVFileIndex"
                  ]
                },
                "description": "Retrieve cdcVFileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/object-1/cdcVFileName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "object-1",
                    "cdcVFileName"
                  ]
                },
                "description": "Retrieve cdcVFileName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/object-2/cdcVFileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "object-2",
                    "cdcVFileIndex"
                  ]
                },
                "description": "Retrieve cdcVFileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileErrorCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/object-2/cdcVFileErrorCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "object-2",
                    "cdcVFileErrorCode"
                  ]
                },
                "description": "Retrieve cdcVFileErrorCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileMgmtIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/object-1/cdcVFileMgmtIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "object-1",
                    "cdcVFileMgmtIndex"
                  ]
                },
                "description": "Retrieve cdcVFileMgmtIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileMgmtLastXferStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/object-1/cdcVFileMgmtLastXferStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "object-1",
                    "cdcVFileMgmtLastXferStatus"
                  ]
                },
                "description": "Retrieve cdcVFileMgmtLastXferStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileMgmtIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/object-2/cdcVFileMgmtIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "object-2",
                    "cdcVFileMgmtIndex"
                  ]
                },
                "description": "Retrieve cdcVFileMgmtIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdcVFileMgmtLastXferURL",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB/cdcFileXferConfTable/object-2/cdcVFileMgmtLastXferURL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DATA-COLLECTION-MIB:CISCO-DATA-COLLECTION-MIB",
                    "cdcFileXferConfTable",
                    "object-2",
                    "cdcVFileMgmtLastXferURL"
                  ]
                },
                "description": "Retrieve cdcVFileMgmtLastXferURL from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-DIAL-CONTROL-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-DIAL-CONTROL-MIB\n\nMIB data from `CISCO-DIAL-CONTROL-MIB` module.\n\n**Root containers:** 1 (CISCO-DIAL-CONTROL-MIB)\n**Paths:** 29 | **Descendants:** 28\n\nAll endpoints are read-only (GET).\n\nEndpoints: 29 | Operations: 29",
          "item": [
            {
              "name": "GET Get CISCO-DIAL-CONTROL-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB"
                  ]
                },
                "description": "Retrieve CISCO-DIAL-CONTROL-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPeerGlobalConfiguration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cPeerGlobalConfiguration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cPeerGlobalConfiguration"
                  ]
                },
                "description": "Retrieve cPeerGlobalConfiguration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPeerSearchType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cPeerGlobalConfiguration/cPeerSearchType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cPeerGlobalConfiguration",
                    "cPeerSearchType"
                  ]
                },
                "description": "Retrieve cPeerSearchType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable"
                  ]
                },
                "description": "Retrieve cCallHistoryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry"
                  ]
                },
                "description": "Retrieve cCallHistoryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistorySetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistorySetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistorySetupTime"
                  ]
                },
                "description": "Retrieve cCallHistorySetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryPeerAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryPeerAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryPeerAddress"
                  ]
                },
                "description": "Retrieve cCallHistoryPeerAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryPeerSubAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryPeerSubAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryPeerSubAddress"
                  ]
                },
                "description": "Retrieve cCallHistoryPeerSubAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryPeerId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryPeerId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryPeerId"
                  ]
                },
                "description": "Retrieve cCallHistoryPeerId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryPeerIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryPeerIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryPeerIfIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryPeerIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryLogicalIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryLogicalIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryLogicalIfIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryLogicalIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryDisconnectCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryDisconnectCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryDisconnectCause"
                  ]
                },
                "description": "Retrieve cCallHistoryDisconnectCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryDisconnectText",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryDisconnectText",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryDisconnectText"
                  ]
                },
                "description": "Retrieve cCallHistoryDisconnectText from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryConnectTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryConnectTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryConnectTime"
                  ]
                },
                "description": "Retrieve cCallHistoryConnectTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryDisconnectTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryDisconnectTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryDisconnectTime"
                  ]
                },
                "description": "Retrieve cCallHistoryDisconnectTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryCallOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryCallOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryCallOrigin"
                  ]
                },
                "description": "Retrieve cCallHistoryCallOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryChargedUnits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryChargedUnits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryChargedUnits"
                  ]
                },
                "description": "Retrieve cCallHistoryChargedUnits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryInfoType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryInfoType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryInfoType"
                  ]
                },
                "description": "Retrieve cCallHistoryInfoType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryTransmitPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryTransmitPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryTransmitPackets"
                  ]
                },
                "description": "Retrieve cCallHistoryTransmitPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryTransmitBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryTransmitBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryTransmitBytes"
                  ]
                },
                "description": "Retrieve cCallHistoryTransmitBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryReceivePackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryReceivePackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryReceivePackets"
                  ]
                },
                "description": "Retrieve cCallHistoryReceivePackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryReceiveBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryReceiveBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryReceiveBytes"
                  ]
                },
                "description": "Retrieve cCallHistoryReceiveBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryReleaseSrc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryTable/cCallHistoryEntry/cCallHistoryReleaseSrc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryTable",
                    "cCallHistoryEntry",
                    "cCallHistoryReleaseSrc"
                  ]
                },
                "description": "Retrieve cCallHistoryReleaseSrc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIecTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryIecTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryIecTable"
                  ]
                },
                "description": "Retrieve cCallHistoryIecTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIecEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryIecTable/cCallHistoryIecEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryIecTable",
                    "cCallHistoryIecEntry"
                  ]
                },
                "description": "Retrieve cCallHistoryIecEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryIecTable/cCallHistoryIecEntry/cCallHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryIecTable",
                    "cCallHistoryIecEntry",
                    "cCallHistoryIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIecIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryIecTable/cCallHistoryIecEntry/cCallHistoryIecIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryIecTable",
                    "cCallHistoryIecEntry",
                    "cCallHistoryIecIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryIecIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIec",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB/cCallHistoryIecTable/cCallHistoryIecEntry/cCallHistoryIec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DIAL-CONTROL-MIB:CISCO-DIAL-CONTROL-MIB",
                    "cCallHistoryIecTable",
                    "cCallHistoryIecEntry",
                    "cCallHistoryIec"
                  ]
                },
                "description": "Retrieve cCallHistoryIec from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-DOT3-OAM-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-DOT3-OAM-MIB\n\nMIB data from `CISCO-DOT3-OAM-MIB` module.\n\n**Root containers:** 1 (CISCO-DOT3-OAM-MIB)\n**Paths:** 124 | **Descendants:** 142\n\nAll endpoints are read-only (GET).\n\nEndpoints: 124 | Operations: 124",
          "item": [
            {
              "name": "GET Get CISCO-DOT3-OAM-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB"
                  ]
                },
                "description": "Retrieve CISCO-DOT3-OAM-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamTable"
                  ]
                },
                "description": "Retrieve cdot3OamTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamTable/cdot3OamEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamTable",
                    "cdot3OamEntry"
                  ]
                },
                "description": "Retrieve cdot3OamEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamTable/cdot3OamEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamTable",
                    "cdot3OamEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamAdminState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamTable/cdot3OamEntry/cdot3OamAdminState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamTable",
                    "cdot3OamEntry",
                    "cdot3OamAdminState"
                  ]
                },
                "description": "Retrieve cdot3OamAdminState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamTable/cdot3OamEntry/cdot3OamOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamTable",
                    "cdot3OamEntry",
                    "cdot3OamOperStatus"
                  ]
                },
                "description": "Retrieve cdot3OamOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamTable/cdot3OamEntry/cdot3OamMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamTable",
                    "cdot3OamEntry",
                    "cdot3OamMode"
                  ]
                },
                "description": "Retrieve cdot3OamMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamMaxOamPduSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamTable/cdot3OamEntry/cdot3OamMaxOamPduSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamTable",
                    "cdot3OamEntry",
                    "cdot3OamMaxOamPduSize"
                  ]
                },
                "description": "Retrieve cdot3OamMaxOamPduSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamConfigRevision",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamTable/cdot3OamEntry/cdot3OamConfigRevision",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamTable",
                    "cdot3OamEntry",
                    "cdot3OamConfigRevision"
                  ]
                },
                "description": "Retrieve cdot3OamConfigRevision from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamFunctionsSupported",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamTable/cdot3OamEntry/cdot3OamFunctionsSupported",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamTable",
                    "cdot3OamEntry",
                    "cdot3OamFunctionsSupported"
                  ]
                },
                "description": "Retrieve cdot3OamFunctionsSupported from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamPeerTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamPeerTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamPeerTable"
                  ]
                },
                "description": "Retrieve cdot3OamPeerTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamPeerEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamPeerTable/cdot3OamPeerEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamPeerTable",
                    "cdot3OamPeerEntry"
                  ]
                },
                "description": "Retrieve cdot3OamPeerEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamPeerTable/cdot3OamPeerEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamPeerTable",
                    "cdot3OamPeerEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamPeerMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamPeerTable/cdot3OamPeerEntry/cdot3OamPeerMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamPeerTable",
                    "cdot3OamPeerEntry",
                    "cdot3OamPeerMacAddress"
                  ]
                },
                "description": "Retrieve cdot3OamPeerMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamPeerVendorOui",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamPeerTable/cdot3OamPeerEntry/cdot3OamPeerVendorOui",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamPeerTable",
                    "cdot3OamPeerEntry",
                    "cdot3OamPeerVendorOui"
                  ]
                },
                "description": "Retrieve cdot3OamPeerVendorOui from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamPeerVendorInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamPeerTable/cdot3OamPeerEntry/cdot3OamPeerVendorInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamPeerTable",
                    "cdot3OamPeerEntry",
                    "cdot3OamPeerVendorInfo"
                  ]
                },
                "description": "Retrieve cdot3OamPeerVendorInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamPeerMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamPeerTable/cdot3OamPeerEntry/cdot3OamPeerMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamPeerTable",
                    "cdot3OamPeerEntry",
                    "cdot3OamPeerMode"
                  ]
                },
                "description": "Retrieve cdot3OamPeerMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamPeerMaxOamPduSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamPeerTable/cdot3OamPeerEntry/cdot3OamPeerMaxOamPduSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamPeerTable",
                    "cdot3OamPeerEntry",
                    "cdot3OamPeerMaxOamPduSize"
                  ]
                },
                "description": "Retrieve cdot3OamPeerMaxOamPduSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamPeerConfigRevision",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamPeerTable/cdot3OamPeerEntry/cdot3OamPeerConfigRevision",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamPeerTable",
                    "cdot3OamPeerEntry",
                    "cdot3OamPeerConfigRevision"
                  ]
                },
                "description": "Retrieve cdot3OamPeerConfigRevision from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamPeerFunctionsSupported",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamPeerTable/cdot3OamPeerEntry/cdot3OamPeerFunctionsSupported",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamPeerTable",
                    "cdot3OamPeerEntry",
                    "cdot3OamPeerFunctionsSupported"
                  ]
                },
                "description": "Retrieve cdot3OamPeerFunctionsSupported from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamLoopbackTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamLoopbackTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamLoopbackTable"
                  ]
                },
                "description": "Retrieve cdot3OamLoopbackTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamLoopbackEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamLoopbackTable/cdot3OamLoopbackEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamLoopbackTable",
                    "cdot3OamLoopbackEntry"
                  ]
                },
                "description": "Retrieve cdot3OamLoopbackEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamLoopbackTable/cdot3OamLoopbackEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamLoopbackTable",
                    "cdot3OamLoopbackEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamLoopbackStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamLoopbackTable/cdot3OamLoopbackEntry/cdot3OamLoopbackStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamLoopbackTable",
                    "cdot3OamLoopbackEntry",
                    "cdot3OamLoopbackStatus"
                  ]
                },
                "description": "Retrieve cdot3OamLoopbackStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamLoopbackIgnoreRx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamLoopbackTable/cdot3OamLoopbackEntry/cdot3OamLoopbackIgnoreRx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamLoopbackTable",
                    "cdot3OamLoopbackEntry",
                    "cdot3OamLoopbackIgnoreRx"
                  ]
                },
                "description": "Retrieve cdot3OamLoopbackIgnoreRx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable"
                  ]
                },
                "description": "Retrieve cdot3OamStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry"
                  ]
                },
                "description": "Retrieve cdot3OamStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamInformationTx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamInformationTx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamInformationTx"
                  ]
                },
                "description": "Retrieve cdot3OamInformationTx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamInformationRx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamInformationRx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamInformationRx"
                  ]
                },
                "description": "Retrieve cdot3OamInformationRx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamUniqueEventNotificationTx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamUniqueEventNotificationTx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamUniqueEventNotificationTx"
                  ]
                },
                "description": "Retrieve cdot3OamUniqueEventNotificationTx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamUniqueEventNotificationRx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamUniqueEventNotificationRx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamUniqueEventNotificationRx"
                  ]
                },
                "description": "Retrieve cdot3OamUniqueEventNotificationRx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamDuplicateEventNotificationTx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamDuplicateEventNotificationTx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamDuplicateEventNotificationTx"
                  ]
                },
                "description": "Retrieve cdot3OamDuplicateEventNotificationTx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamDuplicateEventNotificationRx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamDuplicateEventNotificationRx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamDuplicateEventNotificationRx"
                  ]
                },
                "description": "Retrieve cdot3OamDuplicateEventNotificationRx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamLoopbackControlTx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamLoopbackControlTx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamLoopbackControlTx"
                  ]
                },
                "description": "Retrieve cdot3OamLoopbackControlTx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamLoopbackControlRx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamLoopbackControlRx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamLoopbackControlRx"
                  ]
                },
                "description": "Retrieve cdot3OamLoopbackControlRx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamVariableRequestTx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamVariableRequestTx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamVariableRequestTx"
                  ]
                },
                "description": "Retrieve cdot3OamVariableRequestTx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamVariableRequestRx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamVariableRequestRx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamVariableRequestRx"
                  ]
                },
                "description": "Retrieve cdot3OamVariableRequestRx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamVariableResponseTx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamVariableResponseTx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamVariableResponseTx"
                  ]
                },
                "description": "Retrieve cdot3OamVariableResponseTx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamVariableResponseRx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamVariableResponseRx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamVariableResponseRx"
                  ]
                },
                "description": "Retrieve cdot3OamVariableResponseRx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamOrgSpecificTx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamOrgSpecificTx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamOrgSpecificTx"
                  ]
                },
                "description": "Retrieve cdot3OamOrgSpecificTx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamOrgSpecificRx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamOrgSpecificRx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamOrgSpecificRx"
                  ]
                },
                "description": "Retrieve cdot3OamOrgSpecificRx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamUnsupportedCodesTx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamUnsupportedCodesTx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamUnsupportedCodesTx"
                  ]
                },
                "description": "Retrieve cdot3OamUnsupportedCodesTx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamUnsupportedCodesRx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamUnsupportedCodesRx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamUnsupportedCodesRx"
                  ]
                },
                "description": "Retrieve cdot3OamUnsupportedCodesRx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamFramesLostDueToOam",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamStatsTable/cdot3OamStatsEntry/cdot3OamFramesLostDueToOam",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamStatsTable",
                    "cdot3OamStatsEntry",
                    "cdot3OamFramesLostDueToOam"
                  ]
                },
                "description": "Retrieve cdot3OamFramesLostDueToOam from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable"
                  ]
                },
                "description": "Retrieve cdot3OamEventConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry"
                  ]
                },
                "description": "Retrieve cdot3OamEventConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamErrSymPeriodWindowHi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/cdot3OamErrSymPeriodWindowHi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "cdot3OamErrSymPeriodWindowHi"
                  ]
                },
                "description": "Retrieve cdot3OamErrSymPeriodWindowHi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamErrSymPeriodWindowLo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/cdot3OamErrSymPeriodWindowLo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "cdot3OamErrSymPeriodWindowLo"
                  ]
                },
                "description": "Retrieve cdot3OamErrSymPeriodWindowLo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamErrSymPeriodThresholdHi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/cdot3OamErrSymPeriodThresholdHi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "cdot3OamErrSymPeriodThresholdHi"
                  ]
                },
                "description": "Retrieve cdot3OamErrSymPeriodThresholdHi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamErrSymPeriodThresholdLo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/cdot3OamErrSymPeriodThresholdLo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "cdot3OamErrSymPeriodThresholdLo"
                  ]
                },
                "description": "Retrieve cdot3OamErrSymPeriodThresholdLo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamErrSymPeriodEvNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/cdot3OamErrSymPeriodEvNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "cdot3OamErrSymPeriodEvNotifEnable"
                  ]
                },
                "description": "Retrieve cdot3OamErrSymPeriodEvNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamErrFramePeriodWindow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/cdot3OamErrFramePeriodWindow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "cdot3OamErrFramePeriodWindow"
                  ]
                },
                "description": "Retrieve cdot3OamErrFramePeriodWindow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamErrFramePeriodThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/cdot3OamErrFramePeriodThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "cdot3OamErrFramePeriodThreshold"
                  ]
                },
                "description": "Retrieve cdot3OamErrFramePeriodThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamErrFramePeriodEvNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/cdot3OamErrFramePeriodEvNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "cdot3OamErrFramePeriodEvNotifEnable"
                  ]
                },
                "description": "Retrieve cdot3OamErrFramePeriodEvNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamErrFrameWindow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/cdot3OamErrFrameWindow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "cdot3OamErrFrameWindow"
                  ]
                },
                "description": "Retrieve cdot3OamErrFrameWindow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamErrFrameThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/cdot3OamErrFrameThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "cdot3OamErrFrameThreshold"
                  ]
                },
                "description": "Retrieve cdot3OamErrFrameThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamErrFrameEvNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/cdot3OamErrFrameEvNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "cdot3OamErrFrameEvNotifEnable"
                  ]
                },
                "description": "Retrieve cdot3OamErrFrameEvNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamErrFrameSecsSummaryWindow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/cdot3OamErrFrameSecsSummaryWindow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "cdot3OamErrFrameSecsSummaryWindow"
                  ]
                },
                "description": "Retrieve cdot3OamErrFrameSecsSummaryWindow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamErrFrameSecsSummaryThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/cdot3OamErrFrameSecsSummaryThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "cdot3OamErrFrameSecsSummaryThreshold"
                  ]
                },
                "description": "Retrieve cdot3OamErrFrameSecsSummaryThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamErrFrameSecsEvNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/cdot3OamErrFrameSecsEvNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "cdot3OamErrFrameSecsEvNotifEnable"
                  ]
                },
                "description": "Retrieve cdot3OamErrFrameSecsEvNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamDyingGaspEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/cdot3OamDyingGaspEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "cdot3OamDyingGaspEnable"
                  ]
                },
                "description": "Retrieve cdot3OamDyingGaspEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamCriticalEventEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventConfigTable/cdot3OamEventConfigEntry/cdot3OamCriticalEventEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventConfigTable",
                    "cdot3OamEventConfigEntry",
                    "cdot3OamCriticalEventEnable"
                  ]
                },
                "description": "Retrieve cdot3OamCriticalEventEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/cdot3OamEventLogEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "cdot3OamEventLogEntry"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/cdot3OamEventLogEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "cdot3OamEventLogEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/cdot3OamEventLogEntry/cdot3OamEventLogIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "cdot3OamEventLogEntry",
                    "cdot3OamEventLogIndex"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogTimestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/cdot3OamEventLogEntry/cdot3OamEventLogTimestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "cdot3OamEventLogEntry",
                    "cdot3OamEventLogTimestamp"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogTimestamp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogOui",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/cdot3OamEventLogEntry/cdot3OamEventLogOui",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "cdot3OamEventLogEntry",
                    "cdot3OamEventLogOui"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogOui from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/cdot3OamEventLogEntry/cdot3OamEventLogType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "cdot3OamEventLogEntry",
                    "cdot3OamEventLogType"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogLocation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/cdot3OamEventLogEntry/cdot3OamEventLogLocation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "cdot3OamEventLogEntry",
                    "cdot3OamEventLogLocation"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogLocation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogWindowHi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/cdot3OamEventLogEntry/cdot3OamEventLogWindowHi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "cdot3OamEventLogEntry",
                    "cdot3OamEventLogWindowHi"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogWindowHi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogWindowLo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/cdot3OamEventLogEntry/cdot3OamEventLogWindowLo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "cdot3OamEventLogEntry",
                    "cdot3OamEventLogWindowLo"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogWindowLo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogThresholdHi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/cdot3OamEventLogEntry/cdot3OamEventLogThresholdHi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "cdot3OamEventLogEntry",
                    "cdot3OamEventLogThresholdHi"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogThresholdHi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogThresholdLo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/cdot3OamEventLogEntry/cdot3OamEventLogThresholdLo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "cdot3OamEventLogEntry",
                    "cdot3OamEventLogThresholdLo"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogThresholdLo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/cdot3OamEventLogEntry/cdot3OamEventLogValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "cdot3OamEventLogEntry",
                    "cdot3OamEventLogValue"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogRunningTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/cdot3OamEventLogEntry/cdot3OamEventLogRunningTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "cdot3OamEventLogEntry",
                    "cdot3OamEventLogRunningTotal"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogRunningTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogEventTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/cdot3OamEventLogEntry/cdot3OamEventLogEventTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "cdot3OamEventLogEntry",
                    "cdot3OamEventLogEventTotal"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogEventTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-1/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-1",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-1/cdot3OamEventLogIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-1",
                    "cdot3OamEventLogIndex"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogTimestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-1/cdot3OamEventLogTimestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-1",
                    "cdot3OamEventLogTimestamp"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogTimestamp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-2/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-2",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-2/cdot3OamEventLogIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-2",
                    "cdot3OamEventLogIndex"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogOui",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-2/cdot3OamEventLogOui",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-2",
                    "cdot3OamEventLogOui"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogOui from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-3/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-3",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-3/cdot3OamEventLogIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-3",
                    "cdot3OamEventLogIndex"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-3/cdot3OamEventLogType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-3",
                    "cdot3OamEventLogType"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-4/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-4",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-4/cdot3OamEventLogIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-4",
                    "cdot3OamEventLogIndex"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogLocation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-4/cdot3OamEventLogLocation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-4",
                    "cdot3OamEventLogLocation"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogLocation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-5/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-5",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-5/cdot3OamEventLogIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-5",
                    "cdot3OamEventLogIndex"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogWindowHi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-5/cdot3OamEventLogWindowHi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-5",
                    "cdot3OamEventLogWindowHi"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogWindowHi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-6"
                  ]
                },
                "description": "Retrieve object-6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-6/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-6",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-6/cdot3OamEventLogIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-6",
                    "cdot3OamEventLogIndex"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogWindowLo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-6/cdot3OamEventLogWindowLo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-6",
                    "cdot3OamEventLogWindowLo"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogWindowLo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-7",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-7",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-7"
                  ]
                },
                "description": "Retrieve object-7 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-7/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-7",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-7/cdot3OamEventLogIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-7",
                    "cdot3OamEventLogIndex"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogThresholdHi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-7/cdot3OamEventLogThresholdHi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-7",
                    "cdot3OamEventLogThresholdHi"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogThresholdHi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-8",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-8",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-8"
                  ]
                },
                "description": "Retrieve object-8 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-8/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-8",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-8/cdot3OamEventLogIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-8",
                    "cdot3OamEventLogIndex"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogThresholdLo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-8/cdot3OamEventLogThresholdLo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-8",
                    "cdot3OamEventLogThresholdLo"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogThresholdLo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-9",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-9",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-9"
                  ]
                },
                "description": "Retrieve object-9 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-9/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-9",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-9/cdot3OamEventLogIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-9",
                    "cdot3OamEventLogIndex"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-9/cdot3OamEventLogValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-9",
                    "cdot3OamEventLogValue"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-10",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-10",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-10"
                  ]
                },
                "description": "Retrieve object-10 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-10/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-10",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-10/cdot3OamEventLogIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-10",
                    "cdot3OamEventLogIndex"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogRunningTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-10/cdot3OamEventLogRunningTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-10",
                    "cdot3OamEventLogRunningTotal"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogRunningTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-11",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-11",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-11"
                  ]
                },
                "description": "Retrieve object-11 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-11/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-11",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-11/cdot3OamEventLogIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-11",
                    "cdot3OamEventLogIndex"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogEventTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-11/cdot3OamEventLogEventTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-11",
                    "cdot3OamEventLogEventTotal"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogEventTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdot3OamEventLogEventTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB/cdot3OamEventLogTable/object-5/cdot3OamEventLogEventTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DOT3-OAM-MIB:CISCO-DOT3-OAM-MIB",
                    "cdot3OamEventLogTable",
                    "object-5",
                    "cdot3OamEventLogEventTotal"
                  ]
                },
                "description": "Retrieve cdot3OamEventLogEventTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-DYNAMIC-TEMPLATE-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-DYNAMIC-TEMPLATE-MIB\n\nMIB data from `CISCO-DYNAMIC-TEMPLATE-MIB` module.\n\n**Root containers:** 1 (CISCO-DYNAMIC-TEMPLATE-MIB)\n**Paths:** 143 | **Descendants:** 142\n\nAll endpoints are read-only (GET).\n\nEndpoints: 143 | Operations: 143",
          "item": [
            {
              "name": "GET Get CISCO-DYNAMIC-TEMPLATE-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB"
                  ]
                },
                "description": "Retrieve CISCO-DYNAMIC-TEMPLATE-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateTable"
                  ]
                },
                "description": "Retrieve cdtTemplateTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateTable/cdtTemplateEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateTable",
                    "cdtTemplateEntry"
                  ]
                },
                "description": "Retrieve cdtTemplateEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateTable/cdtTemplateEntry/cdtTemplateName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateTable",
                    "cdtTemplateEntry",
                    "cdtTemplateName"
                  ]
                },
                "description": "Retrieve cdtTemplateName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateTable/cdtTemplateEntry/cdtTemplateStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateTable",
                    "cdtTemplateEntry",
                    "cdtTemplateStatus"
                  ]
                },
                "description": "Retrieve cdtTemplateStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateTable/cdtTemplateEntry/cdtTemplateStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateTable",
                    "cdtTemplateEntry",
                    "cdtTemplateStorage"
                  ]
                },
                "description": "Retrieve cdtTemplateStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateTable/cdtTemplateEntry/cdtTemplateType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateTable",
                    "cdtTemplateEntry",
                    "cdtTemplateType"
                  ]
                },
                "description": "Retrieve cdtTemplateType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateSrc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateTable/cdtTemplateEntry/cdtTemplateSrc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateTable",
                    "cdtTemplateEntry",
                    "cdtTemplateSrc"
                  ]
                },
                "description": "Retrieve cdtTemplateSrc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateUsageCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateTable/cdtTemplateEntry/cdtTemplateUsageCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateTable",
                    "cdtTemplateEntry",
                    "cdtTemplateUsageCount"
                  ]
                },
                "description": "Retrieve cdtTemplateUsageCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateTargetTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateTargetTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateTargetTable"
                  ]
                },
                "description": "Retrieve cdtTemplateTargetTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateTargetEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateTargetTable/cdtTemplateTargetEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateTargetTable",
                    "cdtTemplateTargetEntry"
                  ]
                },
                "description": "Retrieve cdtTemplateTargetEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateTargetType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateTargetTable/cdtTemplateTargetEntry/cdtTemplateTargetType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateTargetTable",
                    "cdtTemplateTargetEntry",
                    "cdtTemplateTargetType"
                  ]
                },
                "description": "Retrieve cdtTemplateTargetType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateTargetId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateTargetTable/cdtTemplateTargetEntry/cdtTemplateTargetId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateTargetTable",
                    "cdtTemplateTargetEntry",
                    "cdtTemplateTargetId"
                  ]
                },
                "description": "Retrieve cdtTemplateTargetId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateTargetStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateTargetTable/cdtTemplateTargetEntry/cdtTemplateTargetStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateTargetTable",
                    "cdtTemplateTargetEntry",
                    "cdtTemplateTargetStatus"
                  ]
                },
                "description": "Retrieve cdtTemplateTargetStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateTargetStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateTargetTable/cdtTemplateTargetEntry/cdtTemplateTargetStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateTargetTable",
                    "cdtTemplateTargetEntry",
                    "cdtTemplateTargetStorage"
                  ]
                },
                "description": "Retrieve cdtTemplateTargetStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateAssociationTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateAssociationTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateAssociationTable"
                  ]
                },
                "description": "Retrieve cdtTemplateAssociationTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateAssociationEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateAssociationTable/cdtTemplateAssociationEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateAssociationTable",
                    "cdtTemplateAssociationEntry"
                  ]
                },
                "description": "Retrieve cdtTemplateAssociationEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateTargetType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateAssociationTable/cdtTemplateAssociationEntry/cdtTemplateTargetType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateAssociationTable",
                    "cdtTemplateAssociationEntry",
                    "cdtTemplateTargetType"
                  ]
                },
                "description": "Retrieve cdtTemplateTargetType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateTargetId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateAssociationTable/cdtTemplateAssociationEntry/cdtTemplateTargetId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateAssociationTable",
                    "cdtTemplateAssociationEntry",
                    "cdtTemplateTargetId"
                  ]
                },
                "description": "Retrieve cdtTemplateTargetId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateAssociationName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateAssociationTable/cdtTemplateAssociationEntry/cdtTemplateAssociationName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateAssociationTable",
                    "cdtTemplateAssociationEntry",
                    "cdtTemplateAssociationName"
                  ]
                },
                "description": "Retrieve cdtTemplateAssociationName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateAssociationPrecedence",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateAssociationTable/cdtTemplateAssociationEntry/cdtTemplateAssociationPrecedence",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateAssociationTable",
                    "cdtTemplateAssociationEntry",
                    "cdtTemplateAssociationPrecedence"
                  ]
                },
                "description": "Retrieve cdtTemplateAssociationPrecedence from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateUsageTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateUsageTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateUsageTable"
                  ]
                },
                "description": "Retrieve cdtTemplateUsageTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateUsageEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateUsageTable/cdtTemplateUsageEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateUsageTable",
                    "cdtTemplateUsageEntry"
                  ]
                },
                "description": "Retrieve cdtTemplateUsageEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateUsageTable/cdtTemplateUsageEntry/cdtTemplateName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateUsageTable",
                    "cdtTemplateUsageEntry",
                    "cdtTemplateName"
                  ]
                },
                "description": "Retrieve cdtTemplateName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateUsageTargetType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateUsageTable/cdtTemplateUsageEntry/cdtTemplateUsageTargetType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateUsageTable",
                    "cdtTemplateUsageEntry",
                    "cdtTemplateUsageTargetType"
                  ]
                },
                "description": "Retrieve cdtTemplateUsageTargetType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateUsageTargetId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateUsageTable/cdtTemplateUsageEntry/cdtTemplateUsageTargetId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateUsageTable",
                    "cdtTemplateUsageEntry",
                    "cdtTemplateUsageTargetId"
                  ]
                },
                "description": "Retrieve cdtTemplateUsageTargetId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateCommonTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable"
                  ]
                },
                "description": "Retrieve cdtTemplateCommonTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateCommonEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry"
                  ]
                },
                "description": "Retrieve cdtTemplateCommonEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry/cdtTemplateName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry",
                    "cdtTemplateName"
                  ]
                },
                "description": "Retrieve cdtTemplateName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtCommonValid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry/cdtCommonValid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry",
                    "cdtCommonValid"
                  ]
                },
                "description": "Retrieve cdtCommonValid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtCommonDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry/cdtCommonDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry",
                    "cdtCommonDescr"
                  ]
                },
                "description": "Retrieve cdtCommonDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtCommonKeepaliveInt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry/cdtCommonKeepaliveInt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry",
                    "cdtCommonKeepaliveInt"
                  ]
                },
                "description": "Retrieve cdtCommonKeepaliveInt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtCommonKeepaliveRetries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry/cdtCommonKeepaliveRetries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry",
                    "cdtCommonKeepaliveRetries"
                  ]
                },
                "description": "Retrieve cdtCommonKeepaliveRetries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtCommonVrf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry/cdtCommonVrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry",
                    "cdtCommonVrf"
                  ]
                },
                "description": "Retrieve cdtCommonVrf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtCommonAddrPool",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry/cdtCommonAddrPool",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry",
                    "cdtCommonAddrPool"
                  ]
                },
                "description": "Retrieve cdtCommonAddrPool from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtCommonIpv4AccessGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry/cdtCommonIpv4AccessGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry",
                    "cdtCommonIpv4AccessGroup"
                  ]
                },
                "description": "Retrieve cdtCommonIpv4AccessGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtCommonIpv4Unreachables",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry/cdtCommonIpv4Unreachables",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry",
                    "cdtCommonIpv4Unreachables"
                  ]
                },
                "description": "Retrieve cdtCommonIpv4Unreachables from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtCommonIpv6AccessGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry/cdtCommonIpv6AccessGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry",
                    "cdtCommonIpv6AccessGroup"
                  ]
                },
                "description": "Retrieve cdtCommonIpv6AccessGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtCommonIpv6Unreachables",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry/cdtCommonIpv6Unreachables",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry",
                    "cdtCommonIpv6Unreachables"
                  ]
                },
                "description": "Retrieve cdtCommonIpv6Unreachables from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtCommonSrvSubControl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry/cdtCommonSrvSubControl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry",
                    "cdtCommonSrvSubControl"
                  ]
                },
                "description": "Retrieve cdtCommonSrvSubControl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtCommonSrvRedirect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry/cdtCommonSrvRedirect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry",
                    "cdtCommonSrvRedirect"
                  ]
                },
                "description": "Retrieve cdtCommonSrvRedirect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtCommonSrvAcct",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry/cdtCommonSrvAcct",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry",
                    "cdtCommonSrvAcct"
                  ]
                },
                "description": "Retrieve cdtCommonSrvAcct from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtCommonSrvQos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry/cdtCommonSrvQos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry",
                    "cdtCommonSrvQos"
                  ]
                },
                "description": "Retrieve cdtCommonSrvQos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtCommonSrvNetflow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtTemplateCommonTable/cdtTemplateCommonEntry/cdtCommonSrvNetflow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtTemplateCommonTable",
                    "cdtTemplateCommonEntry",
                    "cdtCommonSrvNetflow"
                  ]
                },
                "description": "Retrieve cdtCommonSrvNetflow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfTemplateTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable"
                  ]
                },
                "description": "Retrieve cdtIfTemplateTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfTemplateEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry"
                  ]
                },
                "description": "Retrieve cdtIfTemplateEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtTemplateName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtTemplateName"
                  ]
                },
                "description": "Retrieve cdtTemplateName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfValid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfValid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfValid"
                  ]
                },
                "description": "Retrieve cdtIfValid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfMtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfMtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfMtu"
                  ]
                },
                "description": "Retrieve cdtIfMtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfCdpEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfCdpEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfCdpEnable"
                  ]
                },
                "description": "Retrieve cdtIfCdpEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfFlowMonitor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfFlowMonitor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfFlowMonitor"
                  ]
                },
                "description": "Retrieve cdtIfFlowMonitor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv4Unnumbered",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv4Unnumbered",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv4Unnumbered"
                  ]
                },
                "description": "Retrieve cdtIfIpv4Unnumbered from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv4SubEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv4SubEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv4SubEnable"
                  ]
                },
                "description": "Retrieve cdtIfIpv4SubEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv4Mtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv4Mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv4Mtu"
                  ]
                },
                "description": "Retrieve cdtIfIpv4Mtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv4TcpMssAdjust",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv4TcpMssAdjust",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv4TcpMssAdjust"
                  ]
                },
                "description": "Retrieve cdtIfIpv4TcpMssAdjust from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv4VerifyUniRpf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv4VerifyUniRpf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv4VerifyUniRpf"
                  ]
                },
                "description": "Retrieve cdtIfIpv4VerifyUniRpf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv4VerifyUniRpfAcl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv4VerifyUniRpfAcl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv4VerifyUniRpfAcl"
                  ]
                },
                "description": "Retrieve cdtIfIpv4VerifyUniRpfAcl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv4VerifyUniRpfOpts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv4VerifyUniRpfOpts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv4VerifyUniRpfOpts"
                  ]
                },
                "description": "Retrieve cdtIfIpv4VerifyUniRpfOpts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6Enable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6Enable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6Enable"
                  ]
                },
                "description": "Retrieve cdtIfIpv6Enable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6SubEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6SubEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6SubEnable"
                  ]
                },
                "description": "Retrieve cdtIfIpv6SubEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6TcpMssAdjust",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6TcpMssAdjust",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6TcpMssAdjust"
                  ]
                },
                "description": "Retrieve cdtIfIpv6TcpMssAdjust from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6VerifyUniRpf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6VerifyUniRpf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6VerifyUniRpf"
                  ]
                },
                "description": "Retrieve cdtIfIpv6VerifyUniRpf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6VerifyUniRpfAcl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6VerifyUniRpfAcl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6VerifyUniRpfAcl"
                  ]
                },
                "description": "Retrieve cdtIfIpv6VerifyUniRpfAcl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6VerifyUniRpfOpts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6VerifyUniRpfOpts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6VerifyUniRpfOpts"
                  ]
                },
                "description": "Retrieve cdtIfIpv6VerifyUniRpfOpts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6NdPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6NdPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6NdPrefix"
                  ]
                },
                "description": "Retrieve cdtIfIpv6NdPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6NdPrefixLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6NdPrefixLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6NdPrefixLength"
                  ]
                },
                "description": "Retrieve cdtIfIpv6NdPrefixLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6NdValidLife",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6NdValidLife",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6NdValidLife"
                  ]
                },
                "description": "Retrieve cdtIfIpv6NdValidLife from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6NdPreferredLife",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6NdPreferredLife",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6NdPreferredLife"
                  ]
                },
                "description": "Retrieve cdtIfIpv6NdPreferredLife from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6NdOpts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6NdOpts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6NdOpts"
                  ]
                },
                "description": "Retrieve cdtIfIpv6NdOpts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6NdDadAttempts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6NdDadAttempts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6NdDadAttempts"
                  ]
                },
                "description": "Retrieve cdtIfIpv6NdDadAttempts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6NdNsInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6NdNsInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6NdNsInterval"
                  ]
                },
                "description": "Retrieve cdtIfIpv6NdNsInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6NdReachableTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6NdReachableTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6NdReachableTime"
                  ]
                },
                "description": "Retrieve cdtIfIpv6NdReachableTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6NdRaIntervalUnits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6NdRaIntervalUnits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6NdRaIntervalUnits"
                  ]
                },
                "description": "Retrieve cdtIfIpv6NdRaIntervalUnits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6NdRaIntervalMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6NdRaIntervalMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6NdRaIntervalMax"
                  ]
                },
                "description": "Retrieve cdtIfIpv6NdRaIntervalMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6NdRaIntervalMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6NdRaIntervalMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6NdRaIntervalMin"
                  ]
                },
                "description": "Retrieve cdtIfIpv6NdRaIntervalMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6NdRaLife",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6NdRaLife",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6NdRaLife"
                  ]
                },
                "description": "Retrieve cdtIfIpv6NdRaLife from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtIfIpv6NdRouterPreference",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtIfTemplateTable/cdtIfTemplateEntry/cdtIfIpv6NdRouterPreference",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtIfTemplateTable",
                    "cdtIfTemplateEntry",
                    "cdtIfIpv6NdRouterPreference"
                  ]
                },
                "description": "Retrieve cdtIfIpv6NdRouterPreference from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppTemplateTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable"
                  ]
                },
                "description": "Retrieve cdtPppTemplateTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppTemplateEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry"
                  ]
                },
                "description": "Retrieve cdtPppTemplateEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtTemplateName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtTemplateName"
                  ]
                },
                "description": "Retrieve cdtTemplateName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppValid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppValid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppValid"
                  ]
                },
                "description": "Retrieve cdtPppValid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppAccounting",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppAccounting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppAccounting"
                  ]
                },
                "description": "Retrieve cdtPppAccounting from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppAuthentication",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppAuthentication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppAuthentication"
                  ]
                },
                "description": "Retrieve cdtPppAuthentication from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppAuthenticationMethods",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppAuthenticationMethods",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppAuthenticationMethods"
                  ]
                },
                "description": "Retrieve cdtPppAuthenticationMethods from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppAuthorization",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppAuthorization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppAuthorization"
                  ]
                },
                "description": "Retrieve cdtPppAuthorization from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppLoopbackIgnore",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppLoopbackIgnore",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppLoopbackIgnore"
                  ]
                },
                "description": "Retrieve cdtPppLoopbackIgnore from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppMaxBadAuth",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppMaxBadAuth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppMaxBadAuth"
                  ]
                },
                "description": "Retrieve cdtPppMaxBadAuth from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppMaxConfigure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppMaxConfigure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppMaxConfigure"
                  ]
                },
                "description": "Retrieve cdtPppMaxConfigure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppMaxFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppMaxFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppMaxFailure"
                  ]
                },
                "description": "Retrieve cdtPppMaxFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppMaxTerminate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppMaxTerminate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppMaxTerminate"
                  ]
                },
                "description": "Retrieve cdtPppMaxTerminate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppTimeoutAuthentication",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppTimeoutAuthentication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppTimeoutAuthentication"
                  ]
                },
                "description": "Retrieve cdtPppTimeoutAuthentication from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppTimeoutRetry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppTimeoutRetry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppTimeoutRetry"
                  ]
                },
                "description": "Retrieve cdtPppTimeoutRetry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppChapOpts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppChapOpts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppChapOpts"
                  ]
                },
                "description": "Retrieve cdtPppChapOpts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppChapHostname",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppChapHostname",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppChapHostname"
                  ]
                },
                "description": "Retrieve cdtPppChapHostname from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppChapPassword",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppChapPassword",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppChapPassword"
                  ]
                },
                "description": "Retrieve cdtPppChapPassword from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppMsChapV1Opts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppMsChapV1Opts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppMsChapV1Opts"
                  ]
                },
                "description": "Retrieve cdtPppMsChapV1Opts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppMsChapV1Hostname",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppMsChapV1Hostname",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppMsChapV1Hostname"
                  ]
                },
                "description": "Retrieve cdtPppMsChapV1Hostname from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppMsChapV1Password",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppMsChapV1Password",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppMsChapV1Password"
                  ]
                },
                "description": "Retrieve cdtPppMsChapV1Password from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppMsChapV2Opts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppMsChapV2Opts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppMsChapV2Opts"
                  ]
                },
                "description": "Retrieve cdtPppMsChapV2Opts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppMsChapV2Hostname",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppMsChapV2Hostname",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppMsChapV2Hostname"
                  ]
                },
                "description": "Retrieve cdtPppMsChapV2Hostname from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppMsChapV2Password",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppMsChapV2Password",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppMsChapV2Password"
                  ]
                },
                "description": "Retrieve cdtPppMsChapV2Password from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppPapOpts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppPapOpts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppPapOpts"
                  ]
                },
                "description": "Retrieve cdtPppPapOpts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppPapUsername",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppPapUsername",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppPapUsername"
                  ]
                },
                "description": "Retrieve cdtPppPapUsername from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppPapPassword",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppPapPassword",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppPapPassword"
                  ]
                },
                "description": "Retrieve cdtPppPapPassword from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppEapOpts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppEapOpts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppEapOpts"
                  ]
                },
                "description": "Retrieve cdtPppEapOpts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppEapIdentity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppEapIdentity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppEapIdentity"
                  ]
                },
                "description": "Retrieve cdtPppEapIdentity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppEapPassword",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppEapPassword",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppEapPassword"
                  ]
                },
                "description": "Retrieve cdtPppEapPassword from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppIpcpAddrOption",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppIpcpAddrOption",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppIpcpAddrOption"
                  ]
                },
                "description": "Retrieve cdtPppIpcpAddrOption from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppIpcpDnsOption",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppIpcpDnsOption",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppIpcpDnsOption"
                  ]
                },
                "description": "Retrieve cdtPppIpcpDnsOption from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppIpcpDnsPrimary",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppIpcpDnsPrimary",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppIpcpDnsPrimary"
                  ]
                },
                "description": "Retrieve cdtPppIpcpDnsPrimary from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppIpcpDnsSecondary",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppIpcpDnsSecondary",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppIpcpDnsSecondary"
                  ]
                },
                "description": "Retrieve cdtPppIpcpDnsSecondary from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppIpcpWinsOption",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppIpcpWinsOption",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppIpcpWinsOption"
                  ]
                },
                "description": "Retrieve cdtPppIpcpWinsOption from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppIpcpWinsPrimary",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppIpcpWinsPrimary",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppIpcpWinsPrimary"
                  ]
                },
                "description": "Retrieve cdtPppIpcpWinsPrimary from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppIpcpWinsSecondary",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppIpcpWinsSecondary",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppIpcpWinsSecondary"
                  ]
                },
                "description": "Retrieve cdtPppIpcpWinsSecondary from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppIpcpMaskOption",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppIpcpMaskOption",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppIpcpMaskOption"
                  ]
                },
                "description": "Retrieve cdtPppIpcpMaskOption from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppIpcpMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppIpcpMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppIpcpMask"
                  ]
                },
                "description": "Retrieve cdtPppIpcpMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppPeerDefIpAddrOpts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppPeerDefIpAddrOpts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppPeerDefIpAddrOpts"
                  ]
                },
                "description": "Retrieve cdtPppPeerDefIpAddrOpts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppPeerDefIpAddrSrc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppPeerDefIpAddrSrc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppPeerDefIpAddrSrc"
                  ]
                },
                "description": "Retrieve cdtPppPeerDefIpAddrSrc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppPeerDefIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppTemplateTable/cdtPppTemplateEntry/cdtPppPeerDefIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppTemplateTable",
                    "cdtPppTemplateEntry",
                    "cdtPppPeerDefIpAddr"
                  ]
                },
                "description": "Retrieve cdtPppPeerDefIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppPeerIpAddrPoolTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppPeerIpAddrPoolTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppPeerIpAddrPoolTable"
                  ]
                },
                "description": "Retrieve cdtPppPeerIpAddrPoolTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppPeerIpAddrPoolEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppPeerIpAddrPoolTable/cdtPppPeerIpAddrPoolEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppPeerIpAddrPoolTable",
                    "cdtPppPeerIpAddrPoolEntry"
                  ]
                },
                "description": "Retrieve cdtPppPeerIpAddrPoolEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppPeerIpAddrPoolTable/cdtPppPeerIpAddrPoolEntry/cdtTemplateName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppPeerIpAddrPoolTable",
                    "cdtPppPeerIpAddrPoolEntry",
                    "cdtTemplateName"
                  ]
                },
                "description": "Retrieve cdtTemplateName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppPeerIpAddrPoolPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppPeerIpAddrPoolTable/cdtPppPeerIpAddrPoolEntry/cdtPppPeerIpAddrPoolPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppPeerIpAddrPoolTable",
                    "cdtPppPeerIpAddrPoolEntry",
                    "cdtPppPeerIpAddrPoolPriority"
                  ]
                },
                "description": "Retrieve cdtPppPeerIpAddrPoolPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppPeerIpAddrPoolStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppPeerIpAddrPoolTable/cdtPppPeerIpAddrPoolEntry/cdtPppPeerIpAddrPoolStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppPeerIpAddrPoolTable",
                    "cdtPppPeerIpAddrPoolEntry",
                    "cdtPppPeerIpAddrPoolStatus"
                  ]
                },
                "description": "Retrieve cdtPppPeerIpAddrPoolStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppPeerIpAddrPoolStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppPeerIpAddrPoolTable/cdtPppPeerIpAddrPoolEntry/cdtPppPeerIpAddrPoolStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppPeerIpAddrPoolTable",
                    "cdtPppPeerIpAddrPoolEntry",
                    "cdtPppPeerIpAddrPoolStorage"
                  ]
                },
                "description": "Retrieve cdtPppPeerIpAddrPoolStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtPppPeerIpAddrPoolName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtPppPeerIpAddrPoolTable/cdtPppPeerIpAddrPoolEntry/cdtPppPeerIpAddrPoolName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtPppPeerIpAddrPoolTable",
                    "cdtPppPeerIpAddrPoolEntry",
                    "cdtPppPeerIpAddrPoolName"
                  ]
                },
                "description": "Retrieve cdtPppPeerIpAddrPoolName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtEthernetTemplateTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtEthernetTemplateTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtEthernetTemplateTable"
                  ]
                },
                "description": "Retrieve cdtEthernetTemplateTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtEthernetTemplateEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtEthernetTemplateTable/cdtEthernetTemplateEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtEthernetTemplateTable",
                    "cdtEthernetTemplateEntry"
                  ]
                },
                "description": "Retrieve cdtEthernetTemplateEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtEthernetTemplateTable/cdtEthernetTemplateEntry/cdtTemplateName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtEthernetTemplateTable",
                    "cdtEthernetTemplateEntry",
                    "cdtTemplateName"
                  ]
                },
                "description": "Retrieve cdtTemplateName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtEthernetValid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtEthernetTemplateTable/cdtEthernetTemplateEntry/cdtEthernetValid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtEthernetTemplateTable",
                    "cdtEthernetTemplateEntry",
                    "cdtEthernetValid"
                  ]
                },
                "description": "Retrieve cdtEthernetValid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtEthernetBridgeDomain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtEthernetTemplateTable/cdtEthernetTemplateEntry/cdtEthernetBridgeDomain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtEthernetTemplateTable",
                    "cdtEthernetTemplateEntry",
                    "cdtEthernetBridgeDomain"
                  ]
                },
                "description": "Retrieve cdtEthernetBridgeDomain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtEthernetPppoeEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtEthernetTemplateTable/cdtEthernetTemplateEntry/cdtEthernetPppoeEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtEthernetTemplateTable",
                    "cdtEthernetTemplateEntry",
                    "cdtEthernetPppoeEnable"
                  ]
                },
                "description": "Retrieve cdtEthernetPppoeEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtEthernetIpv4PointToPoint",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtEthernetTemplateTable/cdtEthernetTemplateEntry/cdtEthernetIpv4PointToPoint",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtEthernetTemplateTable",
                    "cdtEthernetTemplateEntry",
                    "cdtEthernetIpv4PointToPoint"
                  ]
                },
                "description": "Retrieve cdtEthernetIpv4PointToPoint from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtEthernetMacAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtEthernetTemplateTable/cdtEthernetTemplateEntry/cdtEthernetMacAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtEthernetTemplateTable",
                    "cdtEthernetTemplateEntry",
                    "cdtEthernetMacAddr"
                  ]
                },
                "description": "Retrieve cdtEthernetMacAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtSrvTemplateTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtSrvTemplateTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtSrvTemplateTable"
                  ]
                },
                "description": "Retrieve cdtSrvTemplateTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtSrvTemplateEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtSrvTemplateTable/cdtSrvTemplateEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtSrvTemplateTable",
                    "cdtSrvTemplateEntry"
                  ]
                },
                "description": "Retrieve cdtSrvTemplateEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtTemplateName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtSrvTemplateTable/cdtSrvTemplateEntry/cdtTemplateName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtSrvTemplateTable",
                    "cdtSrvTemplateEntry",
                    "cdtTemplateName"
                  ]
                },
                "description": "Retrieve cdtTemplateName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtSrvValid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtSrvTemplateTable/cdtSrvTemplateEntry/cdtSrvValid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtSrvTemplateTable",
                    "cdtSrvTemplateEntry",
                    "cdtSrvValid"
                  ]
                },
                "description": "Retrieve cdtSrvValid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtSrvNetworkSrv",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtSrvTemplateTable/cdtSrvTemplateEntry/cdtSrvNetworkSrv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtSrvTemplateTable",
                    "cdtSrvTemplateEntry",
                    "cdtSrvNetworkSrv"
                  ]
                },
                "description": "Retrieve cdtSrvNetworkSrv from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtSrvVpdnGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtSrvTemplateTable/cdtSrvTemplateEntry/cdtSrvVpdnGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtSrvTemplateTable",
                    "cdtSrvTemplateEntry",
                    "cdtSrvVpdnGroup"
                  ]
                },
                "description": "Retrieve cdtSrvVpdnGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtSrvSgSrvGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtSrvTemplateTable/cdtSrvTemplateEntry/cdtSrvSgSrvGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtSrvTemplateTable",
                    "cdtSrvTemplateEntry",
                    "cdtSrvSgSrvGroup"
                  ]
                },
                "description": "Retrieve cdtSrvSgSrvGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtSrvSgSrvType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtSrvTemplateTable/cdtSrvTemplateEntry/cdtSrvSgSrvType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtSrvTemplateTable",
                    "cdtSrvTemplateEntry",
                    "cdtSrvSgSrvType"
                  ]
                },
                "description": "Retrieve cdtSrvSgSrvType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cdtSrvMulticast",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB/cdtSrvTemplateTable/cdtSrvTemplateEntry/cdtSrvMulticast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-DYNAMIC-TEMPLATE-MIB:CISCO-DYNAMIC-TEMPLATE-MIB",
                    "cdtSrvTemplateTable",
                    "cdtSrvTemplateEntry",
                    "cdtSrvMulticast"
                  ]
                },
                "description": "Retrieve cdtSrvMulticast from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-EIGRP-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-EIGRP-MIB\n\nMIB data from `CISCO-EIGRP-MIB` module.\n\n**Root containers:** 1 (CISCO-EIGRP-MIB)\n**Paths:** 110 | **Descendants:** 119\n\nAll endpoints are read-only (GET).\n\nEndpoints: 110 | Operations: 110",
          "item": [
            {
              "name": "GET Get CISCO-EIGRP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB"
                  ]
                },
                "description": "Retrieve CISCO-EIGRP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpVpnTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpVpnTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpVpnTable"
                  ]
                },
                "description": "Retrieve cEigrpVpnTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpVpnEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpVpnTable/cEigrpVpnEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpVpnTable",
                    "cEigrpVpnEntry"
                  ]
                },
                "description": "Retrieve cEigrpVpnEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpVpnId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpVpnTable/cEigrpVpnEntry/cEigrpVpnId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpVpnTable",
                    "cEigrpVpnEntry",
                    "cEigrpVpnId"
                  ]
                },
                "description": "Retrieve cEigrpVpnId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpVpnName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpVpnTable/cEigrpVpnEntry/cEigrpVpnName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpVpnTable",
                    "cEigrpVpnEntry",
                    "cEigrpVpnName"
                  ]
                },
                "description": "Retrieve cEigrpVpnName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpTraffStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable"
                  ]
                },
                "description": "Retrieve cEigrpTraffStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpTraffStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry"
                  ]
                },
                "description": "Retrieve cEigrpTraffStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpVpnId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpVpnId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpVpnId"
                  ]
                },
                "description": "Retrieve cEigrpVpnId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpAsNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpAsNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpAsNumber"
                  ]
                },
                "description": "Retrieve cEigrpAsNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpNbrCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpNbrCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpNbrCount"
                  ]
                },
                "description": "Retrieve cEigrpNbrCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpHellosSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpHellosSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpHellosSent"
                  ]
                },
                "description": "Retrieve cEigrpHellosSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpHellosRcvd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpHellosRcvd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpHellosRcvd"
                  ]
                },
                "description": "Retrieve cEigrpHellosRcvd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpUpdatesSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpUpdatesSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpUpdatesSent"
                  ]
                },
                "description": "Retrieve cEigrpUpdatesSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpUpdatesRcvd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpUpdatesRcvd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpUpdatesRcvd"
                  ]
                },
                "description": "Retrieve cEigrpUpdatesRcvd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpQueriesSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpQueriesSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpQueriesSent"
                  ]
                },
                "description": "Retrieve cEigrpQueriesSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpQueriesRcvd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpQueriesRcvd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpQueriesRcvd"
                  ]
                },
                "description": "Retrieve cEigrpQueriesRcvd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpRepliesSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpRepliesSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpRepliesSent"
                  ]
                },
                "description": "Retrieve cEigrpRepliesSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpRepliesRcvd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpRepliesRcvd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpRepliesRcvd"
                  ]
                },
                "description": "Retrieve cEigrpRepliesRcvd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpAcksSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpAcksSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpAcksSent"
                  ]
                },
                "description": "Retrieve cEigrpAcksSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpAcksRcvd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpAcksRcvd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpAcksRcvd"
                  ]
                },
                "description": "Retrieve cEigrpAcksRcvd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpInputQHighMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpInputQHighMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpInputQHighMark"
                  ]
                },
                "description": "Retrieve cEigrpInputQHighMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpInputQDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpInputQDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpInputQDrops"
                  ]
                },
                "description": "Retrieve cEigrpInputQDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpSiaQueriesSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpSiaQueriesSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpSiaQueriesSent"
                  ]
                },
                "description": "Retrieve cEigrpSiaQueriesSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpSiaQueriesRcvd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpSiaQueriesRcvd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpSiaQueriesRcvd"
                  ]
                },
                "description": "Retrieve cEigrpSiaQueriesRcvd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpAsRouterIdType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpAsRouterIdType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpAsRouterIdType"
                  ]
                },
                "description": "Retrieve cEigrpAsRouterIdType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpAsRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpAsRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpAsRouterId"
                  ]
                },
                "description": "Retrieve cEigrpAsRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpTopoRoutes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpTopoRoutes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpTopoRoutes"
                  ]
                },
                "description": "Retrieve cEigrpTopoRoutes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpHeadSerial",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpHeadSerial",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpHeadSerial"
                  ]
                },
                "description": "Retrieve cEigrpHeadSerial from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpNextSerial",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpNextSerial",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpNextSerial"
                  ]
                },
                "description": "Retrieve cEigrpNextSerial from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpXmitPendReplies",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpXmitPendReplies",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpXmitPendReplies"
                  ]
                },
                "description": "Retrieve cEigrpXmitPendReplies from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpXmitDummies",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTraffStatsTable/cEigrpTraffStatsEntry/cEigrpXmitDummies",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTraffStatsTable",
                    "cEigrpTraffStatsEntry",
                    "cEigrpXmitDummies"
                  ]
                },
                "description": "Retrieve cEigrpXmitDummies from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpTopoTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable"
                  ]
                },
                "description": "Retrieve cEigrpTopoTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpTopoEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry"
                  ]
                },
                "description": "Retrieve cEigrpTopoEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpVpnId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpVpnId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpVpnId"
                  ]
                },
                "description": "Retrieve cEigrpVpnId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpAsNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpAsNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpAsNumber"
                  ]
                },
                "description": "Retrieve cEigrpAsNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpDestNetType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpDestNetType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpDestNetType"
                  ]
                },
                "description": "Retrieve cEigrpDestNetType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpDestNet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpDestNet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpDestNet"
                  ]
                },
                "description": "Retrieve cEigrpDestNet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpDestNetPrefixLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpDestNetPrefixLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpDestNetPrefixLen"
                  ]
                },
                "description": "Retrieve cEigrpDestNetPrefixLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpActive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpActive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpActive"
                  ]
                },
                "description": "Retrieve cEigrpActive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpStuckInActive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpStuckInActive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpStuckInActive"
                  ]
                },
                "description": "Retrieve cEigrpStuckInActive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpDestSuccessors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpDestSuccessors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpDestSuccessors"
                  ]
                },
                "description": "Retrieve cEigrpDestSuccessors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpFdistance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpFdistance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpFdistance"
                  ]
                },
                "description": "Retrieve cEigrpFdistance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpRouteOriginType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpRouteOriginType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpRouteOriginType"
                  ]
                },
                "description": "Retrieve cEigrpRouteOriginType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpRouteOriginAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpRouteOriginAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpRouteOriginAddrType"
                  ]
                },
                "description": "Retrieve cEigrpRouteOriginAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpRouteOriginAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpRouteOriginAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpRouteOriginAddr"
                  ]
                },
                "description": "Retrieve cEigrpRouteOriginAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpNextHopAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpNextHopAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpNextHopAddressType"
                  ]
                },
                "description": "Retrieve cEigrpNextHopAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpNextHopAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpNextHopAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpNextHopAddress"
                  ]
                },
                "description": "Retrieve cEigrpNextHopAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpNextHopInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpNextHopInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpNextHopInterface"
                  ]
                },
                "description": "Retrieve cEigrpNextHopInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpDistance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpDistance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpDistance"
                  ]
                },
                "description": "Retrieve cEigrpDistance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpReportDistance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpTopoTable/cEigrpTopoEntry/cEigrpReportDistance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpTopoTable",
                    "cEigrpTopoEntry",
                    "cEigrpReportDistance"
                  ]
                },
                "description": "Retrieve cEigrpReportDistance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpPeerTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable"
                  ]
                },
                "description": "Retrieve cEigrpPeerTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpPeerEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable/cEigrpPeerEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable",
                    "cEigrpPeerEntry"
                  ]
                },
                "description": "Retrieve cEigrpPeerEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpVpnId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable/cEigrpPeerEntry/cEigrpVpnId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable",
                    "cEigrpPeerEntry",
                    "cEigrpVpnId"
                  ]
                },
                "description": "Retrieve cEigrpVpnId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpAsNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable/cEigrpPeerEntry/cEigrpAsNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable",
                    "cEigrpPeerEntry",
                    "cEigrpAsNumber"
                  ]
                },
                "description": "Retrieve cEigrpAsNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpHandle",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable/cEigrpPeerEntry/cEigrpHandle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable",
                    "cEigrpPeerEntry",
                    "cEigrpHandle"
                  ]
                },
                "description": "Retrieve cEigrpHandle from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpPeerAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable/cEigrpPeerEntry/cEigrpPeerAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable",
                    "cEigrpPeerEntry",
                    "cEigrpPeerAddrType"
                  ]
                },
                "description": "Retrieve cEigrpPeerAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpPeerAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable/cEigrpPeerEntry/cEigrpPeerAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable",
                    "cEigrpPeerEntry",
                    "cEigrpPeerAddr"
                  ]
                },
                "description": "Retrieve cEigrpPeerAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpPeerIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable/cEigrpPeerEntry/cEigrpPeerIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable",
                    "cEigrpPeerEntry",
                    "cEigrpPeerIfIndex"
                  ]
                },
                "description": "Retrieve cEigrpPeerIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpHoldTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable/cEigrpPeerEntry/cEigrpHoldTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable",
                    "cEigrpPeerEntry",
                    "cEigrpHoldTime"
                  ]
                },
                "description": "Retrieve cEigrpHoldTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable/cEigrpPeerEntry/cEigrpUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable",
                    "cEigrpPeerEntry",
                    "cEigrpUpTime"
                  ]
                },
                "description": "Retrieve cEigrpUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpSrtt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable/cEigrpPeerEntry/cEigrpSrtt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable",
                    "cEigrpPeerEntry",
                    "cEigrpSrtt"
                  ]
                },
                "description": "Retrieve cEigrpSrtt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpRto",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable/cEigrpPeerEntry/cEigrpRto",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable",
                    "cEigrpPeerEntry",
                    "cEigrpRto"
                  ]
                },
                "description": "Retrieve cEigrpRto from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpPktsEnqueued",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable/cEigrpPeerEntry/cEigrpPktsEnqueued",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable",
                    "cEigrpPeerEntry",
                    "cEigrpPktsEnqueued"
                  ]
                },
                "description": "Retrieve cEigrpPktsEnqueued from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpLastSeq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable/cEigrpPeerEntry/cEigrpLastSeq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable",
                    "cEigrpPeerEntry",
                    "cEigrpLastSeq"
                  ]
                },
                "description": "Retrieve cEigrpLastSeq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable/cEigrpPeerEntry/cEigrpVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable",
                    "cEigrpPeerEntry",
                    "cEigrpVersion"
                  ]
                },
                "description": "Retrieve cEigrpVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpRetrans",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable/cEigrpPeerEntry/cEigrpRetrans",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable",
                    "cEigrpPeerEntry",
                    "cEigrpRetrans"
                  ]
                },
                "description": "Retrieve cEigrpRetrans from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpRetries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpPeerTable/cEigrpPeerEntry/cEigrpRetries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpPeerTable",
                    "cEigrpPeerEntry",
                    "cEigrpRetries"
                  ]
                },
                "description": "Retrieve cEigrpRetries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpInterfaceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable"
                  ]
                },
                "description": "Retrieve cEigrpInterfaceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpInterfaceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry"
                  ]
                },
                "description": "Retrieve cEigrpInterfaceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpVpnId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpVpnId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpVpnId"
                  ]
                },
                "description": "Retrieve cEigrpVpnId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpAsNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpAsNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpAsNumber"
                  ]
                },
                "description": "Retrieve cEigrpAsNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpPeerCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpPeerCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpPeerCount"
                  ]
                },
                "description": "Retrieve cEigrpPeerCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpXmitReliableQ",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpXmitReliableQ",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpXmitReliableQ"
                  ]
                },
                "description": "Retrieve cEigrpXmitReliableQ from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpXmitUnreliableQ",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpXmitUnreliableQ",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpXmitUnreliableQ"
                  ]
                },
                "description": "Retrieve cEigrpXmitUnreliableQ from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpMeanSrtt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpMeanSrtt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpMeanSrtt"
                  ]
                },
                "description": "Retrieve cEigrpMeanSrtt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpPacingReliable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpPacingReliable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpPacingReliable"
                  ]
                },
                "description": "Retrieve cEigrpPacingReliable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpPacingUnreliable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpPacingUnreliable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpPacingUnreliable"
                  ]
                },
                "description": "Retrieve cEigrpPacingUnreliable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpMFlowTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpMFlowTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpMFlowTimer"
                  ]
                },
                "description": "Retrieve cEigrpMFlowTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpPendingRoutes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpPendingRoutes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpPendingRoutes"
                  ]
                },
                "description": "Retrieve cEigrpPendingRoutes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpHelloInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpHelloInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpHelloInterval"
                  ]
                },
                "description": "Retrieve cEigrpHelloInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpXmitNextSerial",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpXmitNextSerial",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpXmitNextSerial"
                  ]
                },
                "description": "Retrieve cEigrpXmitNextSerial from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpUMcasts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpUMcasts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpUMcasts"
                  ]
                },
                "description": "Retrieve cEigrpUMcasts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpRMcasts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpRMcasts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpRMcasts"
                  ]
                },
                "description": "Retrieve cEigrpRMcasts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpUUcasts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpUUcasts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpUUcasts"
                  ]
                },
                "description": "Retrieve cEigrpUUcasts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpRUcasts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpRUcasts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpRUcasts"
                  ]
                },
                "description": "Retrieve cEigrpRUcasts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpMcastExcepts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpMcastExcepts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpMcastExcepts"
                  ]
                },
                "description": "Retrieve cEigrpMcastExcepts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpCRpkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpCRpkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpCRpkts"
                  ]
                },
                "description": "Retrieve cEigrpCRpkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpAcksSuppressed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpAcksSuppressed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpAcksSuppressed"
                  ]
                },
                "description": "Retrieve cEigrpAcksSuppressed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpRetransSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpRetransSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpRetransSent"
                  ]
                },
                "description": "Retrieve cEigrpRetransSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpOOSrvcd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpOOSrvcd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpOOSrvcd"
                  ]
                },
                "description": "Retrieve cEigrpOOSrvcd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpAuthMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpAuthMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpAuthMode"
                  ]
                },
                "description": "Retrieve cEigrpAuthMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpAuthKeyChain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/cEigrpInterfaceEntry/cEigrpAuthKeyChain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "cEigrpInterfaceEntry",
                    "cEigrpAuthKeyChain"
                  ]
                },
                "description": "Retrieve cEigrpAuthKeyChain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpVpnId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-1/cEigrpVpnId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-1",
                    "cEigrpVpnId"
                  ]
                },
                "description": "Retrieve cEigrpVpnId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpAsNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-1/cEigrpAsNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-1",
                    "cEigrpAsNumber"
                  ]
                },
                "description": "Retrieve cEigrpAsNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpHandle",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-1/cEigrpHandle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-1",
                    "cEigrpHandle"
                  ]
                },
                "description": "Retrieve cEigrpHandle from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpPeerAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-1/cEigrpPeerAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-1",
                    "cEigrpPeerAddrType"
                  ]
                },
                "description": "Retrieve cEigrpPeerAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpVpnId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-2/cEigrpVpnId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-2",
                    "cEigrpVpnId"
                  ]
                },
                "description": "Retrieve cEigrpVpnId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpAsNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-2/cEigrpAsNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-2",
                    "cEigrpAsNumber"
                  ]
                },
                "description": "Retrieve cEigrpAsNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpHandle",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-2/cEigrpHandle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-2",
                    "cEigrpHandle"
                  ]
                },
                "description": "Retrieve cEigrpHandle from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpPeerAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-2/cEigrpPeerAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-2",
                    "cEigrpPeerAddr"
                  ]
                },
                "description": "Retrieve cEigrpPeerAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpVpnId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-3/cEigrpVpnId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-3",
                    "cEigrpVpnId"
                  ]
                },
                "description": "Retrieve cEigrpVpnId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpAsNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-3/cEigrpAsNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-3",
                    "cEigrpAsNumber"
                  ]
                },
                "description": "Retrieve cEigrpAsNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpDestNetType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-3/cEigrpDestNetType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-3",
                    "cEigrpDestNetType"
                  ]
                },
                "description": "Retrieve cEigrpDestNetType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpDestNet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-3/cEigrpDestNet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-3",
                    "cEigrpDestNet"
                  ]
                },
                "description": "Retrieve cEigrpDestNet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpDestNetPrefixLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-3/cEigrpDestNetPrefixLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-3",
                    "cEigrpDestNetPrefixLen"
                  ]
                },
                "description": "Retrieve cEigrpDestNetPrefixLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEigrpStuckInActive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EIGRP-MIB:CISCO-EIGRP-MIB/cEigrpInterfaceTable/object-3/cEigrpStuckInActive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EIGRP-MIB:CISCO-EIGRP-MIB",
                    "cEigrpInterfaceTable",
                    "object-3",
                    "cEigrpStuckInActive"
                  ]
                },
                "description": "Retrieve cEigrpStuckInActive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-EMBEDDED-EVENT-MGR-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-EMBEDDED-EVENT-MGR-MIB\n\nMIB data from `CISCO-EMBEDDED-EVENT-MGR-MIB` module.\n\n**Root containers:** 1 (CISCO-EMBEDDED-EVENT-MGR-MIB)\n**Paths:** 74 | **Descendants:** 93\n\nAll endpoints are read-only (GET).\n\nEndpoints: 74 | Operations: 74",
          "item": [
            {
              "name": "GET Get CISCO-EMBEDDED-EVENT-MGR-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB"
                  ]
                },
                "description": "Retrieve CISCO-EMBEDDED-EVENT-MGR-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistory",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistory",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistory"
                  ]
                },
                "description": "Retrieve ceemHistory from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryMaxEventEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistory/ceemHistoryMaxEventEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistory",
                    "ceemHistoryMaxEventEntries"
                  ]
                },
                "description": "Retrieve ceemHistoryMaxEventEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryLastEventEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistory/ceemHistoryLastEventEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistory",
                    "ceemHistoryLastEventEntry"
                  ]
                },
                "description": "Retrieve ceemHistoryLastEventEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemEventMapTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemEventMapTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemEventMapTable"
                  ]
                },
                "description": "Retrieve ceemEventMapTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemEventMapEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemEventMapTable/ceemEventMapEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemEventMapTable",
                    "ceemEventMapEntry"
                  ]
                },
                "description": "Retrieve ceemEventMapEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemEventMapTable/ceemEventMapEntry/ceemEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemEventMapTable",
                    "ceemEventMapEntry",
                    "ceemEventIndex"
                  ]
                },
                "description": "Retrieve ceemEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemEventName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemEventMapTable/ceemEventMapEntry/ceemEventName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemEventMapTable",
                    "ceemEventMapEntry",
                    "ceemEventName"
                  ]
                },
                "description": "Retrieve ceemEventName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemEventDescrText",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemEventMapTable/ceemEventMapEntry/ceemEventDescrText",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemEventMapTable",
                    "ceemEventMapEntry",
                    "ceemEventDescrText"
                  ]
                },
                "description": "Retrieve ceemEventDescrText from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable"
                  ]
                },
                "description": "Retrieve ceemHistoryEventTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry"
                  ]
                },
                "description": "Retrieve ceemHistoryEventEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry/ceemHistoryEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry",
                    "ceemHistoryEventIndex"
                  ]
                },
                "description": "Retrieve ceemHistoryEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventType1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry/ceemHistoryEventType1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry",
                    "ceemHistoryEventType1"
                  ]
                },
                "description": "Retrieve ceemHistoryEventType1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventType2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry/ceemHistoryEventType2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry",
                    "ceemHistoryEventType2"
                  ]
                },
                "description": "Retrieve ceemHistoryEventType2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventType3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry/ceemHistoryEventType3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry",
                    "ceemHistoryEventType3"
                  ]
                },
                "description": "Retrieve ceemHistoryEventType3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventType4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry/ceemHistoryEventType4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry",
                    "ceemHistoryEventType4"
                  ]
                },
                "description": "Retrieve ceemHistoryEventType4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryPolicyPath",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry/ceemHistoryPolicyPath",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry",
                    "ceemHistoryPolicyPath"
                  ]
                },
                "description": "Retrieve ceemHistoryPolicyPath from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryPolicyName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry/ceemHistoryPolicyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry",
                    "ceemHistoryPolicyName"
                  ]
                },
                "description": "Retrieve ceemHistoryPolicyName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryPolicyExitStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry/ceemHistoryPolicyExitStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry",
                    "ceemHistoryPolicyExitStatus"
                  ]
                },
                "description": "Retrieve ceemHistoryPolicyExitStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryPolicyIntData1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry/ceemHistoryPolicyIntData1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry",
                    "ceemHistoryPolicyIntData1"
                  ]
                },
                "description": "Retrieve ceemHistoryPolicyIntData1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryPolicyIntData2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry/ceemHistoryPolicyIntData2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry",
                    "ceemHistoryPolicyIntData2"
                  ]
                },
                "description": "Retrieve ceemHistoryPolicyIntData2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryPolicyStrData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry/ceemHistoryPolicyStrData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry",
                    "ceemHistoryPolicyStrData"
                  ]
                },
                "description": "Retrieve ceemHistoryPolicyStrData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryNotifyType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry/ceemHistoryNotifyType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry",
                    "ceemHistoryNotifyType"
                  ]
                },
                "description": "Retrieve ceemHistoryNotifyType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventType5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry/ceemHistoryEventType5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry",
                    "ceemHistoryEventType5"
                  ]
                },
                "description": "Retrieve ceemHistoryEventType5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventType6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry/ceemHistoryEventType6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry",
                    "ceemHistoryEventType6"
                  ]
                },
                "description": "Retrieve ceemHistoryEventType6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventType7",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry/ceemHistoryEventType7",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry",
                    "ceemHistoryEventType7"
                  ]
                },
                "description": "Retrieve ceemHistoryEventType7 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventType8",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemHistoryEventTable/ceemHistoryEventEntry/ceemHistoryEventType8",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemHistoryEventTable",
                    "ceemHistoryEventEntry",
                    "ceemHistoryEventType8"
                  ]
                },
                "description": "Retrieve ceemHistoryEventType8 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyIndex"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyName"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyEventType1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyEventType1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyEventType1"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyEventType1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyEventType2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyEventType2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyEventType2"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyEventType2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyEventType3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyEventType3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyEventType3"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyEventType3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyEventType4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyEventType4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyEventType4"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyEventType4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyStatus"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyType"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyNotifFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyNotifFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyNotifFlag"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyNotifFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyRegTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyRegTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyRegTime"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyRegTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyEnabledTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyEnabledTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyEnabledTime"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyEnabledTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyRunTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyRunTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyRunTime"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyRunTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyRunCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyRunCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyRunCount"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyRunCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyEventType5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyEventType5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyEventType5"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyEventType5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyEventType6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyEventType6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyEventType6"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyEventType6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyEventType7",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyEventType7",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyEventType7"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyEventType7 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemRegisteredPolicyEventType8",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/ceemRegisteredPolicyEntry/ceemRegisteredPolicyEventType8",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "ceemRegisteredPolicyEntry",
                    "ceemRegisteredPolicyEventType8"
                  ]
                },
                "description": "Retrieve ceemRegisteredPolicyEventType8 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-1/ceemHistoryEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-1",
                    "ceemHistoryEventIndex"
                  ]
                },
                "description": "Retrieve ceemHistoryEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventType1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-1/ceemHistoryEventType1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-1",
                    "ceemHistoryEventType1"
                  ]
                },
                "description": "Retrieve ceemHistoryEventType1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-2/ceemHistoryEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-2",
                    "ceemHistoryEventIndex"
                  ]
                },
                "description": "Retrieve ceemHistoryEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventType2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-2/ceemHistoryEventType2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-2",
                    "ceemHistoryEventType2"
                  ]
                },
                "description": "Retrieve ceemHistoryEventType2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-3/ceemHistoryEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-3",
                    "ceemHistoryEventIndex"
                  ]
                },
                "description": "Retrieve ceemHistoryEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventType3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-3/ceemHistoryEventType3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-3",
                    "ceemHistoryEventType3"
                  ]
                },
                "description": "Retrieve ceemHistoryEventType3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-4/ceemHistoryEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-4",
                    "ceemHistoryEventIndex"
                  ]
                },
                "description": "Retrieve ceemHistoryEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventType4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-4/ceemHistoryEventType4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-4",
                    "ceemHistoryEventType4"
                  ]
                },
                "description": "Retrieve ceemHistoryEventType4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-5/ceemHistoryEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-5",
                    "ceemHistoryEventIndex"
                  ]
                },
                "description": "Retrieve ceemHistoryEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryPolicyPath",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-5/ceemHistoryPolicyPath",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-5",
                    "ceemHistoryPolicyPath"
                  ]
                },
                "description": "Retrieve ceemHistoryPolicyPath from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-6"
                  ]
                },
                "description": "Retrieve object-6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-6/ceemHistoryEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-6",
                    "ceemHistoryEventIndex"
                  ]
                },
                "description": "Retrieve ceemHistoryEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryPolicyName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-6/ceemHistoryPolicyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-6",
                    "ceemHistoryPolicyName"
                  ]
                },
                "description": "Retrieve ceemHistoryPolicyName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-7",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-7",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-7"
                  ]
                },
                "description": "Retrieve object-7 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-7/ceemHistoryEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-7",
                    "ceemHistoryEventIndex"
                  ]
                },
                "description": "Retrieve ceemHistoryEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryPolicyExitStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-7/ceemHistoryPolicyExitStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-7",
                    "ceemHistoryPolicyExitStatus"
                  ]
                },
                "description": "Retrieve ceemHistoryPolicyExitStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryPolicyIntData1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-7/ceemHistoryPolicyIntData1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-7",
                    "ceemHistoryPolicyIntData1"
                  ]
                },
                "description": "Retrieve ceemHistoryPolicyIntData1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-8",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-8",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-8"
                  ]
                },
                "description": "Retrieve object-8 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-8/ceemHistoryEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-8",
                    "ceemHistoryEventIndex"
                  ]
                },
                "description": "Retrieve ceemHistoryEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryPolicyIntData2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-8/ceemHistoryPolicyIntData2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-8",
                    "ceemHistoryPolicyIntData2"
                  ]
                },
                "description": "Retrieve ceemHistoryPolicyIntData2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-9",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-9",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-9"
                  ]
                },
                "description": "Retrieve object-9 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-9/ceemHistoryEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-9",
                    "ceemHistoryEventIndex"
                  ]
                },
                "description": "Retrieve ceemHistoryEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceemHistoryPolicyStrData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB/ceemRegisteredPolicyTable/object-9/ceemHistoryPolicyStrData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-EMBEDDED-EVENT-MGR-MIB:CISCO-EMBEDDED-EVENT-MGR-MIB",
                    "ceemRegisteredPolicyTable",
                    "object-9",
                    "ceemHistoryPolicyStrData"
                  ]
                },
                "description": "Retrieve ceemHistoryPolicyStrData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-ENHANCED-MEMPOOL-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-ENHANCED-MEMPOOL-MIB\n\nMIB data from `CISCO-ENHANCED-MEMPOOL-MIB` module.\n\n**Root containers:** 1 (CISCO-ENHANCED-MEMPOOL-MIB)\n**Paths:** 82 | **Descendants:** 81\n\nAll endpoints are read-only (GET).\n\nEndpoints: 82 | Operations: 82",
          "item": [
            {
              "name": "GET Get CISCO-ENHANCED-MEMPOOL-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB"
                  ]
                },
                "description": "Retrieve CISCO-ENHANCED-MEMPOOL-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempNotificationConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempNotificationConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempNotificationConfig"
                  ]
                },
                "description": "Retrieve cempNotificationConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferNotifyEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempNotificationConfig/cempMemBufferNotifyEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempNotificationConfig",
                    "cempMemBufferNotifyEnabled"
                  ]
                },
                "description": "Retrieve cempMemBufferNotifyEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable"
                  ]
                },
                "description": "Retrieve cempMemPoolTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry"
                  ]
                },
                "description": "Retrieve cempMemPoolEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolIndex"
                  ]
                },
                "description": "Retrieve cempMemPoolIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolType"
                  ]
                },
                "description": "Retrieve cempMemPoolType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolName"
                  ]
                },
                "description": "Retrieve cempMemPoolName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolPlatformMemory",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolPlatformMemory",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolPlatformMemory"
                  ]
                },
                "description": "Retrieve cempMemPoolPlatformMemory from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolAlternate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolAlternate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolAlternate"
                  ]
                },
                "description": "Retrieve cempMemPoolAlternate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolValid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolValid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolValid"
                  ]
                },
                "description": "Retrieve cempMemPoolValid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolUsed"
                  ]
                },
                "description": "Retrieve cempMemPoolUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolFree"
                  ]
                },
                "description": "Retrieve cempMemPoolFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolLargestFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolLargestFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolLargestFree"
                  ]
                },
                "description": "Retrieve cempMemPoolLargestFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolLowestFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolLowestFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolLowestFree"
                  ]
                },
                "description": "Retrieve cempMemPoolLowestFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolUsedLowWaterMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolUsedLowWaterMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolUsedLowWaterMark"
                  ]
                },
                "description": "Retrieve cempMemPoolUsedLowWaterMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolAllocHit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolAllocHit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolAllocHit"
                  ]
                },
                "description": "Retrieve cempMemPoolAllocHit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolAllocMiss",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolAllocMiss",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolAllocMiss"
                  ]
                },
                "description": "Retrieve cempMemPoolAllocMiss from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolFreeHit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolFreeHit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolFreeHit"
                  ]
                },
                "description": "Retrieve cempMemPoolFreeHit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolFreeMiss",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolFreeMiss",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolFreeMiss"
                  ]
                },
                "description": "Retrieve cempMemPoolFreeMiss from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolShared",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolShared",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolShared"
                  ]
                },
                "description": "Retrieve cempMemPoolShared from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolUsedOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolUsedOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolUsedOvrflw"
                  ]
                },
                "description": "Retrieve cempMemPoolUsedOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolHCUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolHCUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolHCUsed"
                  ]
                },
                "description": "Retrieve cempMemPoolHCUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolFreeOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolFreeOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolFreeOvrflw"
                  ]
                },
                "description": "Retrieve cempMemPoolFreeOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolHCFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolHCFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolHCFree"
                  ]
                },
                "description": "Retrieve cempMemPoolHCFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolLargestFreeOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolLargestFreeOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolLargestFreeOvrflw"
                  ]
                },
                "description": "Retrieve cempMemPoolLargestFreeOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolHCLargestFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolHCLargestFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolHCLargestFree"
                  ]
                },
                "description": "Retrieve cempMemPoolHCLargestFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolLowestFreeOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolLowestFreeOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolLowestFreeOvrflw"
                  ]
                },
                "description": "Retrieve cempMemPoolLowestFreeOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolHCLowestFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolHCLowestFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolHCLowestFree"
                  ]
                },
                "description": "Retrieve cempMemPoolHCLowestFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolUsedLowWaterMarkOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolUsedLowWaterMarkOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolUsedLowWaterMarkOvrflw"
                  ]
                },
                "description": "Retrieve cempMemPoolUsedLowWaterMarkOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolHCUsedLowWaterMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolHCUsedLowWaterMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolHCUsedLowWaterMark"
                  ]
                },
                "description": "Retrieve cempMemPoolHCUsedLowWaterMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolSharedOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolSharedOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolSharedOvrflw"
                  ]
                },
                "description": "Retrieve cempMemPoolSharedOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemPoolHCShared",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemPoolTable/cempMemPoolEntry/cempMemPoolHCShared",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemPoolTable",
                    "cempMemPoolEntry",
                    "cempMemPoolHCShared"
                  ]
                },
                "description": "Retrieve cempMemPoolHCShared from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferPoolTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable"
                  ]
                },
                "description": "Retrieve cempMemBufferPoolTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferPoolEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry"
                  ]
                },
                "description": "Retrieve cempMemBufferPoolEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferPoolIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferPoolIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferPoolIndex"
                  ]
                },
                "description": "Retrieve cempMemBufferPoolIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferMemPoolIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferMemPoolIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferMemPoolIndex"
                  ]
                },
                "description": "Retrieve cempMemBufferMemPoolIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferName"
                  ]
                },
                "description": "Retrieve cempMemBufferName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferDynamic",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferDynamic",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferDynamic"
                  ]
                },
                "description": "Retrieve cempMemBufferDynamic from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferSize"
                  ]
                },
                "description": "Retrieve cempMemBufferSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferMin"
                  ]
                },
                "description": "Retrieve cempMemBufferMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferMax"
                  ]
                },
                "description": "Retrieve cempMemBufferMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferPermanent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferPermanent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferPermanent"
                  ]
                },
                "description": "Retrieve cempMemBufferPermanent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferTransient",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferTransient",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferTransient"
                  ]
                },
                "description": "Retrieve cempMemBufferTransient from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferTotal"
                  ]
                },
                "description": "Retrieve cempMemBufferTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferFree"
                  ]
                },
                "description": "Retrieve cempMemBufferFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferHit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferHit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferHit"
                  ]
                },
                "description": "Retrieve cempMemBufferHit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferMiss",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferMiss",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferMiss"
                  ]
                },
                "description": "Retrieve cempMemBufferMiss from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferFreeHit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferFreeHit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferFreeHit"
                  ]
                },
                "description": "Retrieve cempMemBufferFreeHit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferFreeMiss",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferFreeMiss",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferFreeMiss"
                  ]
                },
                "description": "Retrieve cempMemBufferFreeMiss from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferPermChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferPermChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferPermChange"
                  ]
                },
                "description": "Retrieve cempMemBufferPermChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferPeak",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferPeak",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferPeak"
                  ]
                },
                "description": "Retrieve cempMemBufferPeak from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferPeakTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferPeakTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferPeakTime"
                  ]
                },
                "description": "Retrieve cempMemBufferPeakTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferTrim",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferTrim",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferTrim"
                  ]
                },
                "description": "Retrieve cempMemBufferTrim from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferGrow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferGrow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferGrow"
                  ]
                },
                "description": "Retrieve cempMemBufferGrow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferFailures"
                  ]
                },
                "description": "Retrieve cempMemBufferFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferNoStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferPoolTable/cempMemBufferPoolEntry/cempMemBufferNoStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferPoolTable",
                    "cempMemBufferPoolEntry",
                    "cempMemBufferNoStorage"
                  ]
                },
                "description": "Retrieve cempMemBufferNoStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferCachePoolTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable"
                  ]
                },
                "description": "Retrieve cempMemBufferCachePoolTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferCachePoolEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/cempMemBufferCachePoolEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "cempMemBufferCachePoolEntry"
                  ]
                },
                "description": "Retrieve cempMemBufferCachePoolEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/cempMemBufferCachePoolEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "cempMemBufferCachePoolEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferPoolIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/cempMemBufferCachePoolEntry/cempMemBufferPoolIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "cempMemBufferCachePoolEntry",
                    "cempMemBufferPoolIndex"
                  ]
                },
                "description": "Retrieve cempMemBufferPoolIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferCacheSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/cempMemBufferCachePoolEntry/cempMemBufferCacheSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "cempMemBufferCachePoolEntry",
                    "cempMemBufferCacheSize"
                  ]
                },
                "description": "Retrieve cempMemBufferCacheSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferCacheTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/cempMemBufferCachePoolEntry/cempMemBufferCacheTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "cempMemBufferCachePoolEntry",
                    "cempMemBufferCacheTotal"
                  ]
                },
                "description": "Retrieve cempMemBufferCacheTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferCacheUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/cempMemBufferCachePoolEntry/cempMemBufferCacheUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "cempMemBufferCachePoolEntry",
                    "cempMemBufferCacheUsed"
                  ]
                },
                "description": "Retrieve cempMemBufferCacheUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferCacheHit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/cempMemBufferCachePoolEntry/cempMemBufferCacheHit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "cempMemBufferCachePoolEntry",
                    "cempMemBufferCacheHit"
                  ]
                },
                "description": "Retrieve cempMemBufferCacheHit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferCacheMiss",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/cempMemBufferCachePoolEntry/cempMemBufferCacheMiss",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "cempMemBufferCachePoolEntry",
                    "cempMemBufferCacheMiss"
                  ]
                },
                "description": "Retrieve cempMemBufferCacheMiss from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferCacheThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/cempMemBufferCachePoolEntry/cempMemBufferCacheThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "cempMemBufferCachePoolEntry",
                    "cempMemBufferCacheThreshold"
                  ]
                },
                "description": "Retrieve cempMemBufferCacheThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferCacheThresholdCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/cempMemBufferCachePoolEntry/cempMemBufferCacheThresholdCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "cempMemBufferCachePoolEntry",
                    "cempMemBufferCacheThresholdCount"
                  ]
                },
                "description": "Retrieve cempMemBufferCacheThresholdCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/object-1/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "object-1",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferPoolIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/object-1/cempMemBufferPoolIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "object-1",
                    "cempMemBufferPoolIndex"
                  ]
                },
                "description": "Retrieve cempMemBufferPoolIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/object-1/cempMemBufferName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "object-1",
                    "cempMemBufferName"
                  ]
                },
                "description": "Retrieve cempMemBufferName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/object-2/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "object-2",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferPoolIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/object-2/cempMemBufferPoolIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "object-2",
                    "cempMemBufferPoolIndex"
                  ]
                },
                "description": "Retrieve cempMemBufferPoolIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferPeak",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/object-2/cempMemBufferPeak",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "object-2",
                    "cempMemBufferPeak"
                  ]
                },
                "description": "Retrieve cempMemBufferPeak from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/object-3/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "object-3",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferPoolIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/object-3/cempMemBufferPoolIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "object-3",
                    "cempMemBufferPoolIndex"
                  ]
                },
                "description": "Retrieve cempMemBufferPoolIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cempMemBufferPeakTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/cempMemBufferCachePoolTable/object-3/cempMemBufferPeakTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB",
                    "cempMemBufferCachePoolTable",
                    "object-3",
                    "cempMemBufferPeakTime"
                  ]
                },
                "description": "Retrieve cempMemBufferPeakTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-ENTITY-ALARM-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-ENTITY-ALARM-MIB\n\nMIB data from `CISCO-ENTITY-ALARM-MIB` module.\n\n**Root containers:** 1 (CISCO-ENTITY-ALARM-MIB)\n**Paths:** 57 | **Descendants:** 68\n\nAll endpoints are read-only (GET).\n\nEndpoints: 57 | Operations: 57",
          "item": [
            {
              "name": "GET Get CISCO-ENTITY-ALARM-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB"
                  ]
                },
                "description": "Retrieve CISCO-ENTITY-ALARM-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmMonitoring",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmMonitoring",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmMonitoring"
                  ]
                },
                "description": "Retrieve ceAlarmMonitoring from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmCriticalCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmMonitoring/ceAlarmCriticalCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmMonitoring",
                    "ceAlarmCriticalCount"
                  ]
                },
                "description": "Retrieve ceAlarmCriticalCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmMajorCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmMonitoring/ceAlarmMajorCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmMonitoring",
                    "ceAlarmMajorCount"
                  ]
                },
                "description": "Retrieve ceAlarmMajorCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmMinorCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmMonitoring/ceAlarmMinorCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmMonitoring",
                    "ceAlarmMinorCount"
                  ]
                },
                "description": "Retrieve ceAlarmMinorCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmCutOff",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmMonitoring/ceAlarmCutOff",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmMonitoring",
                    "ceAlarmCutOff"
                  ]
                },
                "description": "Retrieve ceAlarmCutOff from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistory",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmHistory",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmHistory"
                  ]
                },
                "description": "Retrieve ceAlarmHistory from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistTableSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmHistory/ceAlarmHistTableSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmHistory",
                    "ceAlarmHistTableSize"
                  ]
                },
                "description": "Retrieve ceAlarmHistTableSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistLastIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmHistory/ceAlarmHistLastIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmHistory",
                    "ceAlarmHistLastIndex"
                  ]
                },
                "description": "Retrieve ceAlarmHistLastIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmFiltering",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFiltering",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFiltering"
                  ]
                },
                "description": "Retrieve ceAlarmFiltering from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmNotifiesEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFiltering/ceAlarmNotifiesEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFiltering",
                    "ceAlarmNotifiesEnable"
                  ]
                },
                "description": "Retrieve ceAlarmNotifiesEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmSyslogEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFiltering/ceAlarmSyslogEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFiltering",
                    "ceAlarmSyslogEnable"
                  ]
                },
                "description": "Retrieve ceAlarmSyslogEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmFilterProfileIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFiltering/ceAlarmFilterProfileIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFiltering",
                    "ceAlarmFilterProfileIndexNext"
                  ]
                },
                "description": "Retrieve ceAlarmFilterProfileIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmDescrMapTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmDescrMapTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmDescrMapTable"
                  ]
                },
                "description": "Retrieve ceAlarmDescrMapTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmDescrMapEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmDescrMapTable/ceAlarmDescrMapEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmDescrMapTable",
                    "ceAlarmDescrMapEntry"
                  ]
                },
                "description": "Retrieve ceAlarmDescrMapEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmDescrIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmDescrMapTable/ceAlarmDescrMapEntry/ceAlarmDescrIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmDescrMapTable",
                    "ceAlarmDescrMapEntry",
                    "ceAlarmDescrIndex"
                  ]
                },
                "description": "Retrieve ceAlarmDescrIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmDescrVendorType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmDescrMapTable/ceAlarmDescrMapEntry/ceAlarmDescrVendorType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmDescrMapTable",
                    "ceAlarmDescrMapEntry",
                    "ceAlarmDescrVendorType"
                  ]
                },
                "description": "Retrieve ceAlarmDescrVendorType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmDescrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmDescrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmDescrTable"
                  ]
                },
                "description": "Retrieve ceAlarmDescrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmDescrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmDescrTable/ceAlarmDescrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmDescrTable",
                    "ceAlarmDescrEntry"
                  ]
                },
                "description": "Retrieve ceAlarmDescrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmDescrIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmDescrTable/ceAlarmDescrEntry/ceAlarmDescrIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmDescrTable",
                    "ceAlarmDescrEntry",
                    "ceAlarmDescrIndex"
                  ]
                },
                "description": "Retrieve ceAlarmDescrIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmDescrAlarmType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmDescrTable/ceAlarmDescrEntry/ceAlarmDescrAlarmType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmDescrTable",
                    "ceAlarmDescrEntry",
                    "ceAlarmDescrAlarmType"
                  ]
                },
                "description": "Retrieve ceAlarmDescrAlarmType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmDescrSeverity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmDescrTable/ceAlarmDescrEntry/ceAlarmDescrSeverity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmDescrTable",
                    "ceAlarmDescrEntry",
                    "ceAlarmDescrSeverity"
                  ]
                },
                "description": "Retrieve ceAlarmDescrSeverity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmDescrText",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmDescrTable/ceAlarmDescrEntry/ceAlarmDescrText",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmDescrTable",
                    "ceAlarmDescrEntry",
                    "ceAlarmDescrText"
                  ]
                },
                "description": "Retrieve ceAlarmDescrText from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmTable"
                  ]
                },
                "description": "Retrieve ceAlarmTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmTable/ceAlarmEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmTable",
                    "ceAlarmEntry"
                  ]
                },
                "description": "Retrieve ceAlarmEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmTable/ceAlarmEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmTable",
                    "ceAlarmEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmFilterProfile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmTable/ceAlarmEntry/ceAlarmFilterProfile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmTable",
                    "ceAlarmEntry",
                    "ceAlarmFilterProfile"
                  ]
                },
                "description": "Retrieve ceAlarmFilterProfile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmSeverity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmTable/ceAlarmEntry/ceAlarmSeverity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmTable",
                    "ceAlarmEntry",
                    "ceAlarmSeverity"
                  ]
                },
                "description": "Retrieve ceAlarmSeverity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmList",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmTable/ceAlarmEntry/ceAlarmList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmTable",
                    "ceAlarmEntry",
                    "ceAlarmList"
                  ]
                },
                "description": "Retrieve ceAlarmList from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmHistTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmHistTable"
                  ]
                },
                "description": "Retrieve ceAlarmHistTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmHistTable/ceAlarmHistEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmHistTable",
                    "ceAlarmHistEntry"
                  ]
                },
                "description": "Retrieve ceAlarmHistEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmHistTable/ceAlarmHistEntry/ceAlarmHistIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmHistTable",
                    "ceAlarmHistEntry",
                    "ceAlarmHistIndex"
                  ]
                },
                "description": "Retrieve ceAlarmHistIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmHistTable/ceAlarmHistEntry/ceAlarmHistType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmHistTable",
                    "ceAlarmHistEntry",
                    "ceAlarmHistType"
                  ]
                },
                "description": "Retrieve ceAlarmHistType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistEntPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmHistTable/ceAlarmHistEntry/ceAlarmHistEntPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmHistTable",
                    "ceAlarmHistEntry",
                    "ceAlarmHistEntPhysicalIndex"
                  ]
                },
                "description": "Retrieve ceAlarmHistEntPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistAlarmType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmHistTable/ceAlarmHistEntry/ceAlarmHistAlarmType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmHistTable",
                    "ceAlarmHistEntry",
                    "ceAlarmHistAlarmType"
                  ]
                },
                "description": "Retrieve ceAlarmHistAlarmType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistSeverity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmHistTable/ceAlarmHistEntry/ceAlarmHistSeverity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmHistTable",
                    "ceAlarmHistEntry",
                    "ceAlarmHistSeverity"
                  ]
                },
                "description": "Retrieve ceAlarmHistSeverity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistTimeStamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmHistTable/ceAlarmHistEntry/ceAlarmHistTimeStamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmHistTable",
                    "ceAlarmHistEntry",
                    "ceAlarmHistTimeStamp"
                  ]
                },
                "description": "Retrieve ceAlarmHistTimeStamp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmFilterProfileTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable"
                  ]
                },
                "description": "Retrieve ceAlarmFilterProfileTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmFilterProfileEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/ceAlarmFilterProfileEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "ceAlarmFilterProfileEntry"
                  ]
                },
                "description": "Retrieve ceAlarmFilterProfileEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmFilterIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/ceAlarmFilterProfileEntry/ceAlarmFilterIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "ceAlarmFilterProfileEntry",
                    "ceAlarmFilterIndex"
                  ]
                },
                "description": "Retrieve ceAlarmFilterIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmFilterStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/ceAlarmFilterProfileEntry/ceAlarmFilterStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "ceAlarmFilterProfileEntry",
                    "ceAlarmFilterStatus"
                  ]
                },
                "description": "Retrieve ceAlarmFilterStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmFilterAlias",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/ceAlarmFilterProfileEntry/ceAlarmFilterAlias",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "ceAlarmFilterProfileEntry",
                    "ceAlarmFilterAlias"
                  ]
                },
                "description": "Retrieve ceAlarmFilterAlias from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmFilterAlarmsEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/ceAlarmFilterProfileEntry/ceAlarmFilterAlarmsEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "ceAlarmFilterProfileEntry",
                    "ceAlarmFilterAlarmsEnabled"
                  ]
                },
                "description": "Retrieve ceAlarmFilterAlarmsEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmFilterNotifiesEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/ceAlarmFilterProfileEntry/ceAlarmFilterNotifiesEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "ceAlarmFilterProfileEntry",
                    "ceAlarmFilterNotifiesEnabled"
                  ]
                },
                "description": "Retrieve ceAlarmFilterNotifiesEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmFilterSyslogEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/ceAlarmFilterProfileEntry/ceAlarmFilterSyslogEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "ceAlarmFilterProfileEntry",
                    "ceAlarmFilterSyslogEnabled"
                  ]
                },
                "description": "Retrieve ceAlarmFilterSyslogEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/object-1/ceAlarmHistIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "object-1",
                    "ceAlarmHistIndex"
                  ]
                },
                "description": "Retrieve ceAlarmHistIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistEntPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/object-1/ceAlarmHistEntPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "object-1",
                    "ceAlarmHistEntPhysicalIndex"
                  ]
                },
                "description": "Retrieve ceAlarmHistEntPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/object-2/ceAlarmHistIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "object-2",
                    "ceAlarmHistIndex"
                  ]
                },
                "description": "Retrieve ceAlarmHistIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistAlarmType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/object-2/ceAlarmHistAlarmType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "object-2",
                    "ceAlarmHistAlarmType"
                  ]
                },
                "description": "Retrieve ceAlarmHistAlarmType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/object-3/ceAlarmHistIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "object-3",
                    "ceAlarmHistIndex"
                  ]
                },
                "description": "Retrieve ceAlarmHistIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistSeverity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/object-3/ceAlarmHistSeverity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "object-3",
                    "ceAlarmHistSeverity"
                  ]
                },
                "description": "Retrieve ceAlarmHistSeverity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/object-4/ceAlarmHistIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "object-4",
                    "ceAlarmHistIndex"
                  ]
                },
                "description": "Retrieve ceAlarmHistIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceAlarmHistTimeStamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB/ceAlarmFilterProfileTable/object-4/ceAlarmHistTimeStamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-ALARM-MIB:CISCO-ENTITY-ALARM-MIB",
                    "ceAlarmFilterProfileTable",
                    "object-4",
                    "ceAlarmHistTimeStamp"
                  ]
                },
                "description": "Retrieve ceAlarmHistTimeStamp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-ENTITY-EXT-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-ENTITY-EXT-MIB\n\nMIB data from `CISCO-ENTITY-EXT-MIB` module.\n\n**Root containers:** 1 (CISCO-ENTITY-EXT-MIB)\n**Paths:** 22 | **Descendants:** 21\n\nAll endpoints are read-only (GET).\n\nEndpoints: 22 | Operations: 22",
          "item": [
            {
              "name": "GET Get CISCO-ENTITY-EXT-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB"
                  ]
                },
                "description": "Retrieve CISCO-ENTITY-EXT-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtPhysicalProcessorTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtPhysicalProcessorTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtPhysicalProcessorTable"
                  ]
                },
                "description": "Retrieve ceExtPhysicalProcessorTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtPhysicalProcessorEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtPhysicalProcessorTable/ceExtPhysicalProcessorEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtPhysicalProcessorTable",
                    "ceExtPhysicalProcessorEntry"
                  ]
                },
                "description": "Retrieve ceExtPhysicalProcessorEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtPhysicalProcessorTable/ceExtPhysicalProcessorEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtPhysicalProcessorTable",
                    "ceExtPhysicalProcessorEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtProcessorRam",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtPhysicalProcessorTable/ceExtPhysicalProcessorEntry/ceExtProcessorRam",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtPhysicalProcessorTable",
                    "ceExtPhysicalProcessorEntry",
                    "ceExtProcessorRam"
                  ]
                },
                "description": "Retrieve ceExtProcessorRam from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtNVRAMSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtPhysicalProcessorTable/ceExtPhysicalProcessorEntry/ceExtNVRAMSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtPhysicalProcessorTable",
                    "ceExtPhysicalProcessorEntry",
                    "ceExtNVRAMSize"
                  ]
                },
                "description": "Retrieve ceExtNVRAMSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtNVRAMUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtPhysicalProcessorTable/ceExtPhysicalProcessorEntry/ceExtNVRAMUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtPhysicalProcessorTable",
                    "ceExtPhysicalProcessorEntry",
                    "ceExtNVRAMUsed"
                  ]
                },
                "description": "Retrieve ceExtNVRAMUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtProcessorRamOverflow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtPhysicalProcessorTable/ceExtPhysicalProcessorEntry/ceExtProcessorRamOverflow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtPhysicalProcessorTable",
                    "ceExtPhysicalProcessorEntry",
                    "ceExtProcessorRamOverflow"
                  ]
                },
                "description": "Retrieve ceExtProcessorRamOverflow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtHCProcessorRam",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtPhysicalProcessorTable/ceExtPhysicalProcessorEntry/ceExtHCProcessorRam",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtPhysicalProcessorTable",
                    "ceExtPhysicalProcessorEntry",
                    "ceExtHCProcessorRam"
                  ]
                },
                "description": "Retrieve ceExtHCProcessorRam from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtConfigRegTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtConfigRegTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtConfigRegTable"
                  ]
                },
                "description": "Retrieve ceExtConfigRegTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtConfigRegEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtConfigRegTable/ceExtConfigRegEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtConfigRegTable",
                    "ceExtConfigRegEntry"
                  ]
                },
                "description": "Retrieve ceExtConfigRegEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtConfigRegTable/ceExtConfigRegEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtConfigRegTable",
                    "ceExtConfigRegEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtConfigRegister",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtConfigRegTable/ceExtConfigRegEntry/ceExtConfigRegister",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtConfigRegTable",
                    "ceExtConfigRegEntry",
                    "ceExtConfigRegister"
                  ]
                },
                "description": "Retrieve ceExtConfigRegister from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtConfigRegNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtConfigRegTable/ceExtConfigRegEntry/ceExtConfigRegNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtConfigRegTable",
                    "ceExtConfigRegEntry",
                    "ceExtConfigRegNext"
                  ]
                },
                "description": "Retrieve ceExtConfigRegNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtSysBootImageList",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtConfigRegTable/ceExtConfigRegEntry/ceExtSysBootImageList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtConfigRegTable",
                    "ceExtConfigRegEntry",
                    "ceExtSysBootImageList"
                  ]
                },
                "description": "Retrieve ceExtSysBootImageList from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtKickstartImageList",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtConfigRegTable/ceExtConfigRegEntry/ceExtKickstartImageList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtConfigRegTable",
                    "ceExtConfigRegEntry",
                    "ceExtKickstartImageList"
                  ]
                },
                "description": "Retrieve ceExtKickstartImageList from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtEntityLEDTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtEntityLEDTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtEntityLEDTable"
                  ]
                },
                "description": "Retrieve ceExtEntityLEDTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtEntityLEDEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtEntityLEDTable/ceExtEntityLEDEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtEntityLEDTable",
                    "ceExtEntityLEDEntry"
                  ]
                },
                "description": "Retrieve ceExtEntityLEDEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtEntityLEDTable/ceExtEntityLEDEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtEntityLEDTable",
                    "ceExtEntityLEDEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtEntityLEDType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtEntityLEDTable/ceExtEntityLEDEntry/ceExtEntityLEDType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtEntityLEDTable",
                    "ceExtEntityLEDEntry",
                    "ceExtEntityLEDType"
                  ]
                },
                "description": "Retrieve ceExtEntityLEDType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceExtEntityLEDColor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceExtEntityLEDTable/ceExtEntityLEDEntry/ceExtEntityLEDColor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceExtEntityLEDTable",
                    "ceExtEntityLEDEntry",
                    "ceExtEntityLEDColor"
                  ]
                },
                "description": "Retrieve ceExtEntityLEDColor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceEntPhysicalSecondSerialNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB/ceEntPhysicalSecondSerialNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-EXT-MIB:CISCO-ENTITY-EXT-MIB",
                    "ceEntPhysicalSecondSerialNum"
                  ]
                },
                "description": "Retrieve ceEntPhysicalSecondSerialNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-ENTITY-FRU-CONTROL-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-ENTITY-FRU-CONTROL-MIB\n\nMIB data from `CISCO-ENTITY-FRU-CONTROL-MIB` module.\n\n**Root containers:** 1 (CISCO-ENTITY-FRU-CONTROL-MIB)\n**Paths:** 126 | **Descendants:** 146\n\nAll endpoints are read-only (GET).\n\nEndpoints: 126 | Operations: 126",
          "item": [
            {
              "name": "GET Get CISCO-ENTITY-FRU-CONTROL-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB"
                  ]
                },
                "description": "Retrieve CISCO-ENTITY-FRU-CONTROL-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUPower",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPower",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPower"
                  ]
                },
                "description": "Retrieve cefcFRUPower from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcMaxDefaultHighInLinePower",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPower/cefcMaxDefaultHighInLinePower",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPower",
                    "cefcMaxDefaultHighInLinePower"
                  ]
                },
                "description": "Retrieve cefcMaxDefaultHighInLinePower from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcMIBNotificationEnables",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcMIBNotificationEnables",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcMIBNotificationEnables"
                  ]
                },
                "description": "Retrieve cefcMIBNotificationEnables from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcMIBEnableStatusNotification",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcMIBNotificationEnables/cefcMIBEnableStatusNotification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcMIBNotificationEnables",
                    "cefcMIBEnableStatusNotification"
                  ]
                },
                "description": "Retrieve cefcMIBEnableStatusNotification from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcEnablePSOutputChangeNotif",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcMIBNotificationEnables/cefcEnablePSOutputChangeNotif",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcMIBNotificationEnables",
                    "cefcEnablePSOutputChangeNotif"
                  ]
                },
                "description": "Retrieve cefcEnablePSOutputChangeNotif from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUPowerSupplyGroupTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyGroupTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyGroupTable"
                  ]
                },
                "description": "Retrieve cefcFRUPowerSupplyGroupTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUPowerSupplyGroupEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyGroupTable/cefcFRUPowerSupplyGroupEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyGroupTable",
                    "cefcFRUPowerSupplyGroupEntry"
                  ]
                },
                "description": "Retrieve cefcFRUPowerSupplyGroupEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyGroupTable/cefcFRUPowerSupplyGroupEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyGroupTable",
                    "cefcFRUPowerSupplyGroupEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPowerRedundancyMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyGroupTable/cefcFRUPowerSupplyGroupEntry/cefcPowerRedundancyMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyGroupTable",
                    "cefcFRUPowerSupplyGroupEntry",
                    "cefcPowerRedundancyMode"
                  ]
                },
                "description": "Retrieve cefcPowerRedundancyMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPowerUnits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyGroupTable/cefcFRUPowerSupplyGroupEntry/cefcPowerUnits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyGroupTable",
                    "cefcFRUPowerSupplyGroupEntry",
                    "cefcPowerUnits"
                  ]
                },
                "description": "Retrieve cefcPowerUnits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcTotalAvailableCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyGroupTable/cefcFRUPowerSupplyGroupEntry/cefcTotalAvailableCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyGroupTable",
                    "cefcFRUPowerSupplyGroupEntry",
                    "cefcTotalAvailableCurrent"
                  ]
                },
                "description": "Retrieve cefcTotalAvailableCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcTotalDrawnCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyGroupTable/cefcFRUPowerSupplyGroupEntry/cefcTotalDrawnCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyGroupTable",
                    "cefcFRUPowerSupplyGroupEntry",
                    "cefcTotalDrawnCurrent"
                  ]
                },
                "description": "Retrieve cefcTotalDrawnCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPowerRedundancyOperMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyGroupTable/cefcFRUPowerSupplyGroupEntry/cefcPowerRedundancyOperMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyGroupTable",
                    "cefcFRUPowerSupplyGroupEntry",
                    "cefcPowerRedundancyOperMode"
                  ]
                },
                "description": "Retrieve cefcPowerRedundancyOperMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPowerNonRedundantReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyGroupTable/cefcFRUPowerSupplyGroupEntry/cefcPowerNonRedundantReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyGroupTable",
                    "cefcFRUPowerSupplyGroupEntry",
                    "cefcPowerNonRedundantReason"
                  ]
                },
                "description": "Retrieve cefcPowerNonRedundantReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcTotalDrawnInlineCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyGroupTable/cefcFRUPowerSupplyGroupEntry/cefcTotalDrawnInlineCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyGroupTable",
                    "cefcFRUPowerSupplyGroupEntry",
                    "cefcTotalDrawnInlineCurrent"
                  ]
                },
                "description": "Retrieve cefcTotalDrawnInlineCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUPowerStatusTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerStatusTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerStatusTable"
                  ]
                },
                "description": "Retrieve cefcFRUPowerStatusTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUPowerStatusEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerStatusTable/cefcFRUPowerStatusEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerStatusTable",
                    "cefcFRUPowerStatusEntry"
                  ]
                },
                "description": "Retrieve cefcFRUPowerStatusEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerStatusTable/cefcFRUPowerStatusEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerStatusTable",
                    "cefcFRUPowerStatusEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUPowerAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerStatusTable/cefcFRUPowerStatusEntry/cefcFRUPowerAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerStatusTable",
                    "cefcFRUPowerStatusEntry",
                    "cefcFRUPowerAdminStatus"
                  ]
                },
                "description": "Retrieve cefcFRUPowerAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUPowerOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerStatusTable/cefcFRUPowerStatusEntry/cefcFRUPowerOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerStatusTable",
                    "cefcFRUPowerStatusEntry",
                    "cefcFRUPowerOperStatus"
                  ]
                },
                "description": "Retrieve cefcFRUPowerOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerStatusTable/cefcFRUPowerStatusEntry/cefcFRUCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerStatusTable",
                    "cefcFRUPowerStatusEntry",
                    "cefcFRUCurrent"
                  ]
                },
                "description": "Retrieve cefcFRUCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUPowerCapability",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerStatusTable/cefcFRUPowerStatusEntry/cefcFRUPowerCapability",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerStatusTable",
                    "cefcFRUPowerStatusEntry",
                    "cefcFRUPowerCapability"
                  ]
                },
                "description": "Retrieve cefcFRUPowerCapability from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRURealTimeCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerStatusTable/cefcFRUPowerStatusEntry/cefcFRURealTimeCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerStatusTable",
                    "cefcFRUPowerStatusEntry",
                    "cefcFRURealTimeCurrent"
                  ]
                },
                "description": "Retrieve cefcFRURealTimeCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUPowerSupplyValueTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyValueTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyValueTable"
                  ]
                },
                "description": "Retrieve cefcFRUPowerSupplyValueTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUPowerSupplyValueEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyValueTable/cefcFRUPowerSupplyValueEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyValueTable",
                    "cefcFRUPowerSupplyValueEntry"
                  ]
                },
                "description": "Retrieve cefcFRUPowerSupplyValueEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyValueTable/cefcFRUPowerSupplyValueEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyValueTable",
                    "cefcFRUPowerSupplyValueEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUTotalSystemCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyValueTable/cefcFRUPowerSupplyValueEntry/cefcFRUTotalSystemCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyValueTable",
                    "cefcFRUPowerSupplyValueEntry",
                    "cefcFRUTotalSystemCurrent"
                  ]
                },
                "description": "Retrieve cefcFRUTotalSystemCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUDrawnSystemCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyValueTable/cefcFRUPowerSupplyValueEntry/cefcFRUDrawnSystemCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyValueTable",
                    "cefcFRUPowerSupplyValueEntry",
                    "cefcFRUDrawnSystemCurrent"
                  ]
                },
                "description": "Retrieve cefcFRUDrawnSystemCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUTotalInlineCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyValueTable/cefcFRUPowerSupplyValueEntry/cefcFRUTotalInlineCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyValueTable",
                    "cefcFRUPowerSupplyValueEntry",
                    "cefcFRUTotalInlineCurrent"
                  ]
                },
                "description": "Retrieve cefcFRUTotalInlineCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUDrawnInlineCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFRUPowerSupplyValueTable/cefcFRUPowerSupplyValueEntry/cefcFRUDrawnInlineCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFRUPowerSupplyValueTable",
                    "cefcFRUPowerSupplyValueEntry",
                    "cefcFRUDrawnInlineCurrent"
                  ]
                },
                "description": "Retrieve cefcFRUDrawnInlineCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleTable"
                  ]
                },
                "description": "Retrieve cefcModuleTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleTable/cefcModuleEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleTable",
                    "cefcModuleEntry"
                  ]
                },
                "description": "Retrieve cefcModuleEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleTable/cefcModuleEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleTable",
                    "cefcModuleEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleTable/cefcModuleEntry/cefcModuleAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleTable",
                    "cefcModuleEntry",
                    "cefcModuleAdminStatus"
                  ]
                },
                "description": "Retrieve cefcModuleAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleTable/cefcModuleEntry/cefcModuleOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleTable",
                    "cefcModuleEntry",
                    "cefcModuleOperStatus"
                  ]
                },
                "description": "Retrieve cefcModuleOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleResetReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleTable/cefcModuleEntry/cefcModuleResetReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleTable",
                    "cefcModuleEntry",
                    "cefcModuleResetReason"
                  ]
                },
                "description": "Retrieve cefcModuleResetReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleStatusLastChangeTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleTable/cefcModuleEntry/cefcModuleStatusLastChangeTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleTable",
                    "cefcModuleEntry",
                    "cefcModuleStatusLastChangeTime"
                  ]
                },
                "description": "Retrieve cefcModuleStatusLastChangeTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleLastClearConfigTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleTable/cefcModuleEntry/cefcModuleLastClearConfigTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleTable",
                    "cefcModuleEntry",
                    "cefcModuleLastClearConfigTime"
                  ]
                },
                "description": "Retrieve cefcModuleLastClearConfigTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleResetReasonDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleTable/cefcModuleEntry/cefcModuleResetReasonDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleTable",
                    "cefcModuleEntry",
                    "cefcModuleResetReasonDescription"
                  ]
                },
                "description": "Retrieve cefcModuleResetReasonDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleStateChangeReasonDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleTable/cefcModuleEntry/cefcModuleStateChangeReasonDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleTable",
                    "cefcModuleEntry",
                    "cefcModuleStateChangeReasonDescr"
                  ]
                },
                "description": "Retrieve cefcModuleStateChangeReasonDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleTable/cefcModuleEntry/cefcModuleUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleTable",
                    "cefcModuleEntry",
                    "cefcModuleUpTime"
                  ]
                },
                "description": "Retrieve cefcModuleUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcIntelliModuleTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcIntelliModuleTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcIntelliModuleTable"
                  ]
                },
                "description": "Retrieve cefcIntelliModuleTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcIntelliModuleEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcIntelliModuleTable/cefcIntelliModuleEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcIntelliModuleTable",
                    "cefcIntelliModuleEntry"
                  ]
                },
                "description": "Retrieve cefcIntelliModuleEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcIntelliModuleTable/cefcIntelliModuleEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcIntelliModuleTable",
                    "cefcIntelliModuleEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcIntelliModuleIPAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcIntelliModuleTable/cefcIntelliModuleEntry/cefcIntelliModuleIPAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcIntelliModuleTable",
                    "cefcIntelliModuleEntry",
                    "cefcIntelliModuleIPAddrType"
                  ]
                },
                "description": "Retrieve cefcIntelliModuleIPAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcIntelliModuleIPAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcIntelliModuleTable/cefcIntelliModuleEntry/cefcIntelliModuleIPAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcIntelliModuleTable",
                    "cefcIntelliModuleEntry",
                    "cefcIntelliModuleIPAddr"
                  ]
                },
                "description": "Retrieve cefcIntelliModuleIPAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleLocalSwitchingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleLocalSwitchingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleLocalSwitchingTable"
                  ]
                },
                "description": "Retrieve cefcModuleLocalSwitchingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleLocalSwitchingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleLocalSwitchingTable/cefcModuleLocalSwitchingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleLocalSwitchingTable",
                    "cefcModuleLocalSwitchingEntry"
                  ]
                },
                "description": "Retrieve cefcModuleLocalSwitchingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleLocalSwitchingTable/cefcModuleLocalSwitchingEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleLocalSwitchingTable",
                    "cefcModuleLocalSwitchingEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleLocalSwitchingMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleLocalSwitchingTable/cefcModuleLocalSwitchingEntry/cefcModuleLocalSwitchingMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleLocalSwitchingTable",
                    "cefcModuleLocalSwitchingEntry",
                    "cefcModuleLocalSwitchingMode"
                  ]
                },
                "description": "Retrieve cefcModuleLocalSwitchingMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFanTrayStatusTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanTrayStatusTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanTrayStatusTable"
                  ]
                },
                "description": "Retrieve cefcFanTrayStatusTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFanTrayStatusEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanTrayStatusTable/cefcFanTrayStatusEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanTrayStatusTable",
                    "cefcFanTrayStatusEntry"
                  ]
                },
                "description": "Retrieve cefcFanTrayStatusEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanTrayStatusTable/cefcFanTrayStatusEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanTrayStatusTable",
                    "cefcFanTrayStatusEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFanTrayOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanTrayStatusTable/cefcFanTrayStatusEntry/cefcFanTrayOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanTrayStatusTable",
                    "cefcFanTrayStatusEntry",
                    "cefcFanTrayOperStatus"
                  ]
                },
                "description": "Retrieve cefcFanTrayOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPhysicalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcPhysicalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcPhysicalTable"
                  ]
                },
                "description": "Retrieve cefcPhysicalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPhysicalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcPhysicalTable/cefcPhysicalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcPhysicalTable",
                    "cefcPhysicalEntry"
                  ]
                },
                "description": "Retrieve cefcPhysicalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcPhysicalTable/cefcPhysicalEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcPhysicalTable",
                    "cefcPhysicalEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPhysicalStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcPhysicalTable/cefcPhysicalEntry/cefcPhysicalStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcPhysicalTable",
                    "cefcPhysicalEntry",
                    "cefcPhysicalStatus"
                  ]
                },
                "description": "Retrieve cefcPhysicalStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPowerSupplyInputTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcPowerSupplyInputTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcPowerSupplyInputTable"
                  ]
                },
                "description": "Retrieve cefcPowerSupplyInputTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPowerSupplyInputEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcPowerSupplyInputTable/cefcPowerSupplyInputEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcPowerSupplyInputTable",
                    "cefcPowerSupplyInputEntry"
                  ]
                },
                "description": "Retrieve cefcPowerSupplyInputEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcPowerSupplyInputTable/cefcPowerSupplyInputEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcPowerSupplyInputTable",
                    "cefcPowerSupplyInputEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPowerSupplyInputIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcPowerSupplyInputTable/cefcPowerSupplyInputEntry/cefcPowerSupplyInputIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcPowerSupplyInputTable",
                    "cefcPowerSupplyInputEntry",
                    "cefcPowerSupplyInputIndex"
                  ]
                },
                "description": "Retrieve cefcPowerSupplyInputIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPowerSupplyInputType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcPowerSupplyInputTable/cefcPowerSupplyInputEntry/cefcPowerSupplyInputType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcPowerSupplyInputTable",
                    "cefcPowerSupplyInputEntry",
                    "cefcPowerSupplyInputType"
                  ]
                },
                "description": "Retrieve cefcPowerSupplyInputType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPowerSupplyOutputTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcPowerSupplyOutputTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcPowerSupplyOutputTable"
                  ]
                },
                "description": "Retrieve cefcPowerSupplyOutputTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPowerSupplyOutputEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcPowerSupplyOutputTable/cefcPowerSupplyOutputEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcPowerSupplyOutputTable",
                    "cefcPowerSupplyOutputEntry"
                  ]
                },
                "description": "Retrieve cefcPowerSupplyOutputEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcPowerSupplyOutputTable/cefcPowerSupplyOutputEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcPowerSupplyOutputTable",
                    "cefcPowerSupplyOutputEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPSOutputModeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcPowerSupplyOutputTable/cefcPowerSupplyOutputEntry/cefcPSOutputModeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcPowerSupplyOutputTable",
                    "cefcPowerSupplyOutputEntry",
                    "cefcPSOutputModeIndex"
                  ]
                },
                "description": "Retrieve cefcPSOutputModeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPSOutputModeCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcPowerSupplyOutputTable/cefcPowerSupplyOutputEntry/cefcPSOutputModeCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcPowerSupplyOutputTable",
                    "cefcPowerSupplyOutputEntry",
                    "cefcPSOutputModeCurrent"
                  ]
                },
                "description": "Retrieve cefcPSOutputModeCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPSOutputModeInOperation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcPowerSupplyOutputTable/cefcPowerSupplyOutputEntry/cefcPSOutputModeInOperation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcPowerSupplyOutputTable",
                    "cefcPowerSupplyOutputEntry",
                    "cefcPSOutputModeInOperation"
                  ]
                },
                "description": "Retrieve cefcPSOutputModeInOperation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcChassisCoolingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcChassisCoolingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcChassisCoolingTable"
                  ]
                },
                "description": "Retrieve cefcChassisCoolingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcChassisCoolingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcChassisCoolingTable/cefcChassisCoolingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcChassisCoolingTable",
                    "cefcChassisCoolingEntry"
                  ]
                },
                "description": "Retrieve cefcChassisCoolingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcChassisCoolingTable/cefcChassisCoolingEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcChassisCoolingTable",
                    "cefcChassisCoolingEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcChassisPerSlotCoolingCap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcChassisCoolingTable/cefcChassisCoolingEntry/cefcChassisPerSlotCoolingCap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcChassisCoolingTable",
                    "cefcChassisCoolingEntry",
                    "cefcChassisPerSlotCoolingCap"
                  ]
                },
                "description": "Retrieve cefcChassisPerSlotCoolingCap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcChassisPerSlotCoolingUnit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcChassisCoolingTable/cefcChassisCoolingEntry/cefcChassisPerSlotCoolingUnit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcChassisCoolingTable",
                    "cefcChassisCoolingEntry",
                    "cefcChassisPerSlotCoolingUnit"
                  ]
                },
                "description": "Retrieve cefcChassisPerSlotCoolingUnit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFanCoolingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanCoolingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanCoolingTable"
                  ]
                },
                "description": "Retrieve cefcFanCoolingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFanCoolingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanCoolingTable/cefcFanCoolingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanCoolingTable",
                    "cefcFanCoolingEntry"
                  ]
                },
                "description": "Retrieve cefcFanCoolingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanCoolingTable/cefcFanCoolingEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanCoolingTable",
                    "cefcFanCoolingEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFanCoolingCapacity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanCoolingTable/cefcFanCoolingEntry/cefcFanCoolingCapacity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanCoolingTable",
                    "cefcFanCoolingEntry",
                    "cefcFanCoolingCapacity"
                  ]
                },
                "description": "Retrieve cefcFanCoolingCapacity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFanCoolingCapacityUnit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanCoolingTable/cefcFanCoolingEntry/cefcFanCoolingCapacityUnit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanCoolingTable",
                    "cefcFanCoolingEntry",
                    "cefcFanCoolingCapacityUnit"
                  ]
                },
                "description": "Retrieve cefcFanCoolingCapacityUnit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleCoolingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleCoolingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleCoolingTable"
                  ]
                },
                "description": "Retrieve cefcModuleCoolingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleCoolingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleCoolingTable/cefcModuleCoolingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleCoolingTable",
                    "cefcModuleCoolingEntry"
                  ]
                },
                "description": "Retrieve cefcModuleCoolingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleCoolingTable/cefcModuleCoolingEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleCoolingTable",
                    "cefcModuleCoolingEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleCooling",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleCoolingTable/cefcModuleCoolingEntry/cefcModuleCooling",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleCoolingTable",
                    "cefcModuleCoolingEntry",
                    "cefcModuleCooling"
                  ]
                },
                "description": "Retrieve cefcModuleCooling from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleCoolingUnit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModuleCoolingTable/cefcModuleCoolingEntry/cefcModuleCoolingUnit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModuleCoolingTable",
                    "cefcModuleCoolingEntry",
                    "cefcModuleCoolingUnit"
                  ]
                },
                "description": "Retrieve cefcModuleCoolingUnit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFanCoolingCapTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanCoolingCapTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanCoolingCapTable"
                  ]
                },
                "description": "Retrieve cefcFanCoolingCapTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFanCoolingCapEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanCoolingCapTable/cefcFanCoolingCapEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanCoolingCapTable",
                    "cefcFanCoolingCapEntry"
                  ]
                },
                "description": "Retrieve cefcFanCoolingCapEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanCoolingCapTable/cefcFanCoolingCapEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanCoolingCapTable",
                    "cefcFanCoolingCapEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFanCoolingCapIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanCoolingCapTable/cefcFanCoolingCapEntry/cefcFanCoolingCapIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanCoolingCapTable",
                    "cefcFanCoolingCapEntry",
                    "cefcFanCoolingCapIndex"
                  ]
                },
                "description": "Retrieve cefcFanCoolingCapIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFanCoolingCapModeDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanCoolingCapTable/cefcFanCoolingCapEntry/cefcFanCoolingCapModeDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanCoolingCapTable",
                    "cefcFanCoolingCapEntry",
                    "cefcFanCoolingCapModeDescr"
                  ]
                },
                "description": "Retrieve cefcFanCoolingCapModeDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFanCoolingCapCapacity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanCoolingCapTable/cefcFanCoolingCapEntry/cefcFanCoolingCapCapacity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanCoolingCapTable",
                    "cefcFanCoolingCapEntry",
                    "cefcFanCoolingCapCapacity"
                  ]
                },
                "description": "Retrieve cefcFanCoolingCapCapacity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFanCoolingCapCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanCoolingCapTable/cefcFanCoolingCapEntry/cefcFanCoolingCapCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanCoolingCapTable",
                    "cefcFanCoolingCapEntry",
                    "cefcFanCoolingCapCurrent"
                  ]
                },
                "description": "Retrieve cefcFanCoolingCapCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFanCoolingCapCapacityUnit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcFanCoolingCapTable/cefcFanCoolingCapEntry/cefcFanCoolingCapCapacityUnit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcFanCoolingCapTable",
                    "cefcFanCoolingCapEntry",
                    "cefcFanCoolingCapCapacityUnit"
                  ]
                },
                "description": "Retrieve cefcFanCoolingCapCapacityUnit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcConnectorRatingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcConnectorRatingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcConnectorRatingTable"
                  ]
                },
                "description": "Retrieve cefcConnectorRatingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcConnectorRatingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcConnectorRatingTable/cefcConnectorRatingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcConnectorRatingTable",
                    "cefcConnectorRatingEntry"
                  ]
                },
                "description": "Retrieve cefcConnectorRatingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcConnectorRatingTable/cefcConnectorRatingEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcConnectorRatingTable",
                    "cefcConnectorRatingEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcConnectorRating",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcConnectorRatingTable/cefcConnectorRatingEntry/cefcConnectorRating",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcConnectorRatingTable",
                    "cefcConnectorRatingEntry",
                    "cefcConnectorRating"
                  ]
                },
                "description": "Retrieve cefcConnectorRating from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModulePowerConsumptionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable"
                  ]
                },
                "description": "Retrieve cefcModulePowerConsumptionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModulePowerConsumptionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/cefcModulePowerConsumptionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "cefcModulePowerConsumptionEntry"
                  ]
                },
                "description": "Retrieve cefcModulePowerConsumptionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/cefcModulePowerConsumptionEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "cefcModulePowerConsumptionEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModulePowerConsumption",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/cefcModulePowerConsumptionEntry/cefcModulePowerConsumption",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "cefcModulePowerConsumptionEntry",
                    "cefcModulePowerConsumption"
                  ]
                },
                "description": "Retrieve cefcModulePowerConsumption from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-1/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-1",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-1/cefcModuleOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-1",
                    "cefcModuleOperStatus"
                  ]
                },
                "description": "Retrieve cefcModuleOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-2/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-2",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcModuleStatusLastChangeTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-2/cefcModuleStatusLastChangeTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-2",
                    "cefcModuleStatusLastChangeTime"
                  ]
                },
                "description": "Retrieve cefcModuleStatusLastChangeTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUPowerOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-1/cefcFRUPowerOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-1",
                    "cefcFRUPowerOperStatus"
                  ]
                },
                "description": "Retrieve cefcFRUPowerOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFRUPowerAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-2/cefcFRUPowerAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-2",
                    "cefcFRUPowerAdminStatus"
                  ]
                },
                "description": "Retrieve cefcFRUPowerAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalContainedIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-1/entPhysicalContainedIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-1",
                    "entPhysicalContainedIn"
                  ]
                },
                "description": "Retrieve entPhysicalContainedIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalClass",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-1/entPhysicalClass",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-1",
                    "entPhysicalClass"
                  ]
                },
                "description": "Retrieve entPhysicalClass from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalVendorType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-2/entPhysicalVendorType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-2",
                    "entPhysicalVendorType"
                  ]
                },
                "description": "Retrieve entPhysicalVendorType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-3/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-3",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-3/entPhysicalName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-3",
                    "entPhysicalName"
                  ]
                },
                "description": "Retrieve entPhysicalName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-4/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-4",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalModelName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-4/entPhysicalModelName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-4",
                    "entPhysicalModelName"
                  ]
                },
                "description": "Retrieve entPhysicalModelName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-5/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-5",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPhysicalStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-5/cefcPhysicalStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-5",
                    "cefcPhysicalStatus"
                  ]
                },
                "description": "Retrieve cefcPhysicalStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcFanTrayOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-1/cefcFanTrayOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-1",
                    "cefcFanTrayOperStatus"
                  ]
                },
                "description": "Retrieve cefcFanTrayOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-1/entPhysicalName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-1",
                    "entPhysicalName"
                  ]
                },
                "description": "Retrieve entPhysicalName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalModelName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-2/entPhysicalModelName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-2",
                    "entPhysicalModelName"
                  ]
                },
                "description": "Retrieve entPhysicalModelName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPSOutputModeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-3/cefcPSOutputModeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-3",
                    "cefcPSOutputModeIndex"
                  ]
                },
                "description": "Retrieve cefcPSOutputModeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cefcPSOutputModeCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB/cefcModulePowerConsumptionTable/object-3/cefcPSOutputModeCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-FRU-CONTROL-MIB:CISCO-ENTITY-FRU-CONTROL-MIB",
                    "cefcModulePowerConsumptionTable",
                    "object-3",
                    "cefcPSOutputModeCurrent"
                  ]
                },
                "description": "Retrieve cefcPSOutputModeCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-ENTITY-QFP-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-ENTITY-QFP-MIB\n\nMIB data from `CISCO-ENTITY-QFP-MIB` module.\n\n**Root containers:** 1 (CISCO-ENTITY-QFP-MIB)\n**Paths:** 72 | **Descendants:** 79\n\nAll endpoints are read-only (GET).\n\nEndpoints: 72 | Operations: 72",
          "item": [
            {
              "name": "GET Get CISCO-ENTITY-QFP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB"
                  ]
                },
                "description": "Retrieve CISCO-ENTITY-QFP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEntityQfp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ciscoEntityQfp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ciscoEntityQfp"
                  ]
                },
                "description": "Retrieve ciscoEntityQfp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpFiveSecondUtilAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ciscoEntityQfp/ceqfpFiveSecondUtilAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ciscoEntityQfp",
                    "ceqfpFiveSecondUtilAlgo"
                  ]
                },
                "description": "Retrieve ceqfpFiveSecondUtilAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpOneMinuteUtilAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ciscoEntityQfp/ceqfpOneMinuteUtilAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ciscoEntityQfp",
                    "ceqfpOneMinuteUtilAlgo"
                  ]
                },
                "description": "Retrieve ceqfpOneMinuteUtilAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpFiveMinutesUtilAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ciscoEntityQfp/ceqfpFiveMinutesUtilAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ciscoEntityQfp",
                    "ceqfpFiveMinutesUtilAlgo"
                  ]
                },
                "description": "Retrieve ceqfpFiveMinutesUtilAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpSixtyMinutesUtilAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ciscoEntityQfp/ceqfpSixtyMinutesUtilAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ciscoEntityQfp",
                    "ceqfpSixtyMinutesUtilAlgo"
                  ]
                },
                "description": "Retrieve ceqfpSixtyMinutesUtilAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEntityQfpNotif",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ciscoEntityQfpNotif",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ciscoEntityQfpNotif"
                  ]
                },
                "description": "Retrieve ciscoEntityQfpNotif from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResThreshNotifEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ciscoEntityQfpNotif/ceqfpMemoryResThreshNotifEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ciscoEntityQfpNotif",
                    "ceqfpMemoryResThreshNotifEnabled"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResThreshNotifEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpThroughputNotifEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ciscoEntityQfpNotif/ceqfpThroughputNotifEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ciscoEntityQfpNotif",
                    "ceqfpThroughputNotifEnabled"
                  ]
                },
                "description": "Retrieve ceqfpThroughputNotifEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpSystemTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpSystemTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpSystemTable"
                  ]
                },
                "description": "Retrieve ceqfpSystemTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpSystemEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpSystemTable/ceqfpSystemEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpSystemTable",
                    "ceqfpSystemEntry"
                  ]
                },
                "description": "Retrieve ceqfpSystemEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpSystemTable/ceqfpSystemEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpSystemTable",
                    "ceqfpSystemEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpSystemTrafficDirection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpSystemTable/ceqfpSystemEntry/ceqfpSystemTrafficDirection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpSystemTable",
                    "ceqfpSystemEntry",
                    "ceqfpSystemTrafficDirection"
                  ]
                },
                "description": "Retrieve ceqfpSystemTrafficDirection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpSystemState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpSystemTable/ceqfpSystemEntry/ceqfpSystemState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpSystemTable",
                    "ceqfpSystemEntry",
                    "ceqfpSystemState"
                  ]
                },
                "description": "Retrieve ceqfpSystemState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpNumberSystemLoads",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpSystemTable/ceqfpSystemEntry/ceqfpNumberSystemLoads",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpSystemTable",
                    "ceqfpSystemEntry",
                    "ceqfpNumberSystemLoads"
                  ]
                },
                "description": "Retrieve ceqfpNumberSystemLoads from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpSystemLastLoadTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpSystemTable/ceqfpSystemEntry/ceqfpSystemLastLoadTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpSystemTable",
                    "ceqfpSystemEntry",
                    "ceqfpSystemLastLoadTime"
                  ]
                },
                "description": "Retrieve ceqfpSystemLastLoadTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpUtilizationTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable"
                  ]
                },
                "description": "Retrieve ceqfpUtilizationTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpUtilizationEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable/ceqfpUtilizationEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable",
                    "ceqfpUtilizationEntry"
                  ]
                },
                "description": "Retrieve ceqfpUtilizationEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable/ceqfpUtilizationEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable",
                    "ceqfpUtilizationEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpUtilTimeInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable/ceqfpUtilizationEntry/ceqfpUtilTimeInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable",
                    "ceqfpUtilizationEntry",
                    "ceqfpUtilTimeInterval"
                  ]
                },
                "description": "Retrieve ceqfpUtilTimeInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpUtilInputPriorityPktRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable/ceqfpUtilizationEntry/ceqfpUtilInputPriorityPktRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable",
                    "ceqfpUtilizationEntry",
                    "ceqfpUtilInputPriorityPktRate"
                  ]
                },
                "description": "Retrieve ceqfpUtilInputPriorityPktRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpUtilInputPriorityBitRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable/ceqfpUtilizationEntry/ceqfpUtilInputPriorityBitRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable",
                    "ceqfpUtilizationEntry",
                    "ceqfpUtilInputPriorityBitRate"
                  ]
                },
                "description": "Retrieve ceqfpUtilInputPriorityBitRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpUtilInputNonPriorityPktRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable/ceqfpUtilizationEntry/ceqfpUtilInputNonPriorityPktRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable",
                    "ceqfpUtilizationEntry",
                    "ceqfpUtilInputNonPriorityPktRate"
                  ]
                },
                "description": "Retrieve ceqfpUtilInputNonPriorityPktRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpUtilInputNonPriorityBitRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable/ceqfpUtilizationEntry/ceqfpUtilInputNonPriorityBitRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable",
                    "ceqfpUtilizationEntry",
                    "ceqfpUtilInputNonPriorityBitRate"
                  ]
                },
                "description": "Retrieve ceqfpUtilInputNonPriorityBitRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpUtilInputTotalPktRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable/ceqfpUtilizationEntry/ceqfpUtilInputTotalPktRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable",
                    "ceqfpUtilizationEntry",
                    "ceqfpUtilInputTotalPktRate"
                  ]
                },
                "description": "Retrieve ceqfpUtilInputTotalPktRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpUtilInputTotalBitRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable/ceqfpUtilizationEntry/ceqfpUtilInputTotalBitRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable",
                    "ceqfpUtilizationEntry",
                    "ceqfpUtilInputTotalBitRate"
                  ]
                },
                "description": "Retrieve ceqfpUtilInputTotalBitRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpUtilOutputPriorityPktRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable/ceqfpUtilizationEntry/ceqfpUtilOutputPriorityPktRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable",
                    "ceqfpUtilizationEntry",
                    "ceqfpUtilOutputPriorityPktRate"
                  ]
                },
                "description": "Retrieve ceqfpUtilOutputPriorityPktRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpUtilOutputPriorityBitRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable/ceqfpUtilizationEntry/ceqfpUtilOutputPriorityBitRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable",
                    "ceqfpUtilizationEntry",
                    "ceqfpUtilOutputPriorityBitRate"
                  ]
                },
                "description": "Retrieve ceqfpUtilOutputPriorityBitRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpUtilOutputNonPriorityPktRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable/ceqfpUtilizationEntry/ceqfpUtilOutputNonPriorityPktRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable",
                    "ceqfpUtilizationEntry",
                    "ceqfpUtilOutputNonPriorityPktRate"
                  ]
                },
                "description": "Retrieve ceqfpUtilOutputNonPriorityPktRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpUtilOutputNonPriorityBitRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable/ceqfpUtilizationEntry/ceqfpUtilOutputNonPriorityBitRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable",
                    "ceqfpUtilizationEntry",
                    "ceqfpUtilOutputNonPriorityBitRate"
                  ]
                },
                "description": "Retrieve ceqfpUtilOutputNonPriorityBitRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpUtilOutputTotalPktRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable/ceqfpUtilizationEntry/ceqfpUtilOutputTotalPktRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable",
                    "ceqfpUtilizationEntry",
                    "ceqfpUtilOutputTotalPktRate"
                  ]
                },
                "description": "Retrieve ceqfpUtilOutputTotalPktRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpUtilOutputTotalBitRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable/ceqfpUtilizationEntry/ceqfpUtilOutputTotalBitRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable",
                    "ceqfpUtilizationEntry",
                    "ceqfpUtilOutputTotalBitRate"
                  ]
                },
                "description": "Retrieve ceqfpUtilOutputTotalBitRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpUtilProcessingLoad",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpUtilizationTable/ceqfpUtilizationEntry/ceqfpUtilProcessingLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpUtilizationTable",
                    "ceqfpUtilizationEntry",
                    "ceqfpUtilProcessingLoad"
                  ]
                },
                "description": "Retrieve ceqfpUtilProcessingLoad from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResourceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResourceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResourceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResourceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry/ceqfpMemoryResType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry",
                    "ceqfpMemoryResType"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry/ceqfpMemoryResTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry",
                    "ceqfpMemoryResTotal"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResInUse",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry/ceqfpMemoryResInUse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry",
                    "ceqfpMemoryResInUse"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResInUse from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry/ceqfpMemoryResFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry",
                    "ceqfpMemoryResFree"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResLowFreeWatermark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry/ceqfpMemoryResLowFreeWatermark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry",
                    "ceqfpMemoryResLowFreeWatermark"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResLowFreeWatermark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResRisingThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry/ceqfpMemoryResRisingThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry",
                    "ceqfpMemoryResRisingThreshold"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResRisingThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResFallingThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry/ceqfpMemoryResFallingThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry",
                    "ceqfpMemoryResFallingThreshold"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResFallingThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResTotalOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry/ceqfpMemoryResTotalOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry",
                    "ceqfpMemoryResTotalOvrflw"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResTotalOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryHCResTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry/ceqfpMemoryHCResTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry",
                    "ceqfpMemoryHCResTotal"
                  ]
                },
                "description": "Retrieve ceqfpMemoryHCResTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResInUseOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry/ceqfpMemoryResInUseOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry",
                    "ceqfpMemoryResInUseOvrflw"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResInUseOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryHCResInUse",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry/ceqfpMemoryHCResInUse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry",
                    "ceqfpMemoryHCResInUse"
                  ]
                },
                "description": "Retrieve ceqfpMemoryHCResInUse from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResFreeOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry/ceqfpMemoryResFreeOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry",
                    "ceqfpMemoryResFreeOvrflw"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResFreeOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryHCResFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry/ceqfpMemoryHCResFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry",
                    "ceqfpMemoryHCResFree"
                  ]
                },
                "description": "Retrieve ceqfpMemoryHCResFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResLowFreeWatermarkOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry/ceqfpMemoryResLowFreeWatermarkOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry",
                    "ceqfpMemoryResLowFreeWatermarkOvrflw"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResLowFreeWatermarkOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryHCResLowFreeWatermark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpMemoryResourceTable/ceqfpMemoryResourceEntry/ceqfpMemoryHCResLowFreeWatermark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpMemoryResourceTable",
                    "ceqfpMemoryResourceEntry",
                    "ceqfpMemoryHCResLowFreeWatermark"
                  ]
                },
                "description": "Retrieve ceqfpMemoryHCResLowFreeWatermark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpThroughputTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable"
                  ]
                },
                "description": "Retrieve ceqfpThroughputTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpThroughputEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/ceqfpThroughputEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "ceqfpThroughputEntry"
                  ]
                },
                "description": "Retrieve ceqfpThroughputEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/ceqfpThroughputEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "ceqfpThroughputEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpThroughputLicensedBW",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/ceqfpThroughputEntry/ceqfpThroughputLicensedBW",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "ceqfpThroughputEntry",
                    "ceqfpThroughputLicensedBW"
                  ]
                },
                "description": "Retrieve ceqfpThroughputLicensedBW from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpThroughputLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/ceqfpThroughputEntry/ceqfpThroughputLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "ceqfpThroughputEntry",
                    "ceqfpThroughputLevel"
                  ]
                },
                "description": "Retrieve ceqfpThroughputLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpThroughputInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/ceqfpThroughputEntry/ceqfpThroughputInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "ceqfpThroughputEntry",
                    "ceqfpThroughputInterval"
                  ]
                },
                "description": "Retrieve ceqfpThroughputInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpThroughputThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/ceqfpThroughputEntry/ceqfpThroughputThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "ceqfpThroughputEntry",
                    "ceqfpThroughputThreshold"
                  ]
                },
                "description": "Retrieve ceqfpThroughputThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpThroughputAvgRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/ceqfpThroughputEntry/ceqfpThroughputAvgRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "ceqfpThroughputEntry",
                    "ceqfpThroughputAvgRate"
                  ]
                },
                "description": "Retrieve ceqfpThroughputAvgRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/object-1/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "object-1",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/object-1/ceqfpMemoryResType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "object-1",
                    "ceqfpMemoryResType"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResInUse",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/object-1/ceqfpMemoryResInUse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "object-1",
                    "ceqfpMemoryResInUse"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResInUse from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResCurrentRisingThresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/object-2/ceqfpMemoryResCurrentRisingThresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "object-2",
                    "ceqfpMemoryResCurrentRisingThresh"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResCurrentRisingThresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpMemoryResCurrentFallingThresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/object-2/ceqfpMemoryResCurrentFallingThresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "object-2",
                    "ceqfpMemoryResCurrentFallingThresh"
                  ]
                },
                "description": "Retrieve ceqfpMemoryResCurrentFallingThresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpThroughputLicensedBW",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/object-1/ceqfpThroughputLicensedBW",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "object-1",
                    "ceqfpThroughputLicensedBW"
                  ]
                },
                "description": "Retrieve ceqfpThroughputLicensedBW from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/object-2/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "object-2",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpThroughputLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/object-2/ceqfpThroughputLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "object-2",
                    "ceqfpThroughputLevel"
                  ]
                },
                "description": "Retrieve ceqfpThroughputLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/object-3/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "object-3",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceqfpThroughputAvgRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB/ceqfpThroughputTable/object-3/ceqfpThroughputAvgRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-QFP-MIB:CISCO-ENTITY-QFP-MIB",
                    "ceqfpThroughputTable",
                    "object-3",
                    "ceqfpThroughputAvgRate"
                  ]
                },
                "description": "Retrieve ceqfpThroughputAvgRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-ENTITY-SENSOR-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-ENTITY-SENSOR-MIB\n\nMIB data from `CISCO-ENTITY-SENSOR-MIB` module.\n\n**Root containers:** 1 (CISCO-ENTITY-SENSOR-MIB)\n**Paths:** 38 | **Descendants:** 44\n\nAll endpoints are read-only (GET).\n\nEndpoints: 38 | Operations: 38",
          "item": [
            {
              "name": "GET Get CISCO-ENTITY-SENSOR-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB"
                  ]
                },
                "description": "Retrieve CISCO-ENTITY-SENSOR-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorGlobalObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorGlobalObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorGlobalObjects"
                  ]
                },
                "description": "Retrieve entSensorGlobalObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorThreshNotifGlobalEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorGlobalObjects/entSensorThreshNotifGlobalEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorGlobalObjects",
                    "entSensorThreshNotifGlobalEnable"
                  ]
                },
                "description": "Retrieve entSensorThreshNotifGlobalEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorValueTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorValueTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorValueTable"
                  ]
                },
                "description": "Retrieve entSensorValueTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorValueEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorValueTable/entSensorValueEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorValueTable",
                    "entSensorValueEntry"
                  ]
                },
                "description": "Retrieve entSensorValueEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorValueTable/entSensorValueEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorValueTable",
                    "entSensorValueEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorValueTable/entSensorValueEntry/entSensorType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorValueTable",
                    "entSensorValueEntry",
                    "entSensorType"
                  ]
                },
                "description": "Retrieve entSensorType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorScale",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorValueTable/entSensorValueEntry/entSensorScale",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorValueTable",
                    "entSensorValueEntry",
                    "entSensorScale"
                  ]
                },
                "description": "Retrieve entSensorScale from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorPrecision",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorValueTable/entSensorValueEntry/entSensorPrecision",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorValueTable",
                    "entSensorValueEntry",
                    "entSensorPrecision"
                  ]
                },
                "description": "Retrieve entSensorPrecision from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorValueTable/entSensorValueEntry/entSensorValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorValueTable",
                    "entSensorValueEntry",
                    "entSensorValue"
                  ]
                },
                "description": "Retrieve entSensorValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorValueTable/entSensorValueEntry/entSensorStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorValueTable",
                    "entSensorValueEntry",
                    "entSensorStatus"
                  ]
                },
                "description": "Retrieve entSensorStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorValueTimeStamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorValueTable/entSensorValueEntry/entSensorValueTimeStamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorValueTable",
                    "entSensorValueEntry",
                    "entSensorValueTimeStamp"
                  ]
                },
                "description": "Retrieve entSensorValueTimeStamp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorValueUpdateRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorValueTable/entSensorValueEntry/entSensorValueUpdateRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorValueTable",
                    "entSensorValueEntry",
                    "entSensorValueUpdateRate"
                  ]
                },
                "description": "Retrieve entSensorValueUpdateRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorMeasuredEntity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorValueTable/entSensorValueEntry/entSensorMeasuredEntity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorValueTable",
                    "entSensorValueEntry",
                    "entSensorMeasuredEntity"
                  ]
                },
                "description": "Retrieve entSensorMeasuredEntity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorThresholdTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable"
                  ]
                },
                "description": "Retrieve entSensorThresholdTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorThresholdEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/entSensorThresholdEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "entSensorThresholdEntry"
                  ]
                },
                "description": "Retrieve entSensorThresholdEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/entSensorThresholdEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "entSensorThresholdEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorThresholdIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/entSensorThresholdEntry/entSensorThresholdIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "entSensorThresholdEntry",
                    "entSensorThresholdIndex"
                  ]
                },
                "description": "Retrieve entSensorThresholdIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorThresholdSeverity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/entSensorThresholdEntry/entSensorThresholdSeverity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "entSensorThresholdEntry",
                    "entSensorThresholdSeverity"
                  ]
                },
                "description": "Retrieve entSensorThresholdSeverity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorThresholdRelation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/entSensorThresholdEntry/entSensorThresholdRelation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "entSensorThresholdEntry",
                    "entSensorThresholdRelation"
                  ]
                },
                "description": "Retrieve entSensorThresholdRelation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorThresholdValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/entSensorThresholdEntry/entSensorThresholdValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "entSensorThresholdEntry",
                    "entSensorThresholdValue"
                  ]
                },
                "description": "Retrieve entSensorThresholdValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorThresholdEvaluation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/entSensorThresholdEntry/entSensorThresholdEvaluation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "entSensorThresholdEntry",
                    "entSensorThresholdEvaluation"
                  ]
                },
                "description": "Retrieve entSensorThresholdEvaluation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorThresholdNotificationEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/entSensorThresholdEntry/entSensorThresholdNotificationEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "entSensorThresholdEntry",
                    "entSensorThresholdNotificationEnable"
                  ]
                },
                "description": "Retrieve entSensorThresholdNotificationEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/object-1/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "object-1",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorThresholdIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/object-1/entSensorThresholdIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "object-1",
                    "entSensorThresholdIndex"
                  ]
                },
                "description": "Retrieve entSensorThresholdIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorThresholdValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/object-1/entSensorThresholdValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "object-1",
                    "entSensorThresholdValue"
                  ]
                },
                "description": "Retrieve entSensorThresholdValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/object-2/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "object-2",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/object-2/entSensorValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "object-2",
                    "entSensorValue"
                  ]
                },
                "description": "Retrieve entSensorValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/object-3/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "object-3",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorThresholdIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/object-3/entSensorThresholdIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "object-3",
                    "entSensorThresholdIndex"
                  ]
                },
                "description": "Retrieve entSensorThresholdIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorThresholdSeverity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/object-3/entSensorThresholdSeverity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "object-3",
                    "entSensorThresholdSeverity"
                  ]
                },
                "description": "Retrieve entSensorThresholdSeverity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/object-1/entSensorValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "object-1",
                    "entSensorValue"
                  ]
                },
                "description": "Retrieve entSensorValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorThresholdIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/object-2/entSensorThresholdIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "object-2",
                    "entSensorThresholdIndex"
                  ]
                },
                "description": "Retrieve entSensorThresholdIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorThresholdSeverity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/object-2/entSensorThresholdSeverity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "object-2",
                    "entSensorThresholdSeverity"
                  ]
                },
                "description": "Retrieve entSensorThresholdSeverity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entSensorThresholdValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB/entSensorThresholdTable/object-3/entSensorThresholdValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENTITY-SENSOR-MIB:CISCO-ENTITY-SENSOR-MIB",
                    "entSensorThresholdTable",
                    "object-3",
                    "entSensorThresholdValue"
                  ]
                },
                "description": "Retrieve entSensorThresholdValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-ENVMON-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-ENVMON-MIB\n\nMIB data from `CISCO-ENVMON-MIB` module.\n\n**Root containers:** 1 (CISCO-ENVMON-MIB)\n**Paths:** 58 | **Descendants:** 94\n\nAll endpoints are read-only (GET).\n\nEndpoints: 58 | Operations: 58",
          "item": [
            {
              "name": "GET Get CISCO-ENVMON-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB"
                  ]
                },
                "description": "Retrieve CISCO-ENVMON-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonObjects"
                  ]
                },
                "description": "Retrieve ciscoEnvMonObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonPresent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonObjects/ciscoEnvMonPresent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonObjects",
                    "ciscoEnvMonPresent"
                  ]
                },
                "description": "Retrieve ciscoEnvMonPresent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonAlarmContacts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonObjects/ciscoEnvMonAlarmContacts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonObjects",
                    "ciscoEnvMonAlarmContacts"
                  ]
                },
                "description": "Retrieve ciscoEnvMonAlarmContacts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonMIBNotificationEnables",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonMIBNotificationEnables",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonMIBNotificationEnables"
                  ]
                },
                "description": "Retrieve ciscoEnvMonMIBNotificationEnables from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonEnableShutdownNotification",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonMIBNotificationEnables/ciscoEnvMonEnableShutdownNotification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonMIBNotificationEnables",
                    "ciscoEnvMonEnableShutdownNotification"
                  ]
                },
                "description": "Retrieve ciscoEnvMonEnableShutdownNotification from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonEnableStatChangeNotif",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonMIBNotificationEnables/ciscoEnvMonEnableStatChangeNotif",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonMIBNotificationEnables",
                    "ciscoEnvMonEnableStatChangeNotif"
                  ]
                },
                "description": "Retrieve ciscoEnvMonEnableStatChangeNotif from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonVoltageStatusTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonVoltageStatusTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonVoltageStatusTable"
                  ]
                },
                "description": "Retrieve ciscoEnvMonVoltageStatusTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonVoltageStatusEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonVoltageStatusTable/ciscoEnvMonVoltageStatusEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonVoltageStatusTable",
                    "ciscoEnvMonVoltageStatusEntry"
                  ]
                },
                "description": "Retrieve ciscoEnvMonVoltageStatusEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonVoltageStatusIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonVoltageStatusTable/ciscoEnvMonVoltageStatusEntry/ciscoEnvMonVoltageStatusIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonVoltageStatusTable",
                    "ciscoEnvMonVoltageStatusEntry",
                    "ciscoEnvMonVoltageStatusIndex"
                  ]
                },
                "description": "Retrieve ciscoEnvMonVoltageStatusIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonVoltageStatusDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonVoltageStatusTable/ciscoEnvMonVoltageStatusEntry/ciscoEnvMonVoltageStatusDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonVoltageStatusTable",
                    "ciscoEnvMonVoltageStatusEntry",
                    "ciscoEnvMonVoltageStatusDescr"
                  ]
                },
                "description": "Retrieve ciscoEnvMonVoltageStatusDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonVoltageStatusValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonVoltageStatusTable/ciscoEnvMonVoltageStatusEntry/ciscoEnvMonVoltageStatusValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonVoltageStatusTable",
                    "ciscoEnvMonVoltageStatusEntry",
                    "ciscoEnvMonVoltageStatusValue"
                  ]
                },
                "description": "Retrieve ciscoEnvMonVoltageStatusValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonVoltageThresholdLow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonVoltageStatusTable/ciscoEnvMonVoltageStatusEntry/ciscoEnvMonVoltageThresholdLow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonVoltageStatusTable",
                    "ciscoEnvMonVoltageStatusEntry",
                    "ciscoEnvMonVoltageThresholdLow"
                  ]
                },
                "description": "Retrieve ciscoEnvMonVoltageThresholdLow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonVoltageThresholdHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonVoltageStatusTable/ciscoEnvMonVoltageStatusEntry/ciscoEnvMonVoltageThresholdHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonVoltageStatusTable",
                    "ciscoEnvMonVoltageStatusEntry",
                    "ciscoEnvMonVoltageThresholdHigh"
                  ]
                },
                "description": "Retrieve ciscoEnvMonVoltageThresholdHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonVoltageLastShutdown",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonVoltageStatusTable/ciscoEnvMonVoltageStatusEntry/ciscoEnvMonVoltageLastShutdown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonVoltageStatusTable",
                    "ciscoEnvMonVoltageStatusEntry",
                    "ciscoEnvMonVoltageLastShutdown"
                  ]
                },
                "description": "Retrieve ciscoEnvMonVoltageLastShutdown from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonVoltageState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonVoltageStatusTable/ciscoEnvMonVoltageStatusEntry/ciscoEnvMonVoltageState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonVoltageStatusTable",
                    "ciscoEnvMonVoltageStatusEntry",
                    "ciscoEnvMonVoltageState"
                  ]
                },
                "description": "Retrieve ciscoEnvMonVoltageState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonTemperatureStatusTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonTemperatureStatusTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonTemperatureStatusTable"
                  ]
                },
                "description": "Retrieve ciscoEnvMonTemperatureStatusTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonTemperatureStatusEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonTemperatureStatusTable/ciscoEnvMonTemperatureStatusEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonTemperatureStatusTable",
                    "ciscoEnvMonTemperatureStatusEntry"
                  ]
                },
                "description": "Retrieve ciscoEnvMonTemperatureStatusEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonTemperatureStatusIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonTemperatureStatusTable/ciscoEnvMonTemperatureStatusEntry/ciscoEnvMonTemperatureStatusIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonTemperatureStatusTable",
                    "ciscoEnvMonTemperatureStatusEntry",
                    "ciscoEnvMonTemperatureStatusIndex"
                  ]
                },
                "description": "Retrieve ciscoEnvMonTemperatureStatusIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonTemperatureStatusDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonTemperatureStatusTable/ciscoEnvMonTemperatureStatusEntry/ciscoEnvMonTemperatureStatusDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonTemperatureStatusTable",
                    "ciscoEnvMonTemperatureStatusEntry",
                    "ciscoEnvMonTemperatureStatusDescr"
                  ]
                },
                "description": "Retrieve ciscoEnvMonTemperatureStatusDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonTemperatureStatusValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonTemperatureStatusTable/ciscoEnvMonTemperatureStatusEntry/ciscoEnvMonTemperatureStatusValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonTemperatureStatusTable",
                    "ciscoEnvMonTemperatureStatusEntry",
                    "ciscoEnvMonTemperatureStatusValue"
                  ]
                },
                "description": "Retrieve ciscoEnvMonTemperatureStatusValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonTemperatureThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonTemperatureStatusTable/ciscoEnvMonTemperatureStatusEntry/ciscoEnvMonTemperatureThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonTemperatureStatusTable",
                    "ciscoEnvMonTemperatureStatusEntry",
                    "ciscoEnvMonTemperatureThreshold"
                  ]
                },
                "description": "Retrieve ciscoEnvMonTemperatureThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonTemperatureLastShutdown",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonTemperatureStatusTable/ciscoEnvMonTemperatureStatusEntry/ciscoEnvMonTemperatureLastShutdown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonTemperatureStatusTable",
                    "ciscoEnvMonTemperatureStatusEntry",
                    "ciscoEnvMonTemperatureLastShutdown"
                  ]
                },
                "description": "Retrieve ciscoEnvMonTemperatureLastShutdown from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonTemperatureState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonTemperatureStatusTable/ciscoEnvMonTemperatureStatusEntry/ciscoEnvMonTemperatureState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonTemperatureStatusTable",
                    "ciscoEnvMonTemperatureStatusEntry",
                    "ciscoEnvMonTemperatureState"
                  ]
                },
                "description": "Retrieve ciscoEnvMonTemperatureState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonFanStatusTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonFanStatusTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonFanStatusTable"
                  ]
                },
                "description": "Retrieve ciscoEnvMonFanStatusTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonFanStatusEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonFanStatusTable/ciscoEnvMonFanStatusEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonFanStatusTable",
                    "ciscoEnvMonFanStatusEntry"
                  ]
                },
                "description": "Retrieve ciscoEnvMonFanStatusEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonFanStatusIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonFanStatusTable/ciscoEnvMonFanStatusEntry/ciscoEnvMonFanStatusIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonFanStatusTable",
                    "ciscoEnvMonFanStatusEntry",
                    "ciscoEnvMonFanStatusIndex"
                  ]
                },
                "description": "Retrieve ciscoEnvMonFanStatusIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonFanStatusDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonFanStatusTable/ciscoEnvMonFanStatusEntry/ciscoEnvMonFanStatusDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonFanStatusTable",
                    "ciscoEnvMonFanStatusEntry",
                    "ciscoEnvMonFanStatusDescr"
                  ]
                },
                "description": "Retrieve ciscoEnvMonFanStatusDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonFanState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonFanStatusTable/ciscoEnvMonFanStatusEntry/ciscoEnvMonFanState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonFanStatusTable",
                    "ciscoEnvMonFanStatusEntry",
                    "ciscoEnvMonFanState"
                  ]
                },
                "description": "Retrieve ciscoEnvMonFanState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonSupplyStatusTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable"
                  ]
                },
                "description": "Retrieve ciscoEnvMonSupplyStatusTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonSupplyStatusEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/ciscoEnvMonSupplyStatusEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "ciscoEnvMonSupplyStatusEntry"
                  ]
                },
                "description": "Retrieve ciscoEnvMonSupplyStatusEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonSupplyStatusIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/ciscoEnvMonSupplyStatusEntry/ciscoEnvMonSupplyStatusIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "ciscoEnvMonSupplyStatusEntry",
                    "ciscoEnvMonSupplyStatusIndex"
                  ]
                },
                "description": "Retrieve ciscoEnvMonSupplyStatusIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonSupplyStatusDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/ciscoEnvMonSupplyStatusEntry/ciscoEnvMonSupplyStatusDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "ciscoEnvMonSupplyStatusEntry",
                    "ciscoEnvMonSupplyStatusDescr"
                  ]
                },
                "description": "Retrieve ciscoEnvMonSupplyStatusDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonSupplyState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/ciscoEnvMonSupplyStatusEntry/ciscoEnvMonSupplyState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "ciscoEnvMonSupplyStatusEntry",
                    "ciscoEnvMonSupplyState"
                  ]
                },
                "description": "Retrieve ciscoEnvMonSupplyState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonSupplySource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/ciscoEnvMonSupplyStatusEntry/ciscoEnvMonSupplySource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "ciscoEnvMonSupplyStatusEntry",
                    "ciscoEnvMonSupplySource"
                  ]
                },
                "description": "Retrieve ciscoEnvMonSupplySource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonVoltageStatusIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-1/ciscoEnvMonVoltageStatusIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-1",
                    "ciscoEnvMonVoltageStatusIndex"
                  ]
                },
                "description": "Retrieve ciscoEnvMonVoltageStatusIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonVoltageStatusDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-1/ciscoEnvMonVoltageStatusDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-1",
                    "ciscoEnvMonVoltageStatusDescr"
                  ]
                },
                "description": "Retrieve ciscoEnvMonVoltageStatusDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonVoltageStatusIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-2/ciscoEnvMonVoltageStatusIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-2",
                    "ciscoEnvMonVoltageStatusIndex"
                  ]
                },
                "description": "Retrieve ciscoEnvMonVoltageStatusIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonVoltageStatusValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-2/ciscoEnvMonVoltageStatusValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-2",
                    "ciscoEnvMonVoltageStatusValue"
                  ]
                },
                "description": "Retrieve ciscoEnvMonVoltageStatusValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonVoltageStatusIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-3/ciscoEnvMonVoltageStatusIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-3",
                    "ciscoEnvMonVoltageStatusIndex"
                  ]
                },
                "description": "Retrieve ciscoEnvMonVoltageStatusIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonVoltageState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-3/ciscoEnvMonVoltageState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-3",
                    "ciscoEnvMonVoltageState"
                  ]
                },
                "description": "Retrieve ciscoEnvMonVoltageState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonTemperatureStatusIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-1/ciscoEnvMonTemperatureStatusIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-1",
                    "ciscoEnvMonTemperatureStatusIndex"
                  ]
                },
                "description": "Retrieve ciscoEnvMonTemperatureStatusIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonTemperatureStatusDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-1/ciscoEnvMonTemperatureStatusDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-1",
                    "ciscoEnvMonTemperatureStatusDescr"
                  ]
                },
                "description": "Retrieve ciscoEnvMonTemperatureStatusDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonTemperatureStatusIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-2/ciscoEnvMonTemperatureStatusIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-2",
                    "ciscoEnvMonTemperatureStatusIndex"
                  ]
                },
                "description": "Retrieve ciscoEnvMonTemperatureStatusIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonTemperatureStatusValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-2/ciscoEnvMonTemperatureStatusValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-2",
                    "ciscoEnvMonTemperatureStatusValue"
                  ]
                },
                "description": "Retrieve ciscoEnvMonTemperatureStatusValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonTemperatureStatusIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-3/ciscoEnvMonTemperatureStatusIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-3",
                    "ciscoEnvMonTemperatureStatusIndex"
                  ]
                },
                "description": "Retrieve ciscoEnvMonTemperatureStatusIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonTemperatureState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-3/ciscoEnvMonTemperatureState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-3",
                    "ciscoEnvMonTemperatureState"
                  ]
                },
                "description": "Retrieve ciscoEnvMonTemperatureState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonFanStatusIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-1/ciscoEnvMonFanStatusIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-1",
                    "ciscoEnvMonFanStatusIndex"
                  ]
                },
                "description": "Retrieve ciscoEnvMonFanStatusIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonFanStatusDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-1/ciscoEnvMonFanStatusDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-1",
                    "ciscoEnvMonFanStatusDescr"
                  ]
                },
                "description": "Retrieve ciscoEnvMonFanStatusDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonFanStatusIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-2/ciscoEnvMonFanStatusIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-2",
                    "ciscoEnvMonFanStatusIndex"
                  ]
                },
                "description": "Retrieve ciscoEnvMonFanStatusIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonFanState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-2/ciscoEnvMonFanState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-2",
                    "ciscoEnvMonFanState"
                  ]
                },
                "description": "Retrieve ciscoEnvMonFanState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonSupplyStatusIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-1/ciscoEnvMonSupplyStatusIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-1",
                    "ciscoEnvMonSupplyStatusIndex"
                  ]
                },
                "description": "Retrieve ciscoEnvMonSupplyStatusIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonSupplyStatusDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-1/ciscoEnvMonSupplyStatusDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-1",
                    "ciscoEnvMonSupplyStatusDescr"
                  ]
                },
                "description": "Retrieve ciscoEnvMonSupplyStatusDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonSupplyStatusIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-2/ciscoEnvMonSupplyStatusIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-2",
                    "ciscoEnvMonSupplyStatusIndex"
                  ]
                },
                "description": "Retrieve ciscoEnvMonSupplyStatusIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoEnvMonSupplyState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ENVMON-MIB:CISCO-ENVMON-MIB/ciscoEnvMonSupplyStatusTable/object-2/ciscoEnvMonSupplyState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ENVMON-MIB:CISCO-ENVMON-MIB",
                    "ciscoEnvMonSupplyStatusTable",
                    "object-2",
                    "ciscoEnvMonSupplyState"
                  ]
                },
                "description": "Retrieve ciscoEnvMonSupplyState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-ETHER-CFM-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-ETHER-CFM-MIB\n\nMIB data from `CISCO-ETHER-CFM-MIB` module.\n\n**Root containers:** 1 (CISCO-ETHER-CFM-MIB)\n**Paths:** 66 | **Descendants:** 206\n\nAll endpoints are read-only (GET).\n\nEndpoints: 66 | Operations: 66",
          "item": [
            {
              "name": "GET Get CISCO-ETHER-CFM-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB"
                  ]
                },
                "description": "Retrieve CISCO-ETHER-CFM-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cecCfmEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cecCfmEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cecCfmEvents"
                  ]
                },
                "description": "Retrieve cecCfmEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmMaxEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cecCfmEvents/cEtherCfmMaxEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cecCfmEvents",
                    "cEtherCfmMaxEventIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmMaxEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable"
                  ]
                },
                "description": "Retrieve cEtherCfmEventTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry"
                  ]
                },
                "description": "Retrieve cEtherCfmEventEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventDomainIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventSvlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventSvlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventSvlan"
                  ]
                },
                "description": "Retrieve cEtherCfmEventSvlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventDomainName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventDomainName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventDomainName"
                  ]
                },
                "description": "Retrieve cEtherCfmEventDomainName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventType"
                  ]
                },
                "description": "Retrieve cEtherCfmEventType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventLastChange"
                  ]
                },
                "description": "Retrieve cEtherCfmEventLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventServiceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventServiceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventServiceId"
                  ]
                },
                "description": "Retrieve cEtherCfmEventServiceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventLclMepid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventLclMepid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventLclMepid"
                  ]
                },
                "description": "Retrieve cEtherCfmEventLclMepid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventLclMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventLclMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventLclMacAddress"
                  ]
                },
                "description": "Retrieve cEtherCfmEventLclMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventLclMepCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventLclMepCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventLclMepCount"
                  ]
                },
                "description": "Retrieve cEtherCfmEventLclMepCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventLclIfCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventLclIfCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventLclIfCount"
                  ]
                },
                "description": "Retrieve cEtherCfmEventLclIfCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventRmtMepid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventRmtMepid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventRmtMepid"
                  ]
                },
                "description": "Retrieve cEtherCfmEventRmtMepid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventRmtMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventRmtMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventRmtMacAddress"
                  ]
                },
                "description": "Retrieve cEtherCfmEventRmtMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventRmtPortState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventRmtPortState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventRmtPortState"
                  ]
                },
                "description": "Retrieve cEtherCfmEventRmtPortState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventRmtServiceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventRmtServiceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventRmtServiceId"
                  ]
                },
                "description": "Retrieve cEtherCfmEventRmtServiceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventCode"
                  ]
                },
                "description": "Retrieve cEtherCfmEventCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventDeleteRow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/cEtherCfmEventEntry/cEtherCfmEventDeleteRow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "cEtherCfmEventEntry",
                    "cEtherCfmEventDeleteRow"
                  ]
                },
                "description": "Retrieve cEtherCfmEventDeleteRow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-1/cEtherCfmEventDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-1",
                    "cEtherCfmEventDomainIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventSvlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-1/cEtherCfmEventSvlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-1",
                    "cEtherCfmEventSvlan"
                  ]
                },
                "description": "Retrieve cEtherCfmEventSvlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-1/cEtherCfmEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-1",
                    "cEtherCfmEventIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventServiceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-1/cEtherCfmEventServiceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-1",
                    "cEtherCfmEventServiceId"
                  ]
                },
                "description": "Retrieve cEtherCfmEventServiceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-2/cEtherCfmEventDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-2",
                    "cEtherCfmEventDomainIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventSvlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-2/cEtherCfmEventSvlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-2",
                    "cEtherCfmEventSvlan"
                  ]
                },
                "description": "Retrieve cEtherCfmEventSvlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-2/cEtherCfmEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-2",
                    "cEtherCfmEventIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventLclMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-2/cEtherCfmEventLclMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-2",
                    "cEtherCfmEventLclMacAddress"
                  ]
                },
                "description": "Retrieve cEtherCfmEventLclMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-3/cEtherCfmEventDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-3",
                    "cEtherCfmEventDomainIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventSvlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-3/cEtherCfmEventSvlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-3",
                    "cEtherCfmEventSvlan"
                  ]
                },
                "description": "Retrieve cEtherCfmEventSvlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-3/cEtherCfmEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-3",
                    "cEtherCfmEventIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventLclMepCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-3/cEtherCfmEventLclMepCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-3",
                    "cEtherCfmEventLclMepCount"
                  ]
                },
                "description": "Retrieve cEtherCfmEventLclMepCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-4/cEtherCfmEventDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-4",
                    "cEtherCfmEventDomainIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventSvlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-4/cEtherCfmEventSvlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-4",
                    "cEtherCfmEventSvlan"
                  ]
                },
                "description": "Retrieve cEtherCfmEventSvlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-4/cEtherCfmEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-4",
                    "cEtherCfmEventIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventLclIfCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-4/cEtherCfmEventLclIfCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-4",
                    "cEtherCfmEventLclIfCount"
                  ]
                },
                "description": "Retrieve cEtherCfmEventLclIfCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-5/cEtherCfmEventDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-5",
                    "cEtherCfmEventDomainIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventSvlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-5/cEtherCfmEventSvlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-5",
                    "cEtherCfmEventSvlan"
                  ]
                },
                "description": "Retrieve cEtherCfmEventSvlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-5/cEtherCfmEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-5",
                    "cEtherCfmEventIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventRmtMepid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-5/cEtherCfmEventRmtMepid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-5",
                    "cEtherCfmEventRmtMepid"
                  ]
                },
                "description": "Retrieve cEtherCfmEventRmtMepid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-6"
                  ]
                },
                "description": "Retrieve object-6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-6/cEtherCfmEventDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-6",
                    "cEtherCfmEventDomainIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventSvlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-6/cEtherCfmEventSvlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-6",
                    "cEtherCfmEventSvlan"
                  ]
                },
                "description": "Retrieve cEtherCfmEventSvlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-6/cEtherCfmEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-6",
                    "cEtherCfmEventIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventRmtMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-6/cEtherCfmEventRmtMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-6",
                    "cEtherCfmEventRmtMacAddress"
                  ]
                },
                "description": "Retrieve cEtherCfmEventRmtMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-7",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-7",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-7"
                  ]
                },
                "description": "Retrieve object-7 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-7/cEtherCfmEventDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-7",
                    "cEtherCfmEventDomainIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventSvlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-7/cEtherCfmEventSvlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-7",
                    "cEtherCfmEventSvlan"
                  ]
                },
                "description": "Retrieve cEtherCfmEventSvlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-7/cEtherCfmEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-7",
                    "cEtherCfmEventIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-7/cEtherCfmEventCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-7",
                    "cEtherCfmEventCode"
                  ]
                },
                "description": "Retrieve cEtherCfmEventCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-8",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-8",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-8"
                  ]
                },
                "description": "Retrieve object-8 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-8/cEtherCfmEventDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-8",
                    "cEtherCfmEventDomainIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventSvlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-8/cEtherCfmEventSvlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-8",
                    "cEtherCfmEventSvlan"
                  ]
                },
                "description": "Retrieve cEtherCfmEventSvlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-8/cEtherCfmEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-8",
                    "cEtherCfmEventIndex"
                  ]
                },
                "description": "Retrieve cEtherCfmEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventRmtPortState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-8/cEtherCfmEventRmtPortState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-8",
                    "cEtherCfmEventRmtPortState"
                  ]
                },
                "description": "Retrieve cEtherCfmEventRmtPortState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventRmtMepid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-3/cEtherCfmEventRmtMepid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-3",
                    "cEtherCfmEventRmtMepid"
                  ]
                },
                "description": "Retrieve cEtherCfmEventRmtMepid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventRmtMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-4/cEtherCfmEventRmtMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-4",
                    "cEtherCfmEventRmtMacAddress"
                  ]
                },
                "description": "Retrieve cEtherCfmEventRmtMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventRmtServiceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-5/cEtherCfmEventRmtServiceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-5",
                    "cEtherCfmEventRmtServiceId"
                  ]
                },
                "description": "Retrieve cEtherCfmEventRmtServiceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cEtherCfmEventLclMepid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB/cEtherCfmEventTable/object-3/cEtherCfmEventLclMepid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHER-CFM-MIB:CISCO-ETHER-CFM-MIB",
                    "cEtherCfmEventTable",
                    "object-3",
                    "cEtherCfmEventLclMepid"
                  ]
                },
                "description": "Retrieve cEtherCfmEventLclMepid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-ETHERLIKE-EXT-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-ETHERLIKE-EXT-MIB\n\nMIB data from `CISCO-ETHERLIKE-EXT-MIB` module.\n\n**Root containers:** 1 (CISCO-ETHERLIKE-EXT-MIB)\n**Paths:** 10 | **Descendants:** 9\n\nAll endpoints are read-only (GET).\n\nEndpoints: 10 | Operations: 10",
          "item": [
            {
              "name": "GET Get CISCO-ETHERLIKE-EXT-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB"
                  ]
                },
                "description": "Retrieve CISCO-ETHERLIKE-EXT-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceeDot3PauseExtTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB/ceeDot3PauseExtTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB",
                    "ceeDot3PauseExtTable"
                  ]
                },
                "description": "Retrieve ceeDot3PauseExtTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceeDot3PauseExtEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB/ceeDot3PauseExtTable/ceeDot3PauseExtEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB",
                    "ceeDot3PauseExtTable",
                    "ceeDot3PauseExtEntry"
                  ]
                },
                "description": "Retrieve ceeDot3PauseExtEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB/ceeDot3PauseExtTable/ceeDot3PauseExtEntry/dot3StatsIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB",
                    "ceeDot3PauseExtTable",
                    "ceeDot3PauseExtEntry",
                    "dot3StatsIndex"
                  ]
                },
                "description": "Retrieve dot3StatsIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceeDot3PauseExtAdminMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB/ceeDot3PauseExtTable/ceeDot3PauseExtEntry/ceeDot3PauseExtAdminMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB",
                    "ceeDot3PauseExtTable",
                    "ceeDot3PauseExtEntry",
                    "ceeDot3PauseExtAdminMode"
                  ]
                },
                "description": "Retrieve ceeDot3PauseExtAdminMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceeDot3PauseExtOperMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB/ceeDot3PauseExtTable/ceeDot3PauseExtEntry/ceeDot3PauseExtOperMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB",
                    "ceeDot3PauseExtTable",
                    "ceeDot3PauseExtEntry",
                    "ceeDot3PauseExtOperMode"
                  ]
                },
                "description": "Retrieve ceeDot3PauseExtOperMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceeSubInterfaceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB/ceeSubInterfaceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB",
                    "ceeSubInterfaceTable"
                  ]
                },
                "description": "Retrieve ceeSubInterfaceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceeSubInterfaceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB/ceeSubInterfaceTable/ceeSubInterfaceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB",
                    "ceeSubInterfaceTable",
                    "ceeSubInterfaceEntry"
                  ]
                },
                "description": "Retrieve ceeSubInterfaceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB/ceeSubInterfaceTable/ceeSubInterfaceEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB",
                    "ceeSubInterfaceTable",
                    "ceeSubInterfaceEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ceeSubInterfaceCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB/ceeSubInterfaceTable/ceeSubInterfaceEntry/ceeSubInterfaceCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-ETHERLIKE-EXT-MIB:CISCO-ETHERLIKE-EXT-MIB",
                    "ceeSubInterfaceTable",
                    "ceeSubInterfaceEntry",
                    "ceeSubInterfaceCount"
                  ]
                },
                "description": "Retrieve ceeSubInterfaceCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-FLASH-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-FLASH-MIB\n\nMIB data from `CISCO-FLASH-MIB` module.\n\n**Root containers:** 1 (CISCO-FLASH-MIB)\n**Paths:** 131 | **Descendants:** 163\n\nAll endpoints are read-only (GET).\n\nEndpoints: 131 | Operations: 131",
          "item": [
            {
              "name": "GET Get CISCO-FLASH-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB"
                  ]
                },
                "description": "Retrieve CISCO-FLASH-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDevice",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDevice",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDevice"
                  ]
                },
                "description": "Retrieve ciscoFlashDevice from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDevicesSupported",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDevice/ciscoFlashDevicesSupported",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDevice",
                    "ciscoFlashDevicesSupported"
                  ]
                },
                "description": "Retrieve ciscoFlashDevicesSupported from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCfg"
                  ]
                },
                "description": "Retrieve ciscoFlashCfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCfgDevInsNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCfg/ciscoFlashCfgDevInsNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCfg",
                    "ciscoFlashCfgDevInsNotifEnable"
                  ]
                },
                "description": "Retrieve ciscoFlashCfgDevInsNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCfgDevRemNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCfg/ciscoFlashCfgDevRemNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCfg",
                    "ciscoFlashCfgDevRemNotifEnable"
                  ]
                },
                "description": "Retrieve ciscoFlashCfgDevRemNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionLowSpaceNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCfg/ciscoFlashPartitionLowSpaceNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCfg",
                    "ciscoFlashPartitionLowSpaceNotifEnable"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionLowSpaceNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable/ciscoFlashDeviceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable",
                    "ciscoFlashDeviceEntry"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable/ciscoFlashDeviceEntry/ciscoFlashDeviceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable",
                    "ciscoFlashDeviceEntry",
                    "ciscoFlashDeviceIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable/ciscoFlashDeviceEntry/ciscoFlashDeviceSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable",
                    "ciscoFlashDeviceEntry",
                    "ciscoFlashDeviceSize"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceMinPartitionSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable/ciscoFlashDeviceEntry/ciscoFlashDeviceMinPartitionSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable",
                    "ciscoFlashDeviceEntry",
                    "ciscoFlashDeviceMinPartitionSize"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceMinPartitionSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceMaxPartitions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable/ciscoFlashDeviceEntry/ciscoFlashDeviceMaxPartitions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable",
                    "ciscoFlashDeviceEntry",
                    "ciscoFlashDeviceMaxPartitions"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceMaxPartitions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDevicePartitions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable/ciscoFlashDeviceEntry/ciscoFlashDevicePartitions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable",
                    "ciscoFlashDeviceEntry",
                    "ciscoFlashDevicePartitions"
                  ]
                },
                "description": "Retrieve ciscoFlashDevicePartitions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceChipCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable/ciscoFlashDeviceEntry/ciscoFlashDeviceChipCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable",
                    "ciscoFlashDeviceEntry",
                    "ciscoFlashDeviceChipCount"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceChipCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable/ciscoFlashDeviceEntry/ciscoFlashDeviceDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable",
                    "ciscoFlashDeviceEntry",
                    "ciscoFlashDeviceDescr"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceController",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable/ciscoFlashDeviceEntry/ciscoFlashDeviceController",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable",
                    "ciscoFlashDeviceEntry",
                    "ciscoFlashDeviceController"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceController from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceProgrammingJumper",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable/ciscoFlashDeviceEntry/ciscoFlashDeviceProgrammingJumper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable",
                    "ciscoFlashDeviceEntry",
                    "ciscoFlashDeviceProgrammingJumper"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceProgrammingJumper from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceInitTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable/ciscoFlashDeviceEntry/ciscoFlashDeviceInitTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable",
                    "ciscoFlashDeviceEntry",
                    "ciscoFlashDeviceInitTime"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceInitTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceRemovable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable/ciscoFlashDeviceEntry/ciscoFlashDeviceRemovable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable",
                    "ciscoFlashDeviceEntry",
                    "ciscoFlashDeviceRemovable"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceRemovable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPhyEntIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable/ciscoFlashDeviceEntry/ciscoFlashPhyEntIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable",
                    "ciscoFlashDeviceEntry",
                    "ciscoFlashPhyEntIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashPhyEntIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceNameExtended",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable/ciscoFlashDeviceEntry/ciscoFlashDeviceNameExtended",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable",
                    "ciscoFlashDeviceEntry",
                    "ciscoFlashDeviceNameExtended"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceNameExtended from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceSizeExtended",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable/ciscoFlashDeviceEntry/ciscoFlashDeviceSizeExtended",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable",
                    "ciscoFlashDeviceEntry",
                    "ciscoFlashDeviceSizeExtended"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceSizeExtended from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceMinPartitionSizeExtended",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashDeviceTable/ciscoFlashDeviceEntry/ciscoFlashDeviceMinPartitionSizeExtended",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashDeviceTable",
                    "ciscoFlashDeviceEntry",
                    "ciscoFlashDeviceMinPartitionSizeExtended"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceMinPartitionSizeExtended from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashChipTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashChipTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashChipTable"
                  ]
                },
                "description": "Retrieve ciscoFlashChipTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashChipEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashChipTable/ciscoFlashChipEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashChipTable",
                    "ciscoFlashChipEntry"
                  ]
                },
                "description": "Retrieve ciscoFlashChipEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashChipTable/ciscoFlashChipEntry/ciscoFlashDeviceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashChipTable",
                    "ciscoFlashChipEntry",
                    "ciscoFlashDeviceIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashChipIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashChipTable/ciscoFlashChipEntry/ciscoFlashChipIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashChipTable",
                    "ciscoFlashChipEntry",
                    "ciscoFlashChipIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashChipIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashChipCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashChipTable/ciscoFlashChipEntry/ciscoFlashChipCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashChipTable",
                    "ciscoFlashChipEntry",
                    "ciscoFlashChipCode"
                  ]
                },
                "description": "Retrieve ciscoFlashChipCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashChipDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashChipTable/ciscoFlashChipEntry/ciscoFlashChipDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashChipTable",
                    "ciscoFlashChipEntry",
                    "ciscoFlashChipDescr"
                  ]
                },
                "description": "Retrieve ciscoFlashChipDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashChipWriteRetries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashChipTable/ciscoFlashChipEntry/ciscoFlashChipWriteRetries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashChipTable",
                    "ciscoFlashChipEntry",
                    "ciscoFlashChipWriteRetries"
                  ]
                },
                "description": "Retrieve ciscoFlashChipWriteRetries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashChipEraseRetries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashChipTable/ciscoFlashChipEntry/ciscoFlashChipEraseRetries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashChipTable",
                    "ciscoFlashChipEntry",
                    "ciscoFlashChipEraseRetries"
                  ]
                },
                "description": "Retrieve ciscoFlashChipEraseRetries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashChipMaxWriteRetries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashChipTable/ciscoFlashChipEntry/ciscoFlashChipMaxWriteRetries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashChipTable",
                    "ciscoFlashChipEntry",
                    "ciscoFlashChipMaxWriteRetries"
                  ]
                },
                "description": "Retrieve ciscoFlashChipMaxWriteRetries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashChipMaxEraseRetries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashChipTable/ciscoFlashChipEntry/ciscoFlashChipMaxEraseRetries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashChipTable",
                    "ciscoFlashChipEntry",
                    "ciscoFlashChipMaxEraseRetries"
                  ]
                },
                "description": "Retrieve ciscoFlashChipMaxEraseRetries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry/ciscoFlashDeviceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry",
                    "ciscoFlashDeviceIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry/ciscoFlashPartitionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry",
                    "ciscoFlashPartitionIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionStartChip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry/ciscoFlashPartitionStartChip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry",
                    "ciscoFlashPartitionStartChip"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionStartChip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionEndChip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry/ciscoFlashPartitionEndChip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry",
                    "ciscoFlashPartitionEndChip"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionEndChip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry/ciscoFlashPartitionSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry",
                    "ciscoFlashPartitionSize"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionFreeSpace",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry/ciscoFlashPartitionFreeSpace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry",
                    "ciscoFlashPartitionFreeSpace"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionFreeSpace from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionFileCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry/ciscoFlashPartitionFileCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry",
                    "ciscoFlashPartitionFileCount"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionFileCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionChecksumAlgorithm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry/ciscoFlashPartitionChecksumAlgorithm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry",
                    "ciscoFlashPartitionChecksumAlgorithm"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionChecksumAlgorithm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry/ciscoFlashPartitionStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry",
                    "ciscoFlashPartitionStatus"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionUpgradeMethod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry/ciscoFlashPartitionUpgradeMethod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry",
                    "ciscoFlashPartitionUpgradeMethod"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionUpgradeMethod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry/ciscoFlashPartitionName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry",
                    "ciscoFlashPartitionName"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionNeedErasure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry/ciscoFlashPartitionNeedErasure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry",
                    "ciscoFlashPartitionNeedErasure"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionNeedErasure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionFileNameLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry/ciscoFlashPartitionFileNameLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry",
                    "ciscoFlashPartitionFileNameLength"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionFileNameLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionSizeExtended",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry/ciscoFlashPartitionSizeExtended",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry",
                    "ciscoFlashPartitionSizeExtended"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionSizeExtended from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionFreeSpaceExtended",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry/ciscoFlashPartitionFreeSpaceExtended",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry",
                    "ciscoFlashPartitionFreeSpaceExtended"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionFreeSpaceExtended from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionLowSpaceNotifThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitionTable/ciscoFlashPartitionEntry/ciscoFlashPartitionLowSpaceNotifThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitionTable",
                    "ciscoFlashPartitionEntry",
                    "ciscoFlashPartitionLowSpaceNotifThreshold"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionLowSpaceNotifThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileTable"
                  ]
                },
                "description": "Retrieve ciscoFlashFileTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileTable/ciscoFlashFileEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileTable",
                    "ciscoFlashFileEntry"
                  ]
                },
                "description": "Retrieve ciscoFlashFileEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileTable/ciscoFlashFileEntry/ciscoFlashDeviceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileTable",
                    "ciscoFlashFileEntry",
                    "ciscoFlashDeviceIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileTable/ciscoFlashFileEntry/ciscoFlashPartitionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileTable",
                    "ciscoFlashFileEntry",
                    "ciscoFlashPartitionIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileTable/ciscoFlashFileEntry/ciscoFlashFileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileTable",
                    "ciscoFlashFileEntry",
                    "ciscoFlashFileIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashFileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileTable/ciscoFlashFileEntry/ciscoFlashFileSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileTable",
                    "ciscoFlashFileEntry",
                    "ciscoFlashFileSize"
                  ]
                },
                "description": "Retrieve ciscoFlashFileSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileChecksum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileTable/ciscoFlashFileEntry/ciscoFlashFileChecksum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileTable",
                    "ciscoFlashFileEntry",
                    "ciscoFlashFileChecksum"
                  ]
                },
                "description": "Retrieve ciscoFlashFileChecksum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileTable/ciscoFlashFileEntry/ciscoFlashFileStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileTable",
                    "ciscoFlashFileEntry",
                    "ciscoFlashFileStatus"
                  ]
                },
                "description": "Retrieve ciscoFlashFileStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileTable/ciscoFlashFileEntry/ciscoFlashFileName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileTable",
                    "ciscoFlashFileEntry",
                    "ciscoFlashFileName"
                  ]
                },
                "description": "Retrieve ciscoFlashFileName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileTable/ciscoFlashFileEntry/ciscoFlashFileType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileTable",
                    "ciscoFlashFileEntry",
                    "ciscoFlashFileType"
                  ]
                },
                "description": "Retrieve ciscoFlashFileType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileDate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileTable/ciscoFlashFileEntry/ciscoFlashFileDate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileTable",
                    "ciscoFlashFileEntry",
                    "ciscoFlashFileDate"
                  ]
                },
                "description": "Retrieve ciscoFlashFileDate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileByTypeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileByTypeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileByTypeTable"
                  ]
                },
                "description": "Retrieve ciscoFlashFileByTypeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileByTypeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileByTypeTable/ciscoFlashFileByTypeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileByTypeTable",
                    "ciscoFlashFileByTypeEntry"
                  ]
                },
                "description": "Retrieve ciscoFlashFileByTypeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileByTypeTable/ciscoFlashFileByTypeEntry/ciscoFlashFileType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileByTypeTable",
                    "ciscoFlashFileByTypeEntry",
                    "ciscoFlashFileType"
                  ]
                },
                "description": "Retrieve ciscoFlashFileType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileByTypeTable/ciscoFlashFileByTypeEntry/ciscoFlashDeviceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileByTypeTable",
                    "ciscoFlashFileByTypeEntry",
                    "ciscoFlashDeviceIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileByTypeTable/ciscoFlashFileByTypeEntry/ciscoFlashPartitionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileByTypeTable",
                    "ciscoFlashFileByTypeEntry",
                    "ciscoFlashPartitionIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileByTypeTable/ciscoFlashFileByTypeEntry/ciscoFlashFileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileByTypeTable",
                    "ciscoFlashFileByTypeEntry",
                    "ciscoFlashFileIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashFileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileByTypeSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileByTypeTable/ciscoFlashFileByTypeEntry/ciscoFlashFileByTypeSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileByTypeTable",
                    "ciscoFlashFileByTypeEntry",
                    "ciscoFlashFileByTypeSize"
                  ]
                },
                "description": "Retrieve ciscoFlashFileByTypeSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileByTypeChecksum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileByTypeTable/ciscoFlashFileByTypeEntry/ciscoFlashFileByTypeChecksum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileByTypeTable",
                    "ciscoFlashFileByTypeEntry",
                    "ciscoFlashFileByTypeChecksum"
                  ]
                },
                "description": "Retrieve ciscoFlashFileByTypeChecksum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileByTypeStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileByTypeTable/ciscoFlashFileByTypeEntry/ciscoFlashFileByTypeStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileByTypeTable",
                    "ciscoFlashFileByTypeEntry",
                    "ciscoFlashFileByTypeStatus"
                  ]
                },
                "description": "Retrieve ciscoFlashFileByTypeStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileByTypeName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileByTypeTable/ciscoFlashFileByTypeEntry/ciscoFlashFileByTypeName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileByTypeTable",
                    "ciscoFlashFileByTypeEntry",
                    "ciscoFlashFileByTypeName"
                  ]
                },
                "description": "Retrieve ciscoFlashFileByTypeName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashFileByTypeDate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashFileByTypeTable/ciscoFlashFileByTypeEntry/ciscoFlashFileByTypeDate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashFileByTypeTable",
                    "ciscoFlashFileByTypeEntry",
                    "ciscoFlashFileByTypeDate"
                  ]
                },
                "description": "Retrieve ciscoFlashFileByTypeDate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopyTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCopyTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCopyTable"
                  ]
                },
                "description": "Retrieve ciscoFlashCopyTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopyEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCopyTable/ciscoFlashCopyEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCopyTable",
                    "ciscoFlashCopyEntry"
                  ]
                },
                "description": "Retrieve ciscoFlashCopyEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopySerialNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCopyTable/ciscoFlashCopyEntry/ciscoFlashCopySerialNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCopyTable",
                    "ciscoFlashCopyEntry",
                    "ciscoFlashCopySerialNumber"
                  ]
                },
                "description": "Retrieve ciscoFlashCopySerialNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopyCommand",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCopyTable/ciscoFlashCopyEntry/ciscoFlashCopyCommand",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCopyTable",
                    "ciscoFlashCopyEntry",
                    "ciscoFlashCopyCommand"
                  ]
                },
                "description": "Retrieve ciscoFlashCopyCommand from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopyProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCopyTable/ciscoFlashCopyEntry/ciscoFlashCopyProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCopyTable",
                    "ciscoFlashCopyEntry",
                    "ciscoFlashCopyProtocol"
                  ]
                },
                "description": "Retrieve ciscoFlashCopyProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopySourceName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCopyTable/ciscoFlashCopyEntry/ciscoFlashCopySourceName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCopyTable",
                    "ciscoFlashCopyEntry",
                    "ciscoFlashCopySourceName"
                  ]
                },
                "description": "Retrieve ciscoFlashCopySourceName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopyDestinationName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCopyTable/ciscoFlashCopyEntry/ciscoFlashCopyDestinationName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCopyTable",
                    "ciscoFlashCopyEntry",
                    "ciscoFlashCopyDestinationName"
                  ]
                },
                "description": "Retrieve ciscoFlashCopyDestinationName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopyRemoteUserName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCopyTable/ciscoFlashCopyEntry/ciscoFlashCopyRemoteUserName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCopyTable",
                    "ciscoFlashCopyEntry",
                    "ciscoFlashCopyRemoteUserName"
                  ]
                },
                "description": "Retrieve ciscoFlashCopyRemoteUserName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopyStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCopyTable/ciscoFlashCopyEntry/ciscoFlashCopyStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCopyTable",
                    "ciscoFlashCopyEntry",
                    "ciscoFlashCopyStatus"
                  ]
                },
                "description": "Retrieve ciscoFlashCopyStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopyNotifyOnCompletion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCopyTable/ciscoFlashCopyEntry/ciscoFlashCopyNotifyOnCompletion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCopyTable",
                    "ciscoFlashCopyEntry",
                    "ciscoFlashCopyNotifyOnCompletion"
                  ]
                },
                "description": "Retrieve ciscoFlashCopyNotifyOnCompletion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopyTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCopyTable/ciscoFlashCopyEntry/ciscoFlashCopyTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCopyTable",
                    "ciscoFlashCopyEntry",
                    "ciscoFlashCopyTime"
                  ]
                },
                "description": "Retrieve ciscoFlashCopyTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopyEntryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCopyTable/ciscoFlashCopyEntry/ciscoFlashCopyEntryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCopyTable",
                    "ciscoFlashCopyEntry",
                    "ciscoFlashCopyEntryStatus"
                  ]
                },
                "description": "Retrieve ciscoFlashCopyEntryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopyVerify",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCopyTable/ciscoFlashCopyEntry/ciscoFlashCopyVerify",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCopyTable",
                    "ciscoFlashCopyEntry",
                    "ciscoFlashCopyVerify"
                  ]
                },
                "description": "Retrieve ciscoFlashCopyVerify from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopyServerAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCopyTable/ciscoFlashCopyEntry/ciscoFlashCopyServerAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCopyTable",
                    "ciscoFlashCopyEntry",
                    "ciscoFlashCopyServerAddrType"
                  ]
                },
                "description": "Retrieve ciscoFlashCopyServerAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopyServerAddrRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCopyTable/ciscoFlashCopyEntry/ciscoFlashCopyServerAddrRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCopyTable",
                    "ciscoFlashCopyEntry",
                    "ciscoFlashCopyServerAddrRev1"
                  ]
                },
                "description": "Retrieve ciscoFlashCopyServerAddrRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopyRemotePassword",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashCopyTable/ciscoFlashCopyEntry/ciscoFlashCopyRemotePassword",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashCopyTable",
                    "ciscoFlashCopyEntry",
                    "ciscoFlashCopyRemotePassword"
                  ]
                },
                "description": "Retrieve ciscoFlashCopyRemotePassword from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitioningTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitioningTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitioningTable"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitioningTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitioningEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitioningTable/ciscoFlashPartitioningEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitioningTable",
                    "ciscoFlashPartitioningEntry"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitioningEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitioningSerialNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitioningTable/ciscoFlashPartitioningEntry/ciscoFlashPartitioningSerialNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitioningTable",
                    "ciscoFlashPartitioningEntry",
                    "ciscoFlashPartitioningSerialNumber"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitioningSerialNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitioningCommand",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitioningTable/ciscoFlashPartitioningEntry/ciscoFlashPartitioningCommand",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitioningTable",
                    "ciscoFlashPartitioningEntry",
                    "ciscoFlashPartitioningCommand"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitioningCommand from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitioningDestinationName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitioningTable/ciscoFlashPartitioningEntry/ciscoFlashPartitioningDestinationName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitioningTable",
                    "ciscoFlashPartitioningEntry",
                    "ciscoFlashPartitioningDestinationName"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitioningDestinationName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitioningPartitionCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitioningTable/ciscoFlashPartitioningEntry/ciscoFlashPartitioningPartitionCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitioningTable",
                    "ciscoFlashPartitioningEntry",
                    "ciscoFlashPartitioningPartitionCount"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitioningPartitionCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitioningPartitionSizes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitioningTable/ciscoFlashPartitioningEntry/ciscoFlashPartitioningPartitionSizes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitioningTable",
                    "ciscoFlashPartitioningEntry",
                    "ciscoFlashPartitioningPartitionSizes"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitioningPartitionSizes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitioningStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitioningTable/ciscoFlashPartitioningEntry/ciscoFlashPartitioningStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitioningTable",
                    "ciscoFlashPartitioningEntry",
                    "ciscoFlashPartitioningStatus"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitioningStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitioningNotifyOnCompletion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitioningTable/ciscoFlashPartitioningEntry/ciscoFlashPartitioningNotifyOnCompletion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitioningTable",
                    "ciscoFlashPartitioningEntry",
                    "ciscoFlashPartitioningNotifyOnCompletion"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitioningNotifyOnCompletion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitioningTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitioningTable/ciscoFlashPartitioningEntry/ciscoFlashPartitioningTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitioningTable",
                    "ciscoFlashPartitioningEntry",
                    "ciscoFlashPartitioningTime"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitioningTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitioningEntryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashPartitioningTable/ciscoFlashPartitioningEntry/ciscoFlashPartitioningEntryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashPartitioningTable",
                    "ciscoFlashPartitioningEntry",
                    "ciscoFlashPartitioningEntryStatus"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitioningEntryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashMiscOpTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable"
                  ]
                },
                "description": "Retrieve ciscoFlashMiscOpTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashMiscOpEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/ciscoFlashMiscOpEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "ciscoFlashMiscOpEntry"
                  ]
                },
                "description": "Retrieve ciscoFlashMiscOpEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashMiscOpSerialNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/ciscoFlashMiscOpEntry/ciscoFlashMiscOpSerialNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "ciscoFlashMiscOpEntry",
                    "ciscoFlashMiscOpSerialNumber"
                  ]
                },
                "description": "Retrieve ciscoFlashMiscOpSerialNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashMiscOpCommand",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/ciscoFlashMiscOpEntry/ciscoFlashMiscOpCommand",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "ciscoFlashMiscOpEntry",
                    "ciscoFlashMiscOpCommand"
                  ]
                },
                "description": "Retrieve ciscoFlashMiscOpCommand from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashMiscOpDestinationName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/ciscoFlashMiscOpEntry/ciscoFlashMiscOpDestinationName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "ciscoFlashMiscOpEntry",
                    "ciscoFlashMiscOpDestinationName"
                  ]
                },
                "description": "Retrieve ciscoFlashMiscOpDestinationName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashMiscOpStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/ciscoFlashMiscOpEntry/ciscoFlashMiscOpStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "ciscoFlashMiscOpEntry",
                    "ciscoFlashMiscOpStatus"
                  ]
                },
                "description": "Retrieve ciscoFlashMiscOpStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashMiscOpNotifyOnCompletion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/ciscoFlashMiscOpEntry/ciscoFlashMiscOpNotifyOnCompletion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "ciscoFlashMiscOpEntry",
                    "ciscoFlashMiscOpNotifyOnCompletion"
                  ]
                },
                "description": "Retrieve ciscoFlashMiscOpNotifyOnCompletion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashMiscOpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/ciscoFlashMiscOpEntry/ciscoFlashMiscOpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "ciscoFlashMiscOpEntry",
                    "ciscoFlashMiscOpTime"
                  ]
                },
                "description": "Retrieve ciscoFlashMiscOpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashMiscOpEntryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/ciscoFlashMiscOpEntry/ciscoFlashMiscOpEntryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "ciscoFlashMiscOpEntry",
                    "ciscoFlashMiscOpEntryStatus"
                  ]
                },
                "description": "Retrieve ciscoFlashMiscOpEntryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopySerialNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-1/ciscoFlashCopySerialNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-1",
                    "ciscoFlashCopySerialNumber"
                  ]
                },
                "description": "Retrieve ciscoFlashCopySerialNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashCopyStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-1/ciscoFlashCopyStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-1",
                    "ciscoFlashCopyStatus"
                  ]
                },
                "description": "Retrieve ciscoFlashCopyStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitioningSerialNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-1/ciscoFlashPartitioningSerialNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-1",
                    "ciscoFlashPartitioningSerialNumber"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitioningSerialNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitioningStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-1/ciscoFlashPartitioningStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-1",
                    "ciscoFlashPartitioningStatus"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitioningStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashMiscOpSerialNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-1/ciscoFlashMiscOpSerialNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-1",
                    "ciscoFlashMiscOpSerialNumber"
                  ]
                },
                "description": "Retrieve ciscoFlashMiscOpSerialNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashMiscOpStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-1/ciscoFlashMiscOpStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-1",
                    "ciscoFlashMiscOpStatus"
                  ]
                },
                "description": "Retrieve ciscoFlashMiscOpStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-1/ciscoFlashDeviceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-1",
                    "ciscoFlashDeviceIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceMinPartitionSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-1/ciscoFlashDeviceMinPartitionSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-1",
                    "ciscoFlashDeviceMinPartitionSize"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceMinPartitionSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-2/ciscoFlashDeviceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-2",
                    "ciscoFlashDeviceIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceNameExtended",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-2/ciscoFlashDeviceNameExtended",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-2",
                    "ciscoFlashDeviceNameExtended"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceNameExtended from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceNameExtended",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-1/ciscoFlashDeviceNameExtended",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-1",
                    "ciscoFlashDeviceNameExtended"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceNameExtended from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-1/ciscoFlashPartitionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-1",
                    "ciscoFlashPartitionIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-1/ciscoFlashPartitionName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-1",
                    "ciscoFlashPartitionName"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-2/ciscoFlashPartitionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-2",
                    "ciscoFlashPartitionIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionFreeSpaceExtended",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-2/ciscoFlashPartitionFreeSpaceExtended",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-2",
                    "ciscoFlashPartitionFreeSpaceExtended"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionFreeSpaceExtended from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashDeviceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-3/ciscoFlashDeviceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-3",
                    "ciscoFlashDeviceIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashDeviceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-3/ciscoFlashPartitionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-3",
                    "ciscoFlashPartitionIndex"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoFlashPartitionLowSpaceNotifThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FLASH-MIB:CISCO-FLASH-MIB/ciscoFlashMiscOpTable/object-3/ciscoFlashPartitionLowSpaceNotifThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FLASH-MIB:CISCO-FLASH-MIB",
                    "ciscoFlashMiscOpTable",
                    "object-3",
                    "ciscoFlashPartitionLowSpaceNotifThreshold"
                  ]
                },
                "description": "Retrieve ciscoFlashPartitionLowSpaceNotifThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-FTP-CLIENT-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-FTP-CLIENT-MIB\n\nMIB data from `CISCO-FTP-CLIENT-MIB` module.\n\n**Root containers:** 1 (CISCO-FTP-CLIENT-MIB)\n**Paths:** 20 | **Descendants:** 19\n\nAll endpoints are read-only (GET).\n\nEndpoints: 20 | Operations: 20",
          "item": [
            {
              "name": "GET Get CISCO-FTP-CLIENT-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB"
                  ]
                },
                "description": "Retrieve CISCO-FTP-CLIENT-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequest"
                  ]
                },
                "description": "Retrieve cfcRequest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestMaximum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequest/cfcRequestMaximum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequest",
                    "cfcRequestMaximum"
                  ]
                },
                "description": "Retrieve cfcRequestMaximum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequest/cfcRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequest",
                    "cfcRequests"
                  ]
                },
                "description": "Retrieve cfcRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestsHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequest/cfcRequestsHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequest",
                    "cfcRequestsHigh"
                  ]
                },
                "description": "Retrieve cfcRequestsHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestsBumped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequest/cfcRequestsBumped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequest",
                    "cfcRequestsBumped"
                  ]
                },
                "description": "Retrieve cfcRequestsBumped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequestTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequestTable"
                  ]
                },
                "description": "Retrieve cfcRequestTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequestTable/cfcRequestEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequestTable",
                    "cfcRequestEntry"
                  ]
                },
                "description": "Retrieve cfcRequestEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequestTable/cfcRequestEntry/cfcRequestIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequestTable",
                    "cfcRequestEntry",
                    "cfcRequestIndex"
                  ]
                },
                "description": "Retrieve cfcRequestIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestOperation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequestTable/cfcRequestEntry/cfcRequestOperation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequestTable",
                    "cfcRequestEntry",
                    "cfcRequestOperation"
                  ]
                },
                "description": "Retrieve cfcRequestOperation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestLocalFile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequestTable/cfcRequestEntry/cfcRequestLocalFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequestTable",
                    "cfcRequestEntry",
                    "cfcRequestLocalFile"
                  ]
                },
                "description": "Retrieve cfcRequestLocalFile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestRemoteFile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequestTable/cfcRequestEntry/cfcRequestRemoteFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequestTable",
                    "cfcRequestEntry",
                    "cfcRequestRemoteFile"
                  ]
                },
                "description": "Retrieve cfcRequestRemoteFile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestServer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequestTable/cfcRequestEntry/cfcRequestServer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequestTable",
                    "cfcRequestEntry",
                    "cfcRequestServer"
                  ]
                },
                "description": "Retrieve cfcRequestServer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestUser",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequestTable/cfcRequestEntry/cfcRequestUser",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequestTable",
                    "cfcRequestEntry",
                    "cfcRequestUser"
                  ]
                },
                "description": "Retrieve cfcRequestUser from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestPassword",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequestTable/cfcRequestEntry/cfcRequestPassword",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequestTable",
                    "cfcRequestEntry",
                    "cfcRequestPassword"
                  ]
                },
                "description": "Retrieve cfcRequestPassword from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestResult",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequestTable/cfcRequestEntry/cfcRequestResult",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequestTable",
                    "cfcRequestEntry",
                    "cfcRequestResult"
                  ]
                },
                "description": "Retrieve cfcRequestResult from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestCompletionTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequestTable/cfcRequestEntry/cfcRequestCompletionTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequestTable",
                    "cfcRequestEntry",
                    "cfcRequestCompletionTime"
                  ]
                },
                "description": "Retrieve cfcRequestCompletionTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestStop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequestTable/cfcRequestEntry/cfcRequestStop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequestTable",
                    "cfcRequestEntry",
                    "cfcRequestStop"
                  ]
                },
                "description": "Retrieve cfcRequestStop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestOperationState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequestTable/cfcRequestEntry/cfcRequestOperationState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequestTable",
                    "cfcRequestEntry",
                    "cfcRequestOperationState"
                  ]
                },
                "description": "Retrieve cfcRequestOperationState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cfcRequestEntryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB/cfcRequestTable/cfcRequestEntry/cfcRequestEntryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-FTP-CLIENT-MIB:CISCO-FTP-CLIENT-MIB",
                    "cfcRequestTable",
                    "cfcRequestEntry",
                    "cfcRequestEntryStatus"
                  ]
                },
                "description": "Retrieve cfcRequestEntryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-HSRP-EXT-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-HSRP-EXT-MIB\n\nMIB data from `CISCO-HSRP-EXT-MIB` module.\n\n**Root containers:** 1 (CISCO-HSRP-EXT-MIB)\n**Paths:** 29 | **Descendants:** 28\n\nAll endpoints are read-only (GET).\n\nEndpoints: 29 | Operations: 29",
          "item": [
            {
              "name": "GET Get CISCO-HSRP-EXT-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB"
                  ]
                },
                "description": "Retrieve CISCO-HSRP-EXT-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfTrackedTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfTrackedTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfTrackedTable"
                  ]
                },
                "description": "Retrieve cHsrpExtIfTrackedTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfTrackedEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfTrackedTable/cHsrpExtIfTrackedEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfTrackedTable",
                    "cHsrpExtIfTrackedEntry"
                  ]
                },
                "description": "Retrieve cHsrpExtIfTrackedEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfTrackedTable/cHsrpExtIfTrackedEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfTrackedTable",
                    "cHsrpExtIfTrackedEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfTrackedTable/cHsrpExtIfTrackedEntry/cHsrpGrpNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfTrackedTable",
                    "cHsrpExtIfTrackedEntry",
                    "cHsrpGrpNumber"
                  ]
                },
                "description": "Retrieve cHsrpGrpNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfTracked",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfTrackedTable/cHsrpExtIfTrackedEntry/cHsrpExtIfTracked",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfTrackedTable",
                    "cHsrpExtIfTrackedEntry",
                    "cHsrpExtIfTracked"
                  ]
                },
                "description": "Retrieve cHsrpExtIfTracked from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfTrackedPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfTrackedTable/cHsrpExtIfTrackedEntry/cHsrpExtIfTrackedPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfTrackedTable",
                    "cHsrpExtIfTrackedEntry",
                    "cHsrpExtIfTrackedPriority"
                  ]
                },
                "description": "Retrieve cHsrpExtIfTrackedPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfTrackedRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfTrackedTable/cHsrpExtIfTrackedEntry/cHsrpExtIfTrackedRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfTrackedTable",
                    "cHsrpExtIfTrackedEntry",
                    "cHsrpExtIfTrackedRowStatus"
                  ]
                },
                "description": "Retrieve cHsrpExtIfTrackedRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtSecAddrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtSecAddrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtSecAddrTable"
                  ]
                },
                "description": "Retrieve cHsrpExtSecAddrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtSecAddrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtSecAddrTable/cHsrpExtSecAddrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtSecAddrTable",
                    "cHsrpExtSecAddrEntry"
                  ]
                },
                "description": "Retrieve cHsrpExtSecAddrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtSecAddrTable/cHsrpExtSecAddrEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtSecAddrTable",
                    "cHsrpExtSecAddrEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtSecAddrTable/cHsrpExtSecAddrEntry/cHsrpGrpNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtSecAddrTable",
                    "cHsrpExtSecAddrEntry",
                    "cHsrpGrpNumber"
                  ]
                },
                "description": "Retrieve cHsrpGrpNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtSecAddrAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtSecAddrTable/cHsrpExtSecAddrEntry/cHsrpExtSecAddrAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtSecAddrTable",
                    "cHsrpExtSecAddrEntry",
                    "cHsrpExtSecAddrAddress"
                  ]
                },
                "description": "Retrieve cHsrpExtSecAddrAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtSecAddrRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtSecAddrTable/cHsrpExtSecAddrEntry/cHsrpExtSecAddrRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtSecAddrTable",
                    "cHsrpExtSecAddrEntry",
                    "cHsrpExtSecAddrRowStatus"
                  ]
                },
                "description": "Retrieve cHsrpExtSecAddrRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfStandbyTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfStandbyTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfStandbyTable"
                  ]
                },
                "description": "Retrieve cHsrpExtIfStandbyTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfStandbyEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfStandbyTable/cHsrpExtIfStandbyEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfStandbyTable",
                    "cHsrpExtIfStandbyEntry"
                  ]
                },
                "description": "Retrieve cHsrpExtIfStandbyEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfStandbyTable/cHsrpExtIfStandbyEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfStandbyTable",
                    "cHsrpExtIfStandbyEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfStandbyTable/cHsrpExtIfStandbyEntry/cHsrpGrpNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfStandbyTable",
                    "cHsrpExtIfStandbyEntry",
                    "cHsrpGrpNumber"
                  ]
                },
                "description": "Retrieve cHsrpGrpNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfStandbyIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfStandbyTable/cHsrpExtIfStandbyEntry/cHsrpExtIfStandbyIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfStandbyTable",
                    "cHsrpExtIfStandbyEntry",
                    "cHsrpExtIfStandbyIndex"
                  ]
                },
                "description": "Retrieve cHsrpExtIfStandbyIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfStandbyDestAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfStandbyTable/cHsrpExtIfStandbyEntry/cHsrpExtIfStandbyDestAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfStandbyTable",
                    "cHsrpExtIfStandbyEntry",
                    "cHsrpExtIfStandbyDestAddrType"
                  ]
                },
                "description": "Retrieve cHsrpExtIfStandbyDestAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfStandbyDestAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfStandbyTable/cHsrpExtIfStandbyEntry/cHsrpExtIfStandbyDestAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfStandbyTable",
                    "cHsrpExtIfStandbyEntry",
                    "cHsrpExtIfStandbyDestAddr"
                  ]
                },
                "description": "Retrieve cHsrpExtIfStandbyDestAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfStandbySourceAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfStandbyTable/cHsrpExtIfStandbyEntry/cHsrpExtIfStandbySourceAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfStandbyTable",
                    "cHsrpExtIfStandbyEntry",
                    "cHsrpExtIfStandbySourceAddrType"
                  ]
                },
                "description": "Retrieve cHsrpExtIfStandbySourceAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfStandbySourceAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfStandbyTable/cHsrpExtIfStandbyEntry/cHsrpExtIfStandbySourceAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfStandbyTable",
                    "cHsrpExtIfStandbyEntry",
                    "cHsrpExtIfStandbySourceAddr"
                  ]
                },
                "description": "Retrieve cHsrpExtIfStandbySourceAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfStandbyRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfStandbyTable/cHsrpExtIfStandbyEntry/cHsrpExtIfStandbyRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfStandbyTable",
                    "cHsrpExtIfStandbyEntry",
                    "cHsrpExtIfStandbyRowStatus"
                  ]
                },
                "description": "Retrieve cHsrpExtIfStandbyRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfTable"
                  ]
                },
                "description": "Retrieve cHsrpExtIfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfTable/cHsrpExtIfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfTable",
                    "cHsrpExtIfEntry"
                  ]
                },
                "description": "Retrieve cHsrpExtIfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfTable/cHsrpExtIfEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfTable",
                    "cHsrpExtIfEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfUseBIA",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfTable/cHsrpExtIfEntry/cHsrpExtIfUseBIA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfTable",
                    "cHsrpExtIfEntry",
                    "cHsrpExtIfUseBIA"
                  ]
                },
                "description": "Retrieve cHsrpExtIfUseBIA from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpExtIfRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB/cHsrpExtIfTable/cHsrpExtIfEntry/cHsrpExtIfRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-EXT-MIB:CISCO-HSRP-EXT-MIB",
                    "cHsrpExtIfTable",
                    "cHsrpExtIfEntry",
                    "cHsrpExtIfRowStatus"
                  ]
                },
                "description": "Retrieve cHsrpExtIfRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-HSRP-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-HSRP-MIB\n\nMIB data from `CISCO-HSRP-MIB` module.\n\n**Root containers:** 1 (CISCO-HSRP-MIB)\n**Paths:** 28 | **Descendants:** 27\n\nAll endpoints are read-only (GET).\n\nEndpoints: 28 | Operations: 28",
          "item": [
            {
              "name": "GET Get CISCO-HSRP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB"
                  ]
                },
                "description": "Retrieve CISCO-HSRP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGlobalConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGlobalConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGlobalConfig"
                  ]
                },
                "description": "Retrieve cHsrpGlobalConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpConfigTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGlobalConfig/cHsrpConfigTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGlobalConfig",
                    "cHsrpConfigTimeout"
                  ]
                },
                "description": "Retrieve cHsrpConfigTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable"
                  ]
                },
                "description": "Retrieve cHsrpGrpTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry"
                  ]
                },
                "description": "Retrieve cHsrpGrpEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpNumber"
                  ]
                },
                "description": "Retrieve cHsrpGrpNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpAuth",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpAuth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpAuth"
                  ]
                },
                "description": "Retrieve cHsrpGrpAuth from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpPriority"
                  ]
                },
                "description": "Retrieve cHsrpGrpPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpPreempt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpPreempt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpPreempt"
                  ]
                },
                "description": "Retrieve cHsrpGrpPreempt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpPreemptDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpPreemptDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpPreemptDelay"
                  ]
                },
                "description": "Retrieve cHsrpGrpPreemptDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpUseConfiguredTimers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpUseConfiguredTimers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpUseConfiguredTimers"
                  ]
                },
                "description": "Retrieve cHsrpGrpUseConfiguredTimers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpConfiguredHelloTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpConfiguredHelloTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpConfiguredHelloTime"
                  ]
                },
                "description": "Retrieve cHsrpGrpConfiguredHelloTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpConfiguredHoldTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpConfiguredHoldTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpConfiguredHoldTime"
                  ]
                },
                "description": "Retrieve cHsrpGrpConfiguredHoldTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpLearnedHelloTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpLearnedHelloTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpLearnedHelloTime"
                  ]
                },
                "description": "Retrieve cHsrpGrpLearnedHelloTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpLearnedHoldTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpLearnedHoldTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpLearnedHoldTime"
                  ]
                },
                "description": "Retrieve cHsrpGrpLearnedHoldTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpVirtualIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpVirtualIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpVirtualIpAddr"
                  ]
                },
                "description": "Retrieve cHsrpGrpVirtualIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpUseConfigVirtualIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpUseConfigVirtualIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpUseConfigVirtualIpAddr"
                  ]
                },
                "description": "Retrieve cHsrpGrpUseConfigVirtualIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpActiveRouter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpActiveRouter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpActiveRouter"
                  ]
                },
                "description": "Retrieve cHsrpGrpActiveRouter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpStandbyRouter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpStandbyRouter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpStandbyRouter"
                  ]
                },
                "description": "Retrieve cHsrpGrpStandbyRouter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpStandbyState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpStandbyState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpStandbyState"
                  ]
                },
                "description": "Retrieve cHsrpGrpStandbyState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpVirtualMacAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpVirtualMacAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpVirtualMacAddr"
                  ]
                },
                "description": "Retrieve cHsrpGrpVirtualMacAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpEntryRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpEntryRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpEntryRowStatus"
                  ]
                },
                "description": "Retrieve cHsrpGrpEntryRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpIpNone",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/cHsrpGrpEntry/cHsrpGrpIpNone",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "cHsrpGrpEntry",
                    "cHsrpGrpIpNone"
                  ]
                },
                "description": "Retrieve cHsrpGrpIpNone from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/object-1/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "object-1",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/object-1/cHsrpGrpNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "object-1",
                    "cHsrpGrpNumber"
                  ]
                },
                "description": "Retrieve cHsrpGrpNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHsrpGrpStandbyState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-HSRP-MIB:CISCO-HSRP-MIB/cHsrpGrpTable/object-1/cHsrpGrpStandbyState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-HSRP-MIB:CISCO-HSRP-MIB",
                    "cHsrpGrpTable",
                    "object-1",
                    "cHsrpGrpStandbyState"
                  ]
                },
                "description": "Retrieve cHsrpGrpStandbyState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
          "description": "Cisco IOS-XE MIB - CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN\n\nMIB data from `CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN` module.\n\n**Root containers:** 1 (CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN)\n**Paths:** 21 | **Descendants:** 33\n\nAll endpoints are read-only (GET).\n\nEndpoints: 21 | Operations: 21",
          "item": [
            {
              "name": "GET Get CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN"
                  ]
                },
                "description": "Retrieve CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmCurrentStatusChangePVclTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmCurrentStatusChangePVclTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmCurrentStatusChangePVclTable"
                  ]
                },
                "description": "Retrieve atmCurrentStatusChangePVclTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmCurrentStatusChangePVclEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmCurrentStatusChangePVclTable/atmCurrentStatusChangePVclEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmCurrentStatusChangePVclTable",
                    "atmCurrentStatusChangePVclEntry"
                  ]
                },
                "description": "Retrieve atmCurrentStatusChangePVclEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmCurrentStatusChangePVclTable/atmCurrentStatusChangePVclEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmCurrentStatusChangePVclTable",
                    "atmCurrentStatusChangePVclEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmCurrentStatusChangePVclTable/atmCurrentStatusChangePVclEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmCurrentStatusChangePVclTable",
                    "atmCurrentStatusChangePVclEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmCurrentStatusChangePVclTable/atmCurrentStatusChangePVclEntry/atmVclVci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmCurrentStatusChangePVclTable",
                    "atmCurrentStatusChangePVclEntry",
                    "atmVclVci"
                  ]
                },
                "description": "Retrieve atmVclVci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmPVclStatusTransition",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmCurrentStatusChangePVclTable/atmCurrentStatusChangePVclEntry/atmPVclStatusTransition",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmCurrentStatusChangePVclTable",
                    "atmCurrentStatusChangePVclEntry",
                    "atmPVclStatusTransition"
                  ]
                },
                "description": "Retrieve atmPVclStatusTransition from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmPVclStatusChangeStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmCurrentStatusChangePVclTable/atmCurrentStatusChangePVclEntry/atmPVclStatusChangeStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmCurrentStatusChangePVclTable",
                    "atmCurrentStatusChangePVclEntry",
                    "atmPVclStatusChangeStart"
                  ]
                },
                "description": "Retrieve atmPVclStatusChangeStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmPVclStatusChangeEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmCurrentStatusChangePVclTable/atmCurrentStatusChangePVclEntry/atmPVclStatusChangeEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmCurrentStatusChangePVclTable",
                    "atmCurrentStatusChangePVclEntry",
                    "atmPVclStatusChangeEnd"
                  ]
                },
                "description": "Retrieve atmPVclStatusChangeEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmStatusChangePVclRangeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmStatusChangePVclRangeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmStatusChangePVclRangeTable"
                  ]
                },
                "description": "Retrieve atmStatusChangePVclRangeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmStatusChangePVclRangeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmStatusChangePVclRangeTable/atmStatusChangePVclRangeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmStatusChangePVclRangeTable",
                    "atmStatusChangePVclRangeEntry"
                  ]
                },
                "description": "Retrieve atmStatusChangePVclRangeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmStatusChangePVclRangeTable/atmStatusChangePVclRangeEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmStatusChangePVclRangeTable",
                    "atmStatusChangePVclRangeEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmStatusChangePVclRangeTable/atmStatusChangePVclRangeEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmStatusChangePVclRangeTable",
                    "atmStatusChangePVclRangeEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rangeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmStatusChangePVclRangeTable/atmStatusChangePVclRangeEntry/rangeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmStatusChangePVclRangeTable",
                    "atmStatusChangePVclRangeEntry",
                    "rangeIndex"
                  ]
                },
                "description": "Retrieve rangeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmPVclLowerRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmStatusChangePVclRangeTable/atmStatusChangePVclRangeEntry/atmPVclLowerRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmStatusChangePVclRangeTable",
                    "atmStatusChangePVclRangeEntry",
                    "atmPVclLowerRangeValue"
                  ]
                },
                "description": "Retrieve atmPVclLowerRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmPVclHigherRangeValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmStatusChangePVclRangeTable/atmStatusChangePVclRangeEntry/atmPVclHigherRangeValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmStatusChangePVclRangeTable",
                    "atmStatusChangePVclRangeEntry",
                    "atmPVclHigherRangeValue"
                  ]
                },
                "description": "Retrieve atmPVclHigherRangeValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmPVclRangeStatusChangeStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmStatusChangePVclRangeTable/atmStatusChangePVclRangeEntry/atmPVclRangeStatusChangeStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmStatusChangePVclRangeTable",
                    "atmStatusChangePVclRangeEntry",
                    "atmPVclRangeStatusChangeStart"
                  ]
                },
                "description": "Retrieve atmPVclRangeStatusChangeStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmPVclRangeStatusChangeEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmStatusChangePVclRangeTable/atmStatusChangePVclRangeEntry/atmPVclRangeStatusChangeEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmStatusChangePVclRangeTable",
                    "atmStatusChangePVclRangeEntry",
                    "atmPVclRangeStatusChangeEnd"
                  ]
                },
                "description": "Retrieve atmPVclRangeStatusChangeEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmIntfCurrentlyDownToUpPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmIntfCurrentlyDownToUpPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmIntfCurrentlyDownToUpPVcls"
                  ]
                },
                "description": "Retrieve atmIntfCurrentlyDownToUpPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmIntfOAMFailedPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmIntfOAMFailedPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmIntfOAMFailedPVcls"
                  ]
                },
                "description": "Retrieve atmIntfOAMFailedPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmIntfCurrentlyOAMFailingPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN/atmIntfCurrentlyOAMFailingPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN:CISCO-IETF-ATM2-PVCTRAP-MIB-EXTN",
                    "atmIntfCurrentlyOAMFailingPVcls"
                  ]
                },
                "description": "Retrieve atmIntfCurrentlyOAMFailingPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IETF-ATM2-PVCTRAP-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IETF-ATM2-PVCTRAP-MIB\n\nMIB data from `CISCO-IETF-ATM2-PVCTRAP-MIB` module.\n\n**Root containers:** 1 (CISCO-IETF-ATM2-PVCTRAP-MIB)\n**Paths:** 13 | **Descendants:** 20\n\nAll endpoints are read-only (GET).\n\nEndpoints: 13 | Operations: 13",
          "item": [
            {
              "name": "GET Get CISCO-IETF-ATM2-PVCTRAP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IETF-ATM2-PVCTRAP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmCurrentlyFailingPVclTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB/atmCurrentlyFailingPVclTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB",
                    "atmCurrentlyFailingPVclTable"
                  ]
                },
                "description": "Retrieve atmCurrentlyFailingPVclTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmCurrentlyFailingPVclEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB/atmCurrentlyFailingPVclTable/atmCurrentlyFailingPVclEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB",
                    "atmCurrentlyFailingPVclTable",
                    "atmCurrentlyFailingPVclEntry"
                  ]
                },
                "description": "Retrieve atmCurrentlyFailingPVclEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB/atmCurrentlyFailingPVclTable/atmCurrentlyFailingPVclEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB",
                    "atmCurrentlyFailingPVclTable",
                    "atmCurrentlyFailingPVclEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB/atmCurrentlyFailingPVclTable/atmCurrentlyFailingPVclEntry/atmVclVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB",
                    "atmCurrentlyFailingPVclTable",
                    "atmCurrentlyFailingPVclEntry",
                    "atmVclVpi"
                  ]
                },
                "description": "Retrieve atmVclVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmVclVci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB/atmCurrentlyFailingPVclTable/atmCurrentlyFailingPVclEntry/atmVclVci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB",
                    "atmCurrentlyFailingPVclTable",
                    "atmCurrentlyFailingPVclEntry",
                    "atmVclVci"
                  ]
                },
                "description": "Retrieve atmVclVci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmCurrentlyFailingPVclTimeStamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB/atmCurrentlyFailingPVclTable/atmCurrentlyFailingPVclEntry/atmCurrentlyFailingPVclTimeStamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB",
                    "atmCurrentlyFailingPVclTable",
                    "atmCurrentlyFailingPVclEntry",
                    "atmCurrentlyFailingPVclTimeStamp"
                  ]
                },
                "description": "Retrieve atmCurrentlyFailingPVclTimeStamp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmPreviouslyFailedPVclTimeStamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB/atmCurrentlyFailingPVclTable/atmCurrentlyFailingPVclEntry/atmPreviouslyFailedPVclTimeStamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB",
                    "atmCurrentlyFailingPVclTable",
                    "atmCurrentlyFailingPVclEntry",
                    "atmPreviouslyFailedPVclTimeStamp"
                  ]
                },
                "description": "Retrieve atmPreviouslyFailedPVclTimeStamp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmIntfPvcFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB/atmIntfPvcFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB",
                    "atmIntfPvcFailures"
                  ]
                },
                "description": "Retrieve atmIntfPvcFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmIntfCurrentlyFailingPVcls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB/atmIntfCurrentlyFailingPVcls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB",
                    "atmIntfCurrentlyFailingPVcls"
                  ]
                },
                "description": "Retrieve atmIntfCurrentlyFailingPVcls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmIntfPvcFailuresTrapEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB/atmIntfPvcFailuresTrapEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB",
                    "atmIntfPvcFailuresTrapEnable"
                  ]
                },
                "description": "Retrieve atmIntfPvcFailuresTrapEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmIntfPvcNotificationInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB/atmIntfPvcNotificationInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB",
                    "atmIntfPvcNotificationInterval"
                  ]
                },
                "description": "Retrieve atmIntfPvcNotificationInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atmPreviouslyFailedPVclInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB/atmPreviouslyFailedPVclInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ATM2-PVCTRAP-MIB:CISCO-IETF-ATM2-PVCTRAP-MIB",
                    "atmPreviouslyFailedPVclInterval"
                  ]
                },
                "description": "Retrieve atmPreviouslyFailedPVclInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IETF-BFD-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IETF-BFD-MIB\n\nMIB data from `CISCO-IETF-BFD-MIB` module.\n\n**Root containers:** 1 (CISCO-IETF-BFD-MIB)\n**Paths:** 64 | **Descendants:** 69\n\nAll endpoints are read-only (GET).\n\nEndpoints: 64 | Operations: 64",
          "item": [
            {
              "name": "GET Get CISCO-IETF-BFD-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IETF-BFD-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdScalarObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdScalarObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdScalarObjects"
                  ]
                },
                "description": "Retrieve ciscoBfdScalarObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdScalarObjects/ciscoBfdAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdScalarObjects",
                    "ciscoBfdAdminStatus"
                  ]
                },
                "description": "Retrieve ciscoBfdAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdVersionNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdScalarObjects/ciscoBfdVersionNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdScalarObjects",
                    "ciscoBfdVersionNumber"
                  ]
                },
                "description": "Retrieve ciscoBfdVersionNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessNotificationsEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdScalarObjects/ciscoBfdSessNotificationsEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdScalarObjects",
                    "ciscoBfdSessNotificationsEnable"
                  ]
                },
                "description": "Retrieve ciscoBfdSessNotificationsEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable"
                  ]
                },
                "description": "Retrieve ciscoBfdSessTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry"
                  ]
                },
                "description": "Retrieve ciscoBfdSessEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessIndex"
                  ]
                },
                "description": "Retrieve ciscoBfdSessIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessApplicationId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessApplicationId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessApplicationId"
                  ]
                },
                "description": "Retrieve ciscoBfdSessApplicationId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessDiscriminator",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessDiscriminator",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessDiscriminator"
                  ]
                },
                "description": "Retrieve ciscoBfdSessDiscriminator from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessRemoteDiscr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessRemoteDiscr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessRemoteDiscr"
                  ]
                },
                "description": "Retrieve ciscoBfdSessRemoteDiscr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessUdpPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessUdpPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessUdpPort"
                  ]
                },
                "description": "Retrieve ciscoBfdSessUdpPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessState"
                  ]
                },
                "description": "Retrieve ciscoBfdSessState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessRemoteHeardFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessRemoteHeardFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessRemoteHeardFlag"
                  ]
                },
                "description": "Retrieve ciscoBfdSessRemoteHeardFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessDiag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessDiag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessDiag"
                  ]
                },
                "description": "Retrieve ciscoBfdSessDiag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessOperMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessOperMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessOperMode"
                  ]
                },
                "description": "Retrieve ciscoBfdSessOperMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessDemandModeDesiredFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessDemandModeDesiredFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessDemandModeDesiredFlag"
                  ]
                },
                "description": "Retrieve ciscoBfdSessDemandModeDesiredFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessEchoFuncModeDesiredFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessEchoFuncModeDesiredFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessEchoFuncModeDesiredFlag"
                  ]
                },
                "description": "Retrieve ciscoBfdSessEchoFuncModeDesiredFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessControlPlanIndepFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessControlPlanIndepFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessControlPlanIndepFlag"
                  ]
                },
                "description": "Retrieve ciscoBfdSessControlPlanIndepFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessAddrType"
                  ]
                },
                "description": "Retrieve ciscoBfdSessAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessAddr"
                  ]
                },
                "description": "Retrieve ciscoBfdSessAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessDesiredMinTxInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessDesiredMinTxInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessDesiredMinTxInterval"
                  ]
                },
                "description": "Retrieve ciscoBfdSessDesiredMinTxInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessReqMinRxInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessReqMinRxInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessReqMinRxInterval"
                  ]
                },
                "description": "Retrieve ciscoBfdSessReqMinRxInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessReqMinEchoRxInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessReqMinEchoRxInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessReqMinEchoRxInterval"
                  ]
                },
                "description": "Retrieve ciscoBfdSessReqMinEchoRxInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessDetectMult",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessDetectMult",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessDetectMult"
                  ]
                },
                "description": "Retrieve ciscoBfdSessDetectMult from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessStorType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessStorType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessStorType"
                  ]
                },
                "description": "Retrieve ciscoBfdSessStorType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessRowStatus"
                  ]
                },
                "description": "Retrieve ciscoBfdSessRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessAuthPresFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessAuthPresFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessAuthPresFlag"
                  ]
                },
                "description": "Retrieve ciscoBfdSessAuthPresFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessAuthenticationType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessAuthenticationType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessAuthenticationType"
                  ]
                },
                "description": "Retrieve ciscoBfdSessAuthenticationType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessVersionNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessVersionNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessVersionNumber"
                  ]
                },
                "description": "Retrieve ciscoBfdSessVersionNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessType"
                  ]
                },
                "description": "Retrieve ciscoBfdSessType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessInterface"
                  ]
                },
                "description": "Retrieve ciscoBfdSessInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessPerfPktIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessPerfPktIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessPerfPktIn"
                  ]
                },
                "description": "Retrieve ciscoBfdSessPerfPktIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessPerfPktOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessPerfPktOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessPerfPktOut"
                  ]
                },
                "description": "Retrieve ciscoBfdSessPerfPktOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessUpTime"
                  ]
                },
                "description": "Retrieve ciscoBfdSessUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessPerfLastSessDownTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessPerfLastSessDownTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessPerfLastSessDownTime"
                  ]
                },
                "description": "Retrieve ciscoBfdSessPerfLastSessDownTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessPerfLastCommLostDiag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessPerfLastCommLostDiag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessPerfLastCommLostDiag"
                  ]
                },
                "description": "Retrieve ciscoBfdSessPerfLastCommLostDiag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessPerfSessUpCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessPerfSessUpCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessPerfSessUpCount"
                  ]
                },
                "description": "Retrieve ciscoBfdSessPerfSessUpCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessPerfDiscTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessPerfDiscTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessPerfDiscTime"
                  ]
                },
                "description": "Retrieve ciscoBfdSessPerfDiscTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessPerfPktInHC",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessPerfPktInHC",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessPerfPktInHC"
                  ]
                },
                "description": "Retrieve ciscoBfdSessPerfPktInHC from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessPerfPktOutHC",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessTable/ciscoBfdSessEntry/ciscoBfdSessPerfPktOutHC",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessTable",
                    "ciscoBfdSessEntry",
                    "ciscoBfdSessPerfPktOutHC"
                  ]
                },
                "description": "Retrieve ciscoBfdSessPerfPktOutHC from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessMapTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessMapTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessMapTable"
                  ]
                },
                "description": "Retrieve ciscoBfdSessMapTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessMapEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessMapTable/ciscoBfdSessMapEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessMapTable",
                    "ciscoBfdSessMapEntry"
                  ]
                },
                "description": "Retrieve ciscoBfdSessMapEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessApplicationId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessMapTable/ciscoBfdSessMapEntry/ciscoBfdSessApplicationId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessMapTable",
                    "ciscoBfdSessMapEntry",
                    "ciscoBfdSessApplicationId"
                  ]
                },
                "description": "Retrieve ciscoBfdSessApplicationId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessDiscriminator",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessMapTable/ciscoBfdSessMapEntry/ciscoBfdSessDiscriminator",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessMapTable",
                    "ciscoBfdSessMapEntry",
                    "ciscoBfdSessDiscriminator"
                  ]
                },
                "description": "Retrieve ciscoBfdSessDiscriminator from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessMapTable/ciscoBfdSessMapEntry/ciscoBfdSessAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessMapTable",
                    "ciscoBfdSessMapEntry",
                    "ciscoBfdSessAddrType"
                  ]
                },
                "description": "Retrieve ciscoBfdSessAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessMapTable/ciscoBfdSessMapEntry/ciscoBfdSessAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessMapTable",
                    "ciscoBfdSessMapEntry",
                    "ciscoBfdSessAddr"
                  ]
                },
                "description": "Retrieve ciscoBfdSessAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessMapBfdIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessMapTable/ciscoBfdSessMapEntry/ciscoBfdSessMapBfdIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessMapTable",
                    "ciscoBfdSessMapEntry",
                    "ciscoBfdSessMapBfdIndex"
                  ]
                },
                "description": "Retrieve ciscoBfdSessMapBfdIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessDiscMapTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessDiscMapTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessDiscMapTable"
                  ]
                },
                "description": "Retrieve ciscoBfdSessDiscMapTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessDiscMapEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessDiscMapTable/ciscoBfdSessDiscMapEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessDiscMapTable",
                    "ciscoBfdSessDiscMapEntry"
                  ]
                },
                "description": "Retrieve ciscoBfdSessDiscMapEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessDiscriminator",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessDiscMapTable/ciscoBfdSessDiscMapEntry/ciscoBfdSessDiscriminator",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessDiscMapTable",
                    "ciscoBfdSessDiscMapEntry",
                    "ciscoBfdSessDiscriminator"
                  ]
                },
                "description": "Retrieve ciscoBfdSessDiscriminator from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessDiscMapIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessDiscMapTable/ciscoBfdSessDiscMapEntry/ciscoBfdSessDiscMapIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessDiscMapTable",
                    "ciscoBfdSessDiscMapEntry",
                    "ciscoBfdSessDiscMapIndex"
                  ]
                },
                "description": "Retrieve ciscoBfdSessDiscMapIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessIpMapTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessIpMapTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessIpMapTable"
                  ]
                },
                "description": "Retrieve ciscoBfdSessIpMapTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessIpMapEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessIpMapTable/ciscoBfdSessIpMapEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessIpMapTable",
                    "ciscoBfdSessIpMapEntry"
                  ]
                },
                "description": "Retrieve ciscoBfdSessIpMapEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessIpMapTable/ciscoBfdSessIpMapEntry/ciscoBfdSessInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessIpMapTable",
                    "ciscoBfdSessIpMapEntry",
                    "ciscoBfdSessInterface"
                  ]
                },
                "description": "Retrieve ciscoBfdSessInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessIpMapTable/ciscoBfdSessIpMapEntry/ciscoBfdSessAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessIpMapTable",
                    "ciscoBfdSessIpMapEntry",
                    "ciscoBfdSessAddrType"
                  ]
                },
                "description": "Retrieve ciscoBfdSessAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessIpMapTable/ciscoBfdSessIpMapEntry/ciscoBfdSessAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessIpMapTable",
                    "ciscoBfdSessIpMapEntry",
                    "ciscoBfdSessAddr"
                  ]
                },
                "description": "Retrieve ciscoBfdSessAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessIpMapIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessIpMapTable/ciscoBfdSessIpMapEntry/ciscoBfdSessIpMapIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessIpMapTable",
                    "ciscoBfdSessIpMapEntry",
                    "ciscoBfdSessIpMapIndex"
                  ]
                },
                "description": "Retrieve ciscoBfdSessIpMapIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessIpMapTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessIpMapTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessIpMapTable/object-1/ciscoBfdSessIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessIpMapTable",
                    "object-1",
                    "ciscoBfdSessIndex"
                  ]
                },
                "description": "Retrieve ciscoBfdSessIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessDiag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessIpMapTable/object-1/ciscoBfdSessDiag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessIpMapTable",
                    "object-1",
                    "ciscoBfdSessDiag"
                  ]
                },
                "description": "Retrieve ciscoBfdSessDiag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessIpMapTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessIpMapTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessIpMapTable/object-2/ciscoBfdSessIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessIpMapTable",
                    "object-2",
                    "ciscoBfdSessIndex"
                  ]
                },
                "description": "Retrieve ciscoBfdSessIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoBfdSessDiag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB/ciscoBfdSessIpMapTable/object-2/ciscoBfdSessDiag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-BFD-MIB:CISCO-IETF-BFD-MIB",
                    "ciscoBfdSessIpMapTable",
                    "object-2",
                    "ciscoBfdSessDiag"
                  ]
                },
                "description": "Retrieve ciscoBfdSessDiag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IETF-FRR-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IETF-FRR-MIB\n\nMIB data from `CISCO-IETF-FRR-MIB` module.\n\n**Root containers:** 1 (CISCO-IETF-FRR-MIB)\n**Paths:** 65 | **Descendants:** 79\n\nAll endpoints are read-only (GET).\n\nEndpoints: 65 | Operations: 65",
          "item": [
            {
              "name": "GET Get CISCO-IETF-FRR-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IETF-FRR-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrScalars",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrScalars",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrScalars"
                  ]
                },
                "description": "Retrieve cmplsFrrScalars from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrDetourIncoming",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrScalars/cmplsFrrDetourIncoming",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrScalars",
                    "cmplsFrrDetourIncoming"
                  ]
                },
                "description": "Retrieve cmplsFrrDetourIncoming from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrDetourOutgoing",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrScalars/cmplsFrrDetourOutgoing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrScalars",
                    "cmplsFrrDetourOutgoing"
                  ]
                },
                "description": "Retrieve cmplsFrrDetourOutgoing from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrDetourOriginating",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrScalars/cmplsFrrDetourOriginating",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrScalars",
                    "cmplsFrrDetourOriginating"
                  ]
                },
                "description": "Retrieve cmplsFrrDetourOriginating from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrSwitchover",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrScalars/cmplsFrrSwitchover",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrScalars",
                    "cmplsFrrSwitchover"
                  ]
                },
                "description": "Retrieve cmplsFrrSwitchover from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrNumOfConfIfs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrScalars/cmplsFrrNumOfConfIfs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrScalars",
                    "cmplsFrrNumOfConfIfs"
                  ]
                },
                "description": "Retrieve cmplsFrrNumOfConfIfs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrActProtectedIfs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrScalars/cmplsFrrActProtectedIfs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrScalars",
                    "cmplsFrrActProtectedIfs"
                  ]
                },
                "description": "Retrieve cmplsFrrActProtectedIfs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConfProtectingTuns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrScalars/cmplsFrrConfProtectingTuns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrScalars",
                    "cmplsFrrConfProtectingTuns"
                  ]
                },
                "description": "Retrieve cmplsFrrConfProtectingTuns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrActProtectedTuns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrScalars/cmplsFrrActProtectedTuns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrScalars",
                    "cmplsFrrActProtectedTuns"
                  ]
                },
                "description": "Retrieve cmplsFrrActProtectedTuns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrActProtectedLSPs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrScalars/cmplsFrrActProtectedLSPs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrScalars",
                    "cmplsFrrActProtectedLSPs"
                  ]
                },
                "description": "Retrieve cmplsFrrActProtectedLSPs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstProtectionMethod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrScalars/cmplsFrrConstProtectionMethod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrScalars",
                    "cmplsFrrConstProtectionMethod"
                  ]
                },
                "description": "Retrieve cmplsFrrConstProtectionMethod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrNotifsEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrScalars/cmplsFrrNotifsEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrScalars",
                    "cmplsFrrNotifsEnabled"
                  ]
                },
                "description": "Retrieve cmplsFrrNotifsEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrLogTableMaxEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrScalars/cmplsFrrLogTableMaxEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrScalars",
                    "cmplsFrrLogTableMaxEntries"
                  ]
                },
                "description": "Retrieve cmplsFrrLogTableMaxEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrLogTableCurrEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrScalars/cmplsFrrLogTableCurrEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrScalars",
                    "cmplsFrrLogTableCurrEntries"
                  ]
                },
                "description": "Retrieve cmplsFrrLogTableCurrEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrNotifMaxRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrScalars/cmplsFrrNotifMaxRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrScalars",
                    "cmplsFrrNotifMaxRate"
                  ]
                },
                "description": "Retrieve cmplsFrrNotifMaxRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrConstTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrConstTable"
                  ]
                },
                "description": "Retrieve cmplsFrrConstTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrConstTable/cmplsFrrConstEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrConstTable",
                    "cmplsFrrConstEntry"
                  ]
                },
                "description": "Retrieve cmplsFrrConstEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrConstTable/cmplsFrrConstEntry/cmplsFrrConstIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrConstTable",
                    "cmplsFrrConstEntry",
                    "cmplsFrrConstIfIndex"
                  ]
                },
                "description": "Retrieve cmplsFrrConstIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrConstTable/cmplsFrrConstEntry/cmplsFrrConstTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrConstTable",
                    "cmplsFrrConstEntry",
                    "cmplsFrrConstTunnelIndex"
                  ]
                },
                "description": "Retrieve cmplsFrrConstTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstTunnelInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrConstTable/cmplsFrrConstEntry/cmplsFrrConstTunnelInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrConstTable",
                    "cmplsFrrConstEntry",
                    "cmplsFrrConstTunnelInstance"
                  ]
                },
                "description": "Retrieve cmplsFrrConstTunnelInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstSetupPrio",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrConstTable/cmplsFrrConstEntry/cmplsFrrConstSetupPrio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrConstTable",
                    "cmplsFrrConstEntry",
                    "cmplsFrrConstSetupPrio"
                  ]
                },
                "description": "Retrieve cmplsFrrConstSetupPrio from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstHoldingPrio",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrConstTable/cmplsFrrConstEntry/cmplsFrrConstHoldingPrio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrConstTable",
                    "cmplsFrrConstEntry",
                    "cmplsFrrConstHoldingPrio"
                  ]
                },
                "description": "Retrieve cmplsFrrConstHoldingPrio from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstInclAnyAffinity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrConstTable/cmplsFrrConstEntry/cmplsFrrConstInclAnyAffinity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrConstTable",
                    "cmplsFrrConstEntry",
                    "cmplsFrrConstInclAnyAffinity"
                  ]
                },
                "description": "Retrieve cmplsFrrConstInclAnyAffinity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstInclAllAffinity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrConstTable/cmplsFrrConstEntry/cmplsFrrConstInclAllAffinity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrConstTable",
                    "cmplsFrrConstEntry",
                    "cmplsFrrConstInclAllAffinity"
                  ]
                },
                "description": "Retrieve cmplsFrrConstInclAllAffinity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstExclAllAffinity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrConstTable/cmplsFrrConstEntry/cmplsFrrConstExclAllAffinity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrConstTable",
                    "cmplsFrrConstEntry",
                    "cmplsFrrConstExclAllAffinity"
                  ]
                },
                "description": "Retrieve cmplsFrrConstExclAllAffinity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstHopLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrConstTable/cmplsFrrConstEntry/cmplsFrrConstHopLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrConstTable",
                    "cmplsFrrConstEntry",
                    "cmplsFrrConstHopLimit"
                  ]
                },
                "description": "Retrieve cmplsFrrConstHopLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstBandwidth",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrConstTable/cmplsFrrConstEntry/cmplsFrrConstBandwidth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrConstTable",
                    "cmplsFrrConstEntry",
                    "cmplsFrrConstBandwidth"
                  ]
                },
                "description": "Retrieve cmplsFrrConstBandwidth from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrConstTable/cmplsFrrConstEntry/cmplsFrrConstRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrConstTable",
                    "cmplsFrrConstEntry",
                    "cmplsFrrConstRowStatus"
                  ]
                },
                "description": "Retrieve cmplsFrrConstRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstNumProtectingTunOnIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrConstTable/cmplsFrrConstEntry/cmplsFrrConstNumProtectingTunOnIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrConstTable",
                    "cmplsFrrConstEntry",
                    "cmplsFrrConstNumProtectingTunOnIf"
                  ]
                },
                "description": "Retrieve cmplsFrrConstNumProtectingTunOnIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstNumProtectedTunOnIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrConstTable/cmplsFrrConstEntry/cmplsFrrConstNumProtectedTunOnIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrConstTable",
                    "cmplsFrrConstEntry",
                    "cmplsFrrConstNumProtectedTunOnIf"
                  ]
                },
                "description": "Retrieve cmplsFrrConstNumProtectedTunOnIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrLogTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrLogTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrLogTable"
                  ]
                },
                "description": "Retrieve cmplsFrrLogTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrLogEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrLogTable/cmplsFrrLogEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrLogTable",
                    "cmplsFrrLogEntry"
                  ]
                },
                "description": "Retrieve cmplsFrrLogEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrLogIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrLogTable/cmplsFrrLogEntry/cmplsFrrLogIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrLogTable",
                    "cmplsFrrLogEntry",
                    "cmplsFrrLogIndex"
                  ]
                },
                "description": "Retrieve cmplsFrrLogIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrLogEventTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrLogTable/cmplsFrrLogEntry/cmplsFrrLogEventTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrLogTable",
                    "cmplsFrrLogEntry",
                    "cmplsFrrLogEventTime"
                  ]
                },
                "description": "Retrieve cmplsFrrLogEventTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrLogInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrLogTable/cmplsFrrLogEntry/cmplsFrrLogInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrLogTable",
                    "cmplsFrrLogEntry",
                    "cmplsFrrLogInterface"
                  ]
                },
                "description": "Retrieve cmplsFrrLogInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrLogEventType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrLogTable/cmplsFrrLogEntry/cmplsFrrLogEventType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrLogTable",
                    "cmplsFrrLogEntry",
                    "cmplsFrrLogEventType"
                  ]
                },
                "description": "Retrieve cmplsFrrLogEventType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrLogEventDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrLogTable/cmplsFrrLogEntry/cmplsFrrLogEventDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrLogTable",
                    "cmplsFrrLogEntry",
                    "cmplsFrrLogEventDuration"
                  ]
                },
                "description": "Retrieve cmplsFrrLogEventDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrLogEventReasonString",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrLogTable/cmplsFrrLogEntry/cmplsFrrLogEventReasonString",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrLogTable",
                    "cmplsFrrLogEntry",
                    "cmplsFrrLogEventReasonString"
                  ]
                },
                "description": "Retrieve cmplsFrrLogEventReasonString from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrFacRouteDBTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable"
                  ]
                },
                "description": "Retrieve cmplsFrrFacRouteDBTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrFacRouteDBEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/cmplsFrrFacRouteDBEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "cmplsFrrFacRouteDBEntry"
                  ]
                },
                "description": "Retrieve cmplsFrrFacRouteDBEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrFacRouteProtectedIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/cmplsFrrFacRouteDBEntry/cmplsFrrFacRouteProtectedIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "cmplsFrrFacRouteDBEntry",
                    "cmplsFrrFacRouteProtectedIfIndex"
                  ]
                },
                "description": "Retrieve cmplsFrrFacRouteProtectedIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrFacRouteProtectingTunIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/cmplsFrrFacRouteDBEntry/cmplsFrrFacRouteProtectingTunIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "cmplsFrrFacRouteDBEntry",
                    "cmplsFrrFacRouteProtectingTunIndex"
                  ]
                },
                "description": "Retrieve cmplsFrrFacRouteProtectingTunIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrFacRouteProtectedTunIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/cmplsFrrFacRouteDBEntry/cmplsFrrFacRouteProtectedTunIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "cmplsFrrFacRouteDBEntry",
                    "cmplsFrrFacRouteProtectedTunIndex"
                  ]
                },
                "description": "Retrieve cmplsFrrFacRouteProtectedTunIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrFacRouteProtectedTunInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/cmplsFrrFacRouteDBEntry/cmplsFrrFacRouteProtectedTunInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "cmplsFrrFacRouteDBEntry",
                    "cmplsFrrFacRouteProtectedTunInstance"
                  ]
                },
                "description": "Retrieve cmplsFrrFacRouteProtectedTunInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrFacRouteProtectedTunIngressLSRId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/cmplsFrrFacRouteDBEntry/cmplsFrrFacRouteProtectedTunIngressLSRId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "cmplsFrrFacRouteDBEntry",
                    "cmplsFrrFacRouteProtectedTunIngressLSRId"
                  ]
                },
                "description": "Retrieve cmplsFrrFacRouteProtectedTunIngressLSRId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrFacRouteProtectedTunEgressLSRId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/cmplsFrrFacRouteDBEntry/cmplsFrrFacRouteProtectedTunEgressLSRId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "cmplsFrrFacRouteDBEntry",
                    "cmplsFrrFacRouteProtectedTunEgressLSRId"
                  ]
                },
                "description": "Retrieve cmplsFrrFacRouteProtectedTunEgressLSRId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrFacRouteProtectedTunStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/cmplsFrrFacRouteDBEntry/cmplsFrrFacRouteProtectedTunStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "cmplsFrrFacRouteDBEntry",
                    "cmplsFrrFacRouteProtectedTunStatus"
                  ]
                },
                "description": "Retrieve cmplsFrrFacRouteProtectedTunStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrFacRouteProtectingTunResvBw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/cmplsFrrFacRouteDBEntry/cmplsFrrFacRouteProtectingTunResvBw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "cmplsFrrFacRouteDBEntry",
                    "cmplsFrrFacRouteProtectingTunResvBw"
                  ]
                },
                "description": "Retrieve cmplsFrrFacRouteProtectingTunResvBw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrFacRouteProtectingTunProtectionType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/cmplsFrrFacRouteDBEntry/cmplsFrrFacRouteProtectingTunProtectionType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "cmplsFrrFacRouteDBEntry",
                    "cmplsFrrFacRouteProtectingTunProtectionType"
                  ]
                },
                "description": "Retrieve cmplsFrrFacRouteProtectingTunProtectionType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/object-1/cmplsFrrConstIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "object-1",
                    "cmplsFrrConstIfIndex"
                  ]
                },
                "description": "Retrieve cmplsFrrConstIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/object-1/cmplsFrrConstTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "object-1",
                    "cmplsFrrConstTunnelIndex"
                  ]
                },
                "description": "Retrieve cmplsFrrConstTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstTunnelInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/object-1/cmplsFrrConstTunnelInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "object-1",
                    "cmplsFrrConstTunnelInstance"
                  ]
                },
                "description": "Retrieve cmplsFrrConstTunnelInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstNumProtectingTunOnIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/object-1/cmplsFrrConstNumProtectingTunOnIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "object-1",
                    "cmplsFrrConstNumProtectingTunOnIf"
                  ]
                },
                "description": "Retrieve cmplsFrrConstNumProtectingTunOnIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/object-2/cmplsFrrConstIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "object-2",
                    "cmplsFrrConstIfIndex"
                  ]
                },
                "description": "Retrieve cmplsFrrConstIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/object-2/cmplsFrrConstTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "object-2",
                    "cmplsFrrConstTunnelIndex"
                  ]
                },
                "description": "Retrieve cmplsFrrConstTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstTunnelInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/object-2/cmplsFrrConstTunnelInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "object-2",
                    "cmplsFrrConstTunnelInstance"
                  ]
                },
                "description": "Retrieve cmplsFrrConstTunnelInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstNumProtectedTunOnIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/object-2/cmplsFrrConstNumProtectedTunOnIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "object-2",
                    "cmplsFrrConstNumProtectedTunOnIf"
                  ]
                },
                "description": "Retrieve cmplsFrrConstNumProtectedTunOnIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/object-3/cmplsFrrConstIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "object-3",
                    "cmplsFrrConstIfIndex"
                  ]
                },
                "description": "Retrieve cmplsFrrConstIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/object-3/cmplsFrrConstTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "object-3",
                    "cmplsFrrConstTunnelIndex"
                  ]
                },
                "description": "Retrieve cmplsFrrConstTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstTunnelInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/object-3/cmplsFrrConstTunnelInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "object-3",
                    "cmplsFrrConstTunnelInstance"
                  ]
                },
                "description": "Retrieve cmplsFrrConstTunnelInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsFrrConstBandwidth",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB/cmplsFrrFacRouteDBTable/object-3/cmplsFrrConstBandwidth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-FRR-MIB:CISCO-IETF-FRR-MIB",
                    "cmplsFrrFacRouteDBTable",
                    "object-3",
                    "cmplsFrrConstBandwidth"
                  ]
                },
                "description": "Retrieve cmplsFrrConstBandwidth from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IETF-ISIS-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IETF-ISIS-MIB\n\nMIB data from `CISCO-IETF-ISIS-MIB` module.\n\n**Root containers:** 1 (CISCO-IETF-ISIS-MIB)\n**Paths:** 245 | **Descendants:** 345\n\nAll endpoints are read-only (GET).\n\nEndpoints: 245 | Operations: 245",
          "item": [
            {
              "name": "GET Get CISCO-IETF-ISIS-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IETF-ISIS-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysObject",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysObject",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysObject"
                  ]
                },
                "description": "Retrieve ciiSysObject from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysObject/ciiSysVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysObject",
                    "ciiSysVersion"
                  ]
                },
                "description": "Retrieve ciiSysVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysObject/ciiSysType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysObject",
                    "ciiSysType"
                  ]
                },
                "description": "Retrieve ciiSysType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysObject/ciiSysID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysObject",
                    "ciiSysID"
                  ]
                },
                "description": "Retrieve ciiSysID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysMaxPathSplits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysObject/ciiSysMaxPathSplits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysObject",
                    "ciiSysMaxPathSplits"
                  ]
                },
                "description": "Retrieve ciiSysMaxPathSplits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysMaxLSPGenInt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysObject/ciiSysMaxLSPGenInt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysObject",
                    "ciiSysMaxLSPGenInt"
                  ]
                },
                "description": "Retrieve ciiSysMaxLSPGenInt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysPollESHelloRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysObject/ciiSysPollESHelloRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysObject",
                    "ciiSysPollESHelloRate"
                  ]
                },
                "description": "Retrieve ciiSysPollESHelloRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysWaitTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysObject/ciiSysWaitTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysObject",
                    "ciiSysWaitTime"
                  ]
                },
                "description": "Retrieve ciiSysWaitTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysAdminState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysObject/ciiSysAdminState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysObject",
                    "ciiSysAdminState"
                  ]
                },
                "description": "Retrieve ciiSysAdminState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysL2toL1Leaking",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysObject/ciiSysL2toL1Leaking",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysObject",
                    "ciiSysL2toL1Leaking"
                  ]
                },
                "description": "Retrieve ciiSysL2toL1Leaking from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysMaxAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysObject/ciiSysMaxAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysObject",
                    "ciiSysMaxAge"
                  ]
                },
                "description": "Retrieve ciiSysMaxAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysReceiveLSPBufferSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysObject/ciiSysReceiveLSPBufferSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysObject",
                    "ciiSysReceiveLSPBufferSize"
                  ]
                },
                "description": "Retrieve ciiSysReceiveLSPBufferSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCirc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCirc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCirc"
                  ]
                },
                "description": "Retrieve ciiCirc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiNextCircIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCirc/ciiNextCircIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCirc",
                    "ciiNextCircIndex"
                  ]
                },
                "description": "Retrieve ciiNextCircIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiManAreaAddrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiManAreaAddrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiManAreaAddrTable"
                  ]
                },
                "description": "Retrieve ciiManAreaAddrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiManAreaAddrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiManAreaAddrTable/ciiManAreaAddrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiManAreaAddrTable",
                    "ciiManAreaAddrEntry"
                  ]
                },
                "description": "Retrieve ciiManAreaAddrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiManAreaAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiManAreaAddrTable/ciiManAreaAddrEntry/ciiManAreaAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiManAreaAddrTable",
                    "ciiManAreaAddrEntry",
                    "ciiManAreaAddr"
                  ]
                },
                "description": "Retrieve ciiManAreaAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiManAreaAddrExistState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiManAreaAddrTable/ciiManAreaAddrEntry/ciiManAreaAddrExistState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiManAreaAddrTable",
                    "ciiManAreaAddrEntry",
                    "ciiManAreaAddrExistState"
                  ]
                },
                "description": "Retrieve ciiManAreaAddrExistState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiAreaAddrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiAreaAddrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiAreaAddrTable"
                  ]
                },
                "description": "Retrieve ciiAreaAddrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiAreaAddrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiAreaAddrTable/ciiAreaAddrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiAreaAddrTable",
                    "ciiAreaAddrEntry"
                  ]
                },
                "description": "Retrieve ciiAreaAddrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiAreaAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiAreaAddrTable/ciiAreaAddrEntry/ciiAreaAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiAreaAddrTable",
                    "ciiAreaAddrEntry",
                    "ciiAreaAddr"
                  ]
                },
                "description": "Retrieve ciiAreaAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysProtSuppTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysProtSuppTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysProtSuppTable"
                  ]
                },
                "description": "Retrieve ciiSysProtSuppTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysProtSuppEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysProtSuppTable/ciiSysProtSuppEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysProtSuppTable",
                    "ciiSysProtSuppEntry"
                  ]
                },
                "description": "Retrieve ciiSysProtSuppEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysProtSuppProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysProtSuppTable/ciiSysProtSuppEntry/ciiSysProtSuppProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysProtSuppTable",
                    "ciiSysProtSuppEntry",
                    "ciiSysProtSuppProtocol"
                  ]
                },
                "description": "Retrieve ciiSysProtSuppProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysProtSuppExistState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysProtSuppTable/ciiSysProtSuppEntry/ciiSysProtSuppExistState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysProtSuppTable",
                    "ciiSysProtSuppEntry",
                    "ciiSysProtSuppExistState"
                  ]
                },
                "description": "Retrieve ciiSysProtSuppExistState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSummAddrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSummAddrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSummAddrTable"
                  ]
                },
                "description": "Retrieve ciiSummAddrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSummAddrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSummAddrTable/ciiSummAddrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSummAddrTable",
                    "ciiSummAddrEntry"
                  ]
                },
                "description": "Retrieve ciiSummAddrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSummAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSummAddrTable/ciiSummAddrEntry/ciiSummAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSummAddrTable",
                    "ciiSummAddrEntry",
                    "ciiSummAddressType"
                  ]
                },
                "description": "Retrieve ciiSummAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSummAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSummAddrTable/ciiSummAddrEntry/ciiSummAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSummAddrTable",
                    "ciiSummAddrEntry",
                    "ciiSummAddress"
                  ]
                },
                "description": "Retrieve ciiSummAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSummAddrPrefixLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSummAddrTable/ciiSummAddrEntry/ciiSummAddrPrefixLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSummAddrTable",
                    "ciiSummAddrEntry",
                    "ciiSummAddrPrefixLen"
                  ]
                },
                "description": "Retrieve ciiSummAddrPrefixLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSummAddrExistState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSummAddrTable/ciiSummAddrEntry/ciiSummAddrExistState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSummAddrTable",
                    "ciiSummAddrEntry",
                    "ciiSummAddrExistState"
                  ]
                },
                "description": "Retrieve ciiSummAddrExistState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSummAddrMetric",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSummAddrTable/ciiSummAddrEntry/ciiSummAddrMetric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSummAddrTable",
                    "ciiSummAddrEntry",
                    "ciiSummAddrMetric"
                  ]
                },
                "description": "Retrieve ciiSummAddrMetric from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSummAddrFullMetric",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSummAddrTable/ciiSummAddrEntry/ciiSummAddrFullMetric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSummAddrTable",
                    "ciiSummAddrEntry",
                    "ciiSummAddrFullMetric"
                  ]
                },
                "description": "Retrieve ciiSummAddrFullMetric from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRedistributeAddrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRedistributeAddrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRedistributeAddrTable"
                  ]
                },
                "description": "Retrieve ciiRedistributeAddrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRedistributeAddrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRedistributeAddrTable/ciiRedistributeAddrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRedistributeAddrTable",
                    "ciiRedistributeAddrEntry"
                  ]
                },
                "description": "Retrieve ciiRedistributeAddrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRedistributeAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRedistributeAddrTable/ciiRedistributeAddrEntry/ciiRedistributeAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRedistributeAddrTable",
                    "ciiRedistributeAddrEntry",
                    "ciiRedistributeAddrType"
                  ]
                },
                "description": "Retrieve ciiRedistributeAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRedistributeAddrAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRedistributeAddrTable/ciiRedistributeAddrEntry/ciiRedistributeAddrAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRedistributeAddrTable",
                    "ciiRedistributeAddrEntry",
                    "ciiRedistributeAddrAddress"
                  ]
                },
                "description": "Retrieve ciiRedistributeAddrAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRedistributeAddrPrefixLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRedistributeAddrTable/ciiRedistributeAddrEntry/ciiRedistributeAddrPrefixLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRedistributeAddrTable",
                    "ciiRedistributeAddrEntry",
                    "ciiRedistributeAddrPrefixLen"
                  ]
                },
                "description": "Retrieve ciiRedistributeAddrPrefixLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRedistributeAddrExistState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRedistributeAddrTable/ciiRedistributeAddrEntry/ciiRedistributeAddrExistState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRedistributeAddrTable",
                    "ciiRedistributeAddrEntry",
                    "ciiRedistributeAddrExistState"
                  ]
                },
                "description": "Retrieve ciiRedistributeAddrExistState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRouterTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRouterTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRouterTable"
                  ]
                },
                "description": "Retrieve ciiRouterTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRouterEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRouterTable/ciiRouterEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRouterTable",
                    "ciiRouterEntry"
                  ]
                },
                "description": "Retrieve ciiRouterEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRouterSysID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRouterTable/ciiRouterEntry/ciiRouterSysID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRouterTable",
                    "ciiRouterEntry",
                    "ciiRouterSysID"
                  ]
                },
                "description": "Retrieve ciiRouterSysID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRouterLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRouterTable/ciiRouterEntry/ciiRouterLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRouterTable",
                    "ciiRouterEntry",
                    "ciiRouterLevel"
                  ]
                },
                "description": "Retrieve ciiRouterLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRouterHostName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRouterTable/ciiRouterEntry/ciiRouterHostName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRouterTable",
                    "ciiRouterEntry",
                    "ciiRouterHostName"
                  ]
                },
                "description": "Retrieve ciiRouterHostName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRouterID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRouterTable/ciiRouterEntry/ciiRouterID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRouterTable",
                    "ciiRouterEntry",
                    "ciiRouterID"
                  ]
                },
                "description": "Retrieve ciiRouterID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysLevelTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysLevelTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysLevelTable"
                  ]
                },
                "description": "Retrieve ciiSysLevelTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysLevelEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysLevelTable/ciiSysLevelEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysLevelTable",
                    "ciiSysLevelEntry"
                  ]
                },
                "description": "Retrieve ciiSysLevelEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysLevelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysLevelTable/ciiSysLevelEntry/ciiSysLevelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysLevelTable",
                    "ciiSysLevelEntry",
                    "ciiSysLevelIndex"
                  ]
                },
                "description": "Retrieve ciiSysLevelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysLevelOrigLSPBuffSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysLevelTable/ciiSysLevelEntry/ciiSysLevelOrigLSPBuffSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysLevelTable",
                    "ciiSysLevelEntry",
                    "ciiSysLevelOrigLSPBuffSize"
                  ]
                },
                "description": "Retrieve ciiSysLevelOrigLSPBuffSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysLevelMinLSPGenInt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysLevelTable/ciiSysLevelEntry/ciiSysLevelMinLSPGenInt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysLevelTable",
                    "ciiSysLevelEntry",
                    "ciiSysLevelMinLSPGenInt"
                  ]
                },
                "description": "Retrieve ciiSysLevelMinLSPGenInt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysLevelOverloadState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysLevelTable/ciiSysLevelEntry/ciiSysLevelOverloadState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysLevelTable",
                    "ciiSysLevelEntry",
                    "ciiSysLevelOverloadState"
                  ]
                },
                "description": "Retrieve ciiSysLevelOverloadState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysLevelSetOverload",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysLevelTable/ciiSysLevelEntry/ciiSysLevelSetOverload",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysLevelTable",
                    "ciiSysLevelEntry",
                    "ciiSysLevelSetOverload"
                  ]
                },
                "description": "Retrieve ciiSysLevelSetOverload from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysLevelSetOverloadUntil",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysLevelTable/ciiSysLevelEntry/ciiSysLevelSetOverloadUntil",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysLevelTable",
                    "ciiSysLevelEntry",
                    "ciiSysLevelSetOverloadUntil"
                  ]
                },
                "description": "Retrieve ciiSysLevelSetOverloadUntil from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysLevelMetricStyle",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysLevelTable/ciiSysLevelEntry/ciiSysLevelMetricStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysLevelTable",
                    "ciiSysLevelEntry",
                    "ciiSysLevelMetricStyle"
                  ]
                },
                "description": "Retrieve ciiSysLevelMetricStyle from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysLevelSPFConsiders",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysLevelTable/ciiSysLevelEntry/ciiSysLevelSPFConsiders",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysLevelTable",
                    "ciiSysLevelEntry",
                    "ciiSysLevelSPFConsiders"
                  ]
                },
                "description": "Retrieve ciiSysLevelSPFConsiders from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysLevelTEEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSysLevelTable/ciiSysLevelEntry/ciiSysLevelTEEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSysLevelTable",
                    "ciiSysLevelEntry",
                    "ciiSysLevelTEEnabled"
                  ]
                },
                "description": "Retrieve ciiSysLevelTEEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable"
                  ]
                },
                "description": "Retrieve ciiCircTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable/ciiCircEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable",
                    "ciiCircEntry"
                  ]
                },
                "description": "Retrieve ciiCircEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable/ciiCircEntry/ciiCircIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable",
                    "ciiCircEntry",
                    "ciiCircIndex"
                  ]
                },
                "description": "Retrieve ciiCircIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable/ciiCircEntry/ciiCircIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable",
                    "ciiCircEntry",
                    "ciiCircIfIndex"
                  ]
                },
                "description": "Retrieve ciiCircIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIfSubIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable/ciiCircEntry/ciiCircIfSubIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable",
                    "ciiCircEntry",
                    "ciiCircIfSubIndex"
                  ]
                },
                "description": "Retrieve ciiCircIfSubIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircAdminState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable/ciiCircEntry/ciiCircAdminState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable",
                    "ciiCircEntry",
                    "ciiCircAdminState"
                  ]
                },
                "description": "Retrieve ciiCircAdminState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircExistState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable/ciiCircEntry/ciiCircExistState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable",
                    "ciiCircEntry",
                    "ciiCircExistState"
                  ]
                },
                "description": "Retrieve ciiCircExistState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable/ciiCircEntry/ciiCircType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable",
                    "ciiCircEntry",
                    "ciiCircType"
                  ]
                },
                "description": "Retrieve ciiCircType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircExtDomain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable/ciiCircEntry/ciiCircExtDomain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable",
                    "ciiCircEntry",
                    "ciiCircExtDomain"
                  ]
                },
                "description": "Retrieve ciiCircExtDomain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable/ciiCircEntry/ciiCircLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable",
                    "ciiCircEntry",
                    "ciiCircLevel"
                  ]
                },
                "description": "Retrieve ciiCircLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircPassiveCircuit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable/ciiCircEntry/ciiCircPassiveCircuit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable",
                    "ciiCircEntry",
                    "ciiCircPassiveCircuit"
                  ]
                },
                "description": "Retrieve ciiCircPassiveCircuit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircMeshGroupEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable/ciiCircEntry/ciiCircMeshGroupEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable",
                    "ciiCircEntry",
                    "ciiCircMeshGroupEnabled"
                  ]
                },
                "description": "Retrieve ciiCircMeshGroupEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircMeshGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable/ciiCircEntry/ciiCircMeshGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable",
                    "ciiCircEntry",
                    "ciiCircMeshGroup"
                  ]
                },
                "description": "Retrieve ciiCircMeshGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircSmallHellos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable/ciiCircEntry/ciiCircSmallHellos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable",
                    "ciiCircEntry",
                    "ciiCircSmallHellos"
                  ]
                },
                "description": "Retrieve ciiCircSmallHellos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLastUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable/ciiCircEntry/ciiCircLastUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable",
                    "ciiCircEntry",
                    "ciiCircLastUpTime"
                  ]
                },
                "description": "Retrieve ciiCircLastUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCirc3WayEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable/ciiCircEntry/ciiCirc3WayEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable",
                    "ciiCircEntry",
                    "ciiCirc3WayEnabled"
                  ]
                },
                "description": "Retrieve ciiCirc3WayEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircExtendedCircID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircTable/ciiCircEntry/ciiCircExtendedCircID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircTable",
                    "ciiCircEntry",
                    "ciiCircExtendedCircID"
                  ]
                },
                "description": "Retrieve ciiCircExtendedCircID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevelTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable"
                  ]
                },
                "description": "Retrieve ciiCircLevelTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevelEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable/ciiCircLevelEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable",
                    "ciiCircLevelEntry"
                  ]
                },
                "description": "Retrieve ciiCircLevelEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable/ciiCircLevelEntry/ciiCircIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable",
                    "ciiCircLevelEntry",
                    "ciiCircIndex"
                  ]
                },
                "description": "Retrieve ciiCircIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable/ciiCircLevelEntry/ciiCircLevelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable",
                    "ciiCircLevelEntry",
                    "ciiCircLevelIndex"
                  ]
                },
                "description": "Retrieve ciiCircLevelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevelMetric",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable/ciiCircLevelEntry/ciiCircLevelMetric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable",
                    "ciiCircLevelEntry",
                    "ciiCircLevelMetric"
                  ]
                },
                "description": "Retrieve ciiCircLevelMetric from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevelWideMetric",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable/ciiCircLevelEntry/ciiCircLevelWideMetric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable",
                    "ciiCircLevelEntry",
                    "ciiCircLevelWideMetric"
                  ]
                },
                "description": "Retrieve ciiCircLevelWideMetric from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevelISPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable/ciiCircLevelEntry/ciiCircLevelISPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable",
                    "ciiCircLevelEntry",
                    "ciiCircLevelISPriority"
                  ]
                },
                "description": "Retrieve ciiCircLevelISPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevelIDOctet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable/ciiCircLevelEntry/ciiCircLevelIDOctet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable",
                    "ciiCircLevelEntry",
                    "ciiCircLevelIDOctet"
                  ]
                },
                "description": "Retrieve ciiCircLevelIDOctet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevelID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable/ciiCircLevelEntry/ciiCircLevelID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable",
                    "ciiCircLevelEntry",
                    "ciiCircLevelID"
                  ]
                },
                "description": "Retrieve ciiCircLevelID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevelDesIS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable/ciiCircLevelEntry/ciiCircLevelDesIS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable",
                    "ciiCircLevelEntry",
                    "ciiCircLevelDesIS"
                  ]
                },
                "description": "Retrieve ciiCircLevelDesIS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevelHelloMultiplier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable/ciiCircLevelEntry/ciiCircLevelHelloMultiplier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable",
                    "ciiCircLevelEntry",
                    "ciiCircLevelHelloMultiplier"
                  ]
                },
                "description": "Retrieve ciiCircLevelHelloMultiplier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevelHelloTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable/ciiCircLevelEntry/ciiCircLevelHelloTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable",
                    "ciiCircLevelEntry",
                    "ciiCircLevelHelloTimer"
                  ]
                },
                "description": "Retrieve ciiCircLevelHelloTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevelDRHelloTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable/ciiCircLevelEntry/ciiCircLevelDRHelloTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable",
                    "ciiCircLevelEntry",
                    "ciiCircLevelDRHelloTimer"
                  ]
                },
                "description": "Retrieve ciiCircLevelDRHelloTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevelLSPThrottle",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable/ciiCircLevelEntry/ciiCircLevelLSPThrottle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable",
                    "ciiCircLevelEntry",
                    "ciiCircLevelLSPThrottle"
                  ]
                },
                "description": "Retrieve ciiCircLevelLSPThrottle from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevelMinLSPRetransInt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable/ciiCircLevelEntry/ciiCircLevelMinLSPRetransInt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable",
                    "ciiCircLevelEntry",
                    "ciiCircLevelMinLSPRetransInt"
                  ]
                },
                "description": "Retrieve ciiCircLevelMinLSPRetransInt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevelCSNPInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable/ciiCircLevelEntry/ciiCircLevelCSNPInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable",
                    "ciiCircLevelEntry",
                    "ciiCircLevelCSNPInterval"
                  ]
                },
                "description": "Retrieve ciiCircLevelCSNPInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLevelPartSNPInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircLevelTable/ciiCircLevelEntry/ciiCircLevelPartSNPInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircLevelTable",
                    "ciiCircLevelEntry",
                    "ciiCircLevelPartSNPInterval"
                  ]
                },
                "description": "Retrieve ciiCircLevelPartSNPInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSystemCounterTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSystemCounterTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSystemCounterTable"
                  ]
                },
                "description": "Retrieve ciiSystemCounterTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSystemCounterEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSystemCounterTable/ciiSystemCounterEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSystemCounterTable",
                    "ciiSystemCounterEntry"
                  ]
                },
                "description": "Retrieve ciiSystemCounterEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysStatLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSystemCounterTable/ciiSystemCounterEntry/ciiSysStatLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSystemCounterTable",
                    "ciiSystemCounterEntry",
                    "ciiSysStatLevel"
                  ]
                },
                "description": "Retrieve ciiSysStatLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysStatCorrLSPs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSystemCounterTable/ciiSystemCounterEntry/ciiSysStatCorrLSPs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSystemCounterTable",
                    "ciiSystemCounterEntry",
                    "ciiSysStatCorrLSPs"
                  ]
                },
                "description": "Retrieve ciiSysStatCorrLSPs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysStatAuthTypeFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSystemCounterTable/ciiSystemCounterEntry/ciiSysStatAuthTypeFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSystemCounterTable",
                    "ciiSystemCounterEntry",
                    "ciiSysStatAuthTypeFails"
                  ]
                },
                "description": "Retrieve ciiSysStatAuthTypeFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysStatAuthFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSystemCounterTable/ciiSystemCounterEntry/ciiSysStatAuthFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSystemCounterTable",
                    "ciiSystemCounterEntry",
                    "ciiSysStatAuthFails"
                  ]
                },
                "description": "Retrieve ciiSysStatAuthFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysStatLSPDbaseOloads",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSystemCounterTable/ciiSystemCounterEntry/ciiSysStatLSPDbaseOloads",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSystemCounterTable",
                    "ciiSystemCounterEntry",
                    "ciiSysStatLSPDbaseOloads"
                  ]
                },
                "description": "Retrieve ciiSysStatLSPDbaseOloads from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysStatManAddrDropFromAreas",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSystemCounterTable/ciiSystemCounterEntry/ciiSysStatManAddrDropFromAreas",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSystemCounterTable",
                    "ciiSystemCounterEntry",
                    "ciiSysStatManAddrDropFromAreas"
                  ]
                },
                "description": "Retrieve ciiSysStatManAddrDropFromAreas from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysStatAttmptToExMaxSeqNums",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSystemCounterTable/ciiSystemCounterEntry/ciiSysStatAttmptToExMaxSeqNums",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSystemCounterTable",
                    "ciiSystemCounterEntry",
                    "ciiSysStatAttmptToExMaxSeqNums"
                  ]
                },
                "description": "Retrieve ciiSysStatAttmptToExMaxSeqNums from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysStatSeqNumSkips",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSystemCounterTable/ciiSystemCounterEntry/ciiSysStatSeqNumSkips",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSystemCounterTable",
                    "ciiSystemCounterEntry",
                    "ciiSysStatSeqNumSkips"
                  ]
                },
                "description": "Retrieve ciiSysStatSeqNumSkips from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysStatOwnLSPPurges",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSystemCounterTable/ciiSystemCounterEntry/ciiSysStatOwnLSPPurges",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSystemCounterTable",
                    "ciiSystemCounterEntry",
                    "ciiSysStatOwnLSPPurges"
                  ]
                },
                "description": "Retrieve ciiSysStatOwnLSPPurges from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysStatIDFieldLenMismatches",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSystemCounterTable/ciiSystemCounterEntry/ciiSysStatIDFieldLenMismatches",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSystemCounterTable",
                    "ciiSystemCounterEntry",
                    "ciiSysStatIDFieldLenMismatches"
                  ]
                },
                "description": "Retrieve ciiSysStatIDFieldLenMismatches from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysStatPartChanges",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSystemCounterTable/ciiSystemCounterEntry/ciiSysStatPartChanges",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSystemCounterTable",
                    "ciiSystemCounterEntry",
                    "ciiSysStatPartChanges"
                  ]
                },
                "description": "Retrieve ciiSysStatPartChanges from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysStatSPFRuns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSystemCounterTable/ciiSystemCounterEntry/ciiSysStatSPFRuns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSystemCounterTable",
                    "ciiSystemCounterEntry",
                    "ciiSysStatSPFRuns"
                  ]
                },
                "description": "Retrieve ciiSysStatSPFRuns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysStatLSPErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiSystemCounterTable/ciiSystemCounterEntry/ciiSysStatLSPErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiSystemCounterTable",
                    "ciiSystemCounterEntry",
                    "ciiSysStatLSPErrors"
                  ]
                },
                "description": "Retrieve ciiSysStatLSPErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircuitCounterTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircuitCounterTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircuitCounterTable"
                  ]
                },
                "description": "Retrieve ciiCircuitCounterTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircuitCounterEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircuitCounterTable/ciiCircuitCounterEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircuitCounterTable",
                    "ciiCircuitCounterEntry"
                  ]
                },
                "description": "Retrieve ciiCircuitCounterEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircuitCounterTable/ciiCircuitCounterEntry/ciiCircIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircuitCounterTable",
                    "ciiCircuitCounterEntry",
                    "ciiCircIndex"
                  ]
                },
                "description": "Retrieve ciiCircIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircuitType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircuitCounterTable/ciiCircuitCounterEntry/ciiCircuitType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircuitCounterTable",
                    "ciiCircuitCounterEntry",
                    "ciiCircuitType"
                  ]
                },
                "description": "Retrieve ciiCircuitType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircAdjChanges",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircuitCounterTable/ciiCircuitCounterEntry/ciiCircAdjChanges",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircuitCounterTable",
                    "ciiCircuitCounterEntry",
                    "ciiCircAdjChanges"
                  ]
                },
                "description": "Retrieve ciiCircAdjChanges from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircNumAdj",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircuitCounterTable/ciiCircuitCounterEntry/ciiCircNumAdj",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircuitCounterTable",
                    "ciiCircuitCounterEntry",
                    "ciiCircNumAdj"
                  ]
                },
                "description": "Retrieve ciiCircNumAdj from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircInitFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircuitCounterTable/ciiCircuitCounterEntry/ciiCircInitFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircuitCounterTable",
                    "ciiCircuitCounterEntry",
                    "ciiCircInitFails"
                  ]
                },
                "description": "Retrieve ciiCircInitFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircRejAdjs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircuitCounterTable/ciiCircuitCounterEntry/ciiCircRejAdjs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircuitCounterTable",
                    "ciiCircuitCounterEntry",
                    "ciiCircRejAdjs"
                  ]
                },
                "description": "Retrieve ciiCircRejAdjs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIDFieldLenMismatches",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircuitCounterTable/ciiCircuitCounterEntry/ciiCircIDFieldLenMismatches",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircuitCounterTable",
                    "ciiCircuitCounterEntry",
                    "ciiCircIDFieldLenMismatches"
                  ]
                },
                "description": "Retrieve ciiCircIDFieldLenMismatches from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircMaxAreaAddrMismatches",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircuitCounterTable/ciiCircuitCounterEntry/ciiCircMaxAreaAddrMismatches",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircuitCounterTable",
                    "ciiCircuitCounterEntry",
                    "ciiCircMaxAreaAddrMismatches"
                  ]
                },
                "description": "Retrieve ciiCircMaxAreaAddrMismatches from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircAuthTypeFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircuitCounterTable/ciiCircuitCounterEntry/ciiCircAuthTypeFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircuitCounterTable",
                    "ciiCircuitCounterEntry",
                    "ciiCircAuthTypeFails"
                  ]
                },
                "description": "Retrieve ciiCircAuthTypeFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircAuthFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircuitCounterTable/ciiCircuitCounterEntry/ciiCircAuthFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircuitCounterTable",
                    "ciiCircuitCounterEntry",
                    "ciiCircAuthFails"
                  ]
                },
                "description": "Retrieve ciiCircAuthFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircLANDesISChanges",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiCircuitCounterTable/ciiCircuitCounterEntry/ciiCircLANDesISChanges",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiCircuitCounterTable",
                    "ciiCircuitCounterEntry",
                    "ciiCircLANDesISChanges"
                  ]
                },
                "description": "Retrieve ciiCircLANDesISChanges from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPacketCounterTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiPacketCounterTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiPacketCounterTable"
                  ]
                },
                "description": "Retrieve ciiPacketCounterTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPacketCounterEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiPacketCounterTable/ciiPacketCounterEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiPacketCounterTable",
                    "ciiPacketCounterEntry"
                  ]
                },
                "description": "Retrieve ciiPacketCounterEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiPacketCounterTable/ciiPacketCounterEntry/ciiCircIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiPacketCounterTable",
                    "ciiPacketCounterEntry",
                    "ciiCircIndex"
                  ]
                },
                "description": "Retrieve ciiCircIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPacketCountLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiPacketCounterTable/ciiPacketCounterEntry/ciiPacketCountLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiPacketCounterTable",
                    "ciiPacketCounterEntry",
                    "ciiPacketCountLevel"
                  ]
                },
                "description": "Retrieve ciiPacketCountLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPacketCountDirection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiPacketCounterTable/ciiPacketCounterEntry/ciiPacketCountDirection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiPacketCounterTable",
                    "ciiPacketCounterEntry",
                    "ciiPacketCountDirection"
                  ]
                },
                "description": "Retrieve ciiPacketCountDirection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPacketCountIIHellos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiPacketCounterTable/ciiPacketCounterEntry/ciiPacketCountIIHellos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiPacketCounterTable",
                    "ciiPacketCounterEntry",
                    "ciiPacketCountIIHellos"
                  ]
                },
                "description": "Retrieve ciiPacketCountIIHellos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPacketCountISHellos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiPacketCounterTable/ciiPacketCounterEntry/ciiPacketCountISHellos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiPacketCounterTable",
                    "ciiPacketCounterEntry",
                    "ciiPacketCountISHellos"
                  ]
                },
                "description": "Retrieve ciiPacketCountISHellos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPacketCountESHellos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiPacketCounterTable/ciiPacketCounterEntry/ciiPacketCountESHellos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiPacketCounterTable",
                    "ciiPacketCounterEntry",
                    "ciiPacketCountESHellos"
                  ]
                },
                "description": "Retrieve ciiPacketCountESHellos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPacketCountLSPs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiPacketCounterTable/ciiPacketCounterEntry/ciiPacketCountLSPs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiPacketCounterTable",
                    "ciiPacketCounterEntry",
                    "ciiPacketCountLSPs"
                  ]
                },
                "description": "Retrieve ciiPacketCountLSPs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPacketCountCSNPs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiPacketCounterTable/ciiPacketCounterEntry/ciiPacketCountCSNPs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiPacketCounterTable",
                    "ciiPacketCounterEntry",
                    "ciiPacketCountCSNPs"
                  ]
                },
                "description": "Retrieve ciiPacketCountCSNPs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPacketCountPSNPs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiPacketCounterTable/ciiPacketCounterEntry/ciiPacketCountPSNPs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiPacketCounterTable",
                    "ciiPacketCounterEntry",
                    "ciiPacketCountPSNPs"
                  ]
                },
                "description": "Retrieve ciiPacketCountPSNPs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPacketCountUnknowns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiPacketCounterTable/ciiPacketCounterEntry/ciiPacketCountUnknowns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiPacketCounterTable",
                    "ciiPacketCounterEntry",
                    "ciiPacketCountUnknowns"
                  ]
                },
                "description": "Retrieve ciiPacketCountUnknowns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjTable"
                  ]
                },
                "description": "Retrieve ciiISAdjTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjTable/ciiISAdjEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjTable",
                    "ciiISAdjEntry"
                  ]
                },
                "description": "Retrieve ciiISAdjEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjTable/ciiISAdjEntry/ciiCircIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjTable",
                    "ciiISAdjEntry",
                    "ciiCircIndex"
                  ]
                },
                "description": "Retrieve ciiCircIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjTable/ciiISAdjEntry/ciiISAdjIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjTable",
                    "ciiISAdjEntry",
                    "ciiISAdjIndex"
                  ]
                },
                "description": "Retrieve ciiISAdjIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjTable/ciiISAdjEntry/ciiISAdjState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjTable",
                    "ciiISAdjEntry",
                    "ciiISAdjState"
                  ]
                },
                "description": "Retrieve ciiISAdjState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdj3WayState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjTable/ciiISAdjEntry/ciiISAdj3WayState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjTable",
                    "ciiISAdjEntry",
                    "ciiISAdj3WayState"
                  ]
                },
                "description": "Retrieve ciiISAdj3WayState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjNeighSNPAAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjTable/ciiISAdjEntry/ciiISAdjNeighSNPAAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjTable",
                    "ciiISAdjEntry",
                    "ciiISAdjNeighSNPAAddress"
                  ]
                },
                "description": "Retrieve ciiISAdjNeighSNPAAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjNeighSysType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjTable/ciiISAdjEntry/ciiISAdjNeighSysType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjTable",
                    "ciiISAdjEntry",
                    "ciiISAdjNeighSysType"
                  ]
                },
                "description": "Retrieve ciiISAdjNeighSysType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjNeighSysID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjTable/ciiISAdjEntry/ciiISAdjNeighSysID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjTable",
                    "ciiISAdjEntry",
                    "ciiISAdjNeighSysID"
                  ]
                },
                "description": "Retrieve ciiISAdjNeighSysID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjNbrExtendedCircID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjTable/ciiISAdjEntry/ciiISAdjNbrExtendedCircID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjTable",
                    "ciiISAdjEntry",
                    "ciiISAdjNbrExtendedCircID"
                  ]
                },
                "description": "Retrieve ciiISAdjNbrExtendedCircID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjUsage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjTable/ciiISAdjEntry/ciiISAdjUsage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjTable",
                    "ciiISAdjEntry",
                    "ciiISAdjUsage"
                  ]
                },
                "description": "Retrieve ciiISAdjUsage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjHoldTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjTable/ciiISAdjEntry/ciiISAdjHoldTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjTable",
                    "ciiISAdjEntry",
                    "ciiISAdjHoldTimer"
                  ]
                },
                "description": "Retrieve ciiISAdjHoldTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjNeighPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjTable/ciiISAdjEntry/ciiISAdjNeighPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjTable",
                    "ciiISAdjEntry",
                    "ciiISAdjNeighPriority"
                  ]
                },
                "description": "Retrieve ciiISAdjNeighPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjLastUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjTable/ciiISAdjEntry/ciiISAdjLastUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjTable",
                    "ciiISAdjEntry",
                    "ciiISAdjLastUpTime"
                  ]
                },
                "description": "Retrieve ciiISAdjLastUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjAreaAddrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjAreaAddrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjAreaAddrTable"
                  ]
                },
                "description": "Retrieve ciiISAdjAreaAddrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjAreaAddrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjAreaAddrTable/ciiISAdjAreaAddrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjAreaAddrTable",
                    "ciiISAdjAreaAddrEntry"
                  ]
                },
                "description": "Retrieve ciiISAdjAreaAddrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjAreaAddrTable/ciiISAdjAreaAddrEntry/ciiCircIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjAreaAddrTable",
                    "ciiISAdjAreaAddrEntry",
                    "ciiCircIndex"
                  ]
                },
                "description": "Retrieve ciiCircIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjAreaAddrTable/ciiISAdjAreaAddrEntry/ciiISAdjIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjAreaAddrTable",
                    "ciiISAdjAreaAddrEntry",
                    "ciiISAdjIndex"
                  ]
                },
                "description": "Retrieve ciiISAdjIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjAreaAddrIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjAreaAddrTable/ciiISAdjAreaAddrEntry/ciiISAdjAreaAddrIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjAreaAddrTable",
                    "ciiISAdjAreaAddrEntry",
                    "ciiISAdjAreaAddrIndex"
                  ]
                },
                "description": "Retrieve ciiISAdjAreaAddrIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjAreaAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjAreaAddrTable/ciiISAdjAreaAddrEntry/ciiISAdjAreaAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjAreaAddrTable",
                    "ciiISAdjAreaAddrEntry",
                    "ciiISAdjAreaAddress"
                  ]
                },
                "description": "Retrieve ciiISAdjAreaAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjIPAddrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjIPAddrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjIPAddrTable"
                  ]
                },
                "description": "Retrieve ciiISAdjIPAddrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjIPAddrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjIPAddrTable/ciiISAdjIPAddrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjIPAddrTable",
                    "ciiISAdjIPAddrEntry"
                  ]
                },
                "description": "Retrieve ciiISAdjIPAddrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjIPAddrTable/ciiISAdjIPAddrEntry/ciiCircIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjIPAddrTable",
                    "ciiISAdjIPAddrEntry",
                    "ciiCircIndex"
                  ]
                },
                "description": "Retrieve ciiCircIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjIPAddrTable/ciiISAdjIPAddrEntry/ciiISAdjIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjIPAddrTable",
                    "ciiISAdjIPAddrEntry",
                    "ciiISAdjIndex"
                  ]
                },
                "description": "Retrieve ciiISAdjIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjIPAddrIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjIPAddrTable/ciiISAdjIPAddrEntry/ciiISAdjIPAddrIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjIPAddrTable",
                    "ciiISAdjIPAddrEntry",
                    "ciiISAdjIPAddrIndex"
                  ]
                },
                "description": "Retrieve ciiISAdjIPAddrIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjIPAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjIPAddrTable/ciiISAdjIPAddrEntry/ciiISAdjIPAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjIPAddrTable",
                    "ciiISAdjIPAddrEntry",
                    "ciiISAdjIPAddrType"
                  ]
                },
                "description": "Retrieve ciiISAdjIPAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjIPAddrAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjIPAddrTable/ciiISAdjIPAddrEntry/ciiISAdjIPAddrAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjIPAddrTable",
                    "ciiISAdjIPAddrEntry",
                    "ciiISAdjIPAddrAddress"
                  ]
                },
                "description": "Retrieve ciiISAdjIPAddrAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjProtSuppTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjProtSuppTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjProtSuppTable"
                  ]
                },
                "description": "Retrieve ciiISAdjProtSuppTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjProtSuppEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjProtSuppTable/ciiISAdjProtSuppEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjProtSuppTable",
                    "ciiISAdjProtSuppEntry"
                  ]
                },
                "description": "Retrieve ciiISAdjProtSuppEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjProtSuppTable/ciiISAdjProtSuppEntry/ciiCircIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjProtSuppTable",
                    "ciiISAdjProtSuppEntry",
                    "ciiCircIndex"
                  ]
                },
                "description": "Retrieve ciiCircIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjProtSuppTable/ciiISAdjProtSuppEntry/ciiISAdjIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjProtSuppTable",
                    "ciiISAdjProtSuppEntry",
                    "ciiISAdjIndex"
                  ]
                },
                "description": "Retrieve ciiISAdjIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiISAdjProtSuppProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiISAdjProtSuppTable/ciiISAdjProtSuppEntry/ciiISAdjProtSuppProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiISAdjProtSuppTable",
                    "ciiISAdjProtSuppEntry",
                    "ciiISAdjProtSuppProtocol"
                  ]
                },
                "description": "Retrieve ciiISAdjProtSuppProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRATable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRATable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRATable"
                  ]
                },
                "description": "Retrieve ciiRATable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRAEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRATable/ciiRAEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRATable",
                    "ciiRAEntry"
                  ]
                },
                "description": "Retrieve ciiRAEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRATable/ciiRAEntry/ciiCircIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRATable",
                    "ciiRAEntry",
                    "ciiCircIndex"
                  ]
                },
                "description": "Retrieve ciiCircIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRAIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRATable/ciiRAEntry/ciiRAIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRATable",
                    "ciiRAEntry",
                    "ciiRAIndex"
                  ]
                },
                "description": "Retrieve ciiRAIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRAExistState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRATable/ciiRAEntry/ciiRAExistState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRATable",
                    "ciiRAEntry",
                    "ciiRAExistState"
                  ]
                },
                "description": "Retrieve ciiRAExistState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRAAdminState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRATable/ciiRAEntry/ciiRAAdminState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRATable",
                    "ciiRAEntry",
                    "ciiRAAdminState"
                  ]
                },
                "description": "Retrieve ciiRAAdminState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRAAddrPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRATable/ciiRAEntry/ciiRAAddrPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRATable",
                    "ciiRAEntry",
                    "ciiRAAddrPrefix"
                  ]
                },
                "description": "Retrieve ciiRAAddrPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRAMapType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRATable/ciiRAEntry/ciiRAMapType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRATable",
                    "ciiRAEntry",
                    "ciiRAMapType"
                  ]
                },
                "description": "Retrieve ciiRAMapType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRAMetric",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRATable/ciiRAEntry/ciiRAMetric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRATable",
                    "ciiRAEntry",
                    "ciiRAMetric"
                  ]
                },
                "description": "Retrieve ciiRAMetric from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRAMetricType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRATable/ciiRAEntry/ciiRAMetricType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRATable",
                    "ciiRAEntry",
                    "ciiRAMetricType"
                  ]
                },
                "description": "Retrieve ciiRAMetricType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRASNPAAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRATable/ciiRAEntry/ciiRASNPAAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRATable",
                    "ciiRAEntry",
                    "ciiRASNPAAddress"
                  ]
                },
                "description": "Retrieve ciiRASNPAAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRASNPAMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRATable/ciiRAEntry/ciiRASNPAMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRATable",
                    "ciiRAEntry",
                    "ciiRASNPAMask"
                  ]
                },
                "description": "Retrieve ciiRASNPAMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRASNPAPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRATable/ciiRAEntry/ciiRASNPAPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRATable",
                    "ciiRAEntry",
                    "ciiRASNPAPrefix"
                  ]
                },
                "description": "Retrieve ciiRASNPAPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiRAType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiRATable/ciiRAEntry/ciiRAType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiRATable",
                    "ciiRAEntry",
                    "ciiRAType"
                  ]
                },
                "description": "Retrieve ciiRAType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiIPRATable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiIPRATable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiIPRATable"
                  ]
                },
                "description": "Retrieve ciiIPRATable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiIPRAEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiIPRATable/ciiIPRAEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiIPRATable",
                    "ciiIPRAEntry"
                  ]
                },
                "description": "Retrieve ciiIPRAEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiIPRADestType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiIPRATable/ciiIPRAEntry/ciiIPRADestType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiIPRATable",
                    "ciiIPRAEntry",
                    "ciiIPRADestType"
                  ]
                },
                "description": "Retrieve ciiIPRADestType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiIPRADest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiIPRATable/ciiIPRAEntry/ciiIPRADest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiIPRATable",
                    "ciiIPRAEntry",
                    "ciiIPRADest"
                  ]
                },
                "description": "Retrieve ciiIPRADest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiIPRADestPrefixLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiIPRATable/ciiIPRAEntry/ciiIPRADestPrefixLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiIPRATable",
                    "ciiIPRAEntry",
                    "ciiIPRADestPrefixLen"
                  ]
                },
                "description": "Retrieve ciiIPRADestPrefixLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiIPRANextHopIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiIPRATable/ciiIPRAEntry/ciiIPRANextHopIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiIPRATable",
                    "ciiIPRAEntry",
                    "ciiIPRANextHopIndex"
                  ]
                },
                "description": "Retrieve ciiIPRANextHopIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiIPRANextHopType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiIPRATable/ciiIPRAEntry/ciiIPRANextHopType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiIPRATable",
                    "ciiIPRAEntry",
                    "ciiIPRANextHopType"
                  ]
                },
                "description": "Retrieve ciiIPRANextHopType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiIPRANextHop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiIPRATable/ciiIPRAEntry/ciiIPRANextHop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiIPRATable",
                    "ciiIPRAEntry",
                    "ciiIPRANextHop"
                  ]
                },
                "description": "Retrieve ciiIPRANextHop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiIPRAType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiIPRATable/ciiIPRAEntry/ciiIPRAType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiIPRATable",
                    "ciiIPRAEntry",
                    "ciiIPRAType"
                  ]
                },
                "description": "Retrieve ciiIPRAType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiIPRAExistState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiIPRATable/ciiIPRAEntry/ciiIPRAExistState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiIPRATable",
                    "ciiIPRAEntry",
                    "ciiIPRAExistState"
                  ]
                },
                "description": "Retrieve ciiIPRAExistState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiIPRAAdminState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiIPRATable/ciiIPRAEntry/ciiIPRAAdminState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiIPRATable",
                    "ciiIPRAEntry",
                    "ciiIPRAAdminState"
                  ]
                },
                "description": "Retrieve ciiIPRAAdminState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiIPRAMetric",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiIPRATable/ciiIPRAEntry/ciiIPRAMetric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiIPRATable",
                    "ciiIPRAEntry",
                    "ciiIPRAMetric"
                  ]
                },
                "description": "Retrieve ciiIPRAMetric from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiIPRAMetricType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiIPRATable/ciiIPRAEntry/ciiIPRAMetricType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiIPRATable",
                    "ciiIPRAEntry",
                    "ciiIPRAMetricType"
                  ]
                },
                "description": "Retrieve ciiIPRAMetricType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiIPRAFullMetric",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiIPRATable/ciiIPRAEntry/ciiIPRAFullMetric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiIPRATable",
                    "ciiIPRAEntry",
                    "ciiIPRAFullMetric"
                  ]
                },
                "description": "Retrieve ciiIPRAFullMetric from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiIPRASNPAAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiIPRATable/ciiIPRAEntry/ciiIPRASNPAAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiIPRATable",
                    "ciiIPRAEntry",
                    "ciiIPRASNPAAddress"
                  ]
                },
                "description": "Retrieve ciiIPRASNPAAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiIPRASourceType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiIPRATable/ciiIPRAEntry/ciiIPRASourceType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiIPRATable",
                    "ciiIPRAEntry",
                    "ciiIPRASourceType"
                  ]
                },
                "description": "Retrieve ciiIPRASourceType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPSummaryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPSummaryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPSummaryTable"
                  ]
                },
                "description": "Retrieve ciiLSPSummaryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPSummaryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPSummaryTable/ciiLSPSummaryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPSummaryTable",
                    "ciiLSPSummaryEntry"
                  ]
                },
                "description": "Retrieve ciiLSPSummaryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPSummaryTable/ciiLSPSummaryEntry/ciiLSPLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPSummaryTable",
                    "ciiLSPSummaryEntry",
                    "ciiLSPLevel"
                  ]
                },
                "description": "Retrieve ciiLSPLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPSummaryTable/ciiLSPSummaryEntry/ciiLSPID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPSummaryTable",
                    "ciiLSPSummaryEntry",
                    "ciiLSPID"
                  ]
                },
                "description": "Retrieve ciiLSPID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPSeq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPSummaryTable/ciiLSPSummaryEntry/ciiLSPSeq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPSummaryTable",
                    "ciiLSPSummaryEntry",
                    "ciiLSPSeq"
                  ]
                },
                "description": "Retrieve ciiLSPSeq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPZeroLife",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPSummaryTable/ciiLSPSummaryEntry/ciiLSPZeroLife",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPSummaryTable",
                    "ciiLSPSummaryEntry",
                    "ciiLSPZeroLife"
                  ]
                },
                "description": "Retrieve ciiLSPZeroLife from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPChecksum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPSummaryTable/ciiLSPSummaryEntry/ciiLSPChecksum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPSummaryTable",
                    "ciiLSPSummaryEntry",
                    "ciiLSPChecksum"
                  ]
                },
                "description": "Retrieve ciiLSPChecksum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPLifetimeRemain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPSummaryTable/ciiLSPSummaryEntry/ciiLSPLifetimeRemain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPSummaryTable",
                    "ciiLSPSummaryEntry",
                    "ciiLSPLifetimeRemain"
                  ]
                },
                "description": "Retrieve ciiLSPLifetimeRemain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPPDULength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPSummaryTable/ciiLSPSummaryEntry/ciiLSPPDULength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPSummaryTable",
                    "ciiLSPSummaryEntry",
                    "ciiLSPPDULength"
                  ]
                },
                "description": "Retrieve ciiLSPPDULength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPAttributes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPSummaryTable/ciiLSPSummaryEntry/ciiLSPAttributes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPSummaryTable",
                    "ciiLSPSummaryEntry",
                    "ciiLSPAttributes"
                  ]
                },
                "description": "Retrieve ciiLSPAttributes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPTLVTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable"
                  ]
                },
                "description": "Retrieve ciiLSPTLVTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPTLVEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/ciiLSPTLVEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "ciiLSPTLVEntry"
                  ]
                },
                "description": "Retrieve ciiLSPTLVEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/ciiLSPTLVEntry/ciiLSPLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "ciiLSPTLVEntry",
                    "ciiLSPLevel"
                  ]
                },
                "description": "Retrieve ciiLSPLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/ciiLSPTLVEntry/ciiLSPID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "ciiLSPTLVEntry",
                    "ciiLSPID"
                  ]
                },
                "description": "Retrieve ciiLSPID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPTLVIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/ciiLSPTLVEntry/ciiLSPTLVIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "ciiLSPTLVEntry",
                    "ciiLSPTLVIndex"
                  ]
                },
                "description": "Retrieve ciiLSPTLVIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPTLVSeq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/ciiLSPTLVEntry/ciiLSPTLVSeq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "ciiLSPTLVEntry",
                    "ciiLSPTLVSeq"
                  ]
                },
                "description": "Retrieve ciiLSPTLVSeq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPTLVChecksum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/ciiLSPTLVEntry/ciiLSPTLVChecksum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "ciiLSPTLVEntry",
                    "ciiLSPTLVChecksum"
                  ]
                },
                "description": "Retrieve ciiLSPTLVChecksum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPTLVType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/ciiLSPTLVEntry/ciiLSPTLVType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "ciiLSPTLVEntry",
                    "ciiLSPTLVType"
                  ]
                },
                "description": "Retrieve ciiLSPTLVType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPTLVLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/ciiLSPTLVEntry/ciiLSPTLVLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "ciiLSPTLVEntry",
                    "ciiLSPTLVLen"
                  ]
                },
                "description": "Retrieve ciiLSPTLVLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiLSPTLVValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/ciiLSPTLVEntry/ciiLSPTLVValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "ciiLSPTLVEntry",
                    "ciiLSPTLVValue"
                  ]
                },
                "description": "Retrieve ciiLSPTLVValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiNotifIsLevelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-1/ciiNotifIsLevelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-1",
                    "ciiNotifIsLevelIndex"
                  ]
                },
                "description": "Retrieve ciiNotifIsLevelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysLevelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-2/ciiSysLevelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-2",
                    "ciiSysLevelIndex"
                  ]
                },
                "description": "Retrieve ciiSysLevelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiSysLevelOverloadState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-2/ciiSysLevelOverloadState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-2",
                    "ciiSysLevelOverloadState"
                  ]
                },
                "description": "Retrieve ciiSysLevelOverloadState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiNotifManualAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-1/ciiNotifManualAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-1",
                    "ciiNotifManualAddress"
                  ]
                },
                "description": "Retrieve ciiNotifManualAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPduLspId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-2/ciiPduLspId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-2",
                    "ciiPduLspId"
                  ]
                },
                "description": "Retrieve ciiPduLspId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPduFieldLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-2/ciiPduFieldLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-2",
                    "ciiPduFieldLen"
                  ]
                },
                "description": "Retrieve ciiPduFieldLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-3/ciiCircIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-3",
                    "ciiCircIndex"
                  ]
                },
                "description": "Retrieve ciiCircIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-3/ciiCircIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-3",
                    "ciiCircIfIndex"
                  ]
                },
                "description": "Retrieve ciiCircIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPduFragment",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-4/ciiPduFragment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-4",
                    "ciiPduFragment"
                  ]
                },
                "description": "Retrieve ciiPduFragment from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPduMaxAreaAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-2/ciiPduMaxAreaAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-2",
                    "ciiPduMaxAreaAddress"
                  ]
                },
                "description": "Retrieve ciiPduMaxAreaAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-2/ciiCircIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-2",
                    "ciiCircIndex"
                  ]
                },
                "description": "Retrieve ciiCircIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-2/ciiCircIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-2",
                    "ciiCircIfIndex"
                  ]
                },
                "description": "Retrieve ciiCircIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPduLspId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-3/ciiPduLspId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-3",
                    "ciiPduLspId"
                  ]
                },
                "description": "Retrieve ciiPduLspId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPduFragment",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-3/ciiPduFragment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-3",
                    "ciiPduFragment"
                  ]
                },
                "description": "Retrieve ciiPduFragment from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPduProtocolVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-3/ciiPduProtocolVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-3",
                    "ciiPduProtocolVersion"
                  ]
                },
                "description": "Retrieve ciiPduProtocolVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-1/ciiCircIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-1",
                    "ciiCircIndex"
                  ]
                },
                "description": "Retrieve ciiCircIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiCircIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-1/ciiCircIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-1",
                    "ciiCircIfIndex"
                  ]
                },
                "description": "Retrieve ciiCircIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPduFragment",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-2/ciiPduFragment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-2",
                    "ciiPduFragment"
                  ]
                },
                "description": "Retrieve ciiPduFragment from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPduLspSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-3/ciiPduLspSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-3",
                    "ciiPduLspSize"
                  ]
                },
                "description": "Retrieve ciiPduLspSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPduLspId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-4/ciiPduLspId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-4",
                    "ciiPduLspId"
                  ]
                },
                "description": "Retrieve ciiPduLspId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPduOriginatingBufferSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-4/ciiPduOriginatingBufferSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-4",
                    "ciiPduOriginatingBufferSize"
                  ]
                },
                "description": "Retrieve ciiPduOriginatingBufferSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPduProtocolsSupported",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-3/ciiPduProtocolsSupported",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-3",
                    "ciiPduProtocolsSupported"
                  ]
                },
                "description": "Retrieve ciiPduProtocolsSupported from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiPduFragment",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-5/ciiPduFragment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-5",
                    "ciiPduFragment"
                  ]
                },
                "description": "Retrieve ciiPduFragment from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiAdjState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-4/ciiAdjState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-4",
                    "ciiAdjState"
                  ]
                },
                "description": "Retrieve ciiAdjState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiErrorOffset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-5/ciiErrorOffset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-5",
                    "ciiErrorOffset"
                  ]
                },
                "description": "Retrieve ciiErrorOffset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-6"
                  ]
                },
                "description": "Retrieve object-6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciiErrorTLVType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB/ciiLSPTLVTable/object-6/ciiErrorTLVType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-ISIS-MIB:CISCO-IETF-ISIS-MIB",
                    "ciiLSPTLVTable",
                    "object-6",
                    "ciiErrorTLVType"
                  ]
                },
                "description": "Retrieve ciiErrorTLVType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IETF-MPLS-ID-STD-03-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IETF-MPLS-ID-STD-03-MIB\n\nMIB data from `CISCO-IETF-MPLS-ID-STD-03-MIB` module.\n\n**Root containers:** 1 (CISCO-IETF-MPLS-ID-STD-03-MIB)\n**Paths:** 5 | **Descendants:** 4\n\nAll endpoints are read-only (GET).\n\nEndpoints: 5 | Operations: 5",
          "item": [
            {
              "name": "GET Get CISCO-IETF-MPLS-ID-STD-03-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-ID-STD-03-MIB:CISCO-IETF-MPLS-ID-STD-03-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-ID-STD-03-MIB:CISCO-IETF-MPLS-ID-STD-03-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IETF-MPLS-ID-STD-03-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsIdObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-ID-STD-03-MIB:CISCO-IETF-MPLS-ID-STD-03-MIB/cmplsIdObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-ID-STD-03-MIB:CISCO-IETF-MPLS-ID-STD-03-MIB",
                    "cmplsIdObjects"
                  ]
                },
                "description": "Retrieve cmplsIdObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsGlobalId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-ID-STD-03-MIB:CISCO-IETF-MPLS-ID-STD-03-MIB/cmplsIdObjects/cmplsGlobalId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-ID-STD-03-MIB:CISCO-IETF-MPLS-ID-STD-03-MIB",
                    "cmplsIdObjects",
                    "cmplsGlobalId"
                  ]
                },
                "description": "Retrieve cmplsGlobalId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsIcc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-ID-STD-03-MIB:CISCO-IETF-MPLS-ID-STD-03-MIB/cmplsIdObjects/cmplsIcc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-ID-STD-03-MIB:CISCO-IETF-MPLS-ID-STD-03-MIB",
                    "cmplsIdObjects",
                    "cmplsIcc"
                  ]
                },
                "description": "Retrieve cmplsIcc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-ID-STD-03-MIB:CISCO-IETF-MPLS-ID-STD-03-MIB/cmplsIdObjects/cmplsNodeId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-ID-STD-03-MIB:CISCO-IETF-MPLS-ID-STD-03-MIB",
                    "cmplsIdObjects",
                    "cmplsNodeId"
                  ]
                },
                "description": "Retrieve cmplsNodeId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IETF-MPLS-TE-EXT-STD-03-MIB\n\nMIB data from `CISCO-IETF-MPLS-TE-EXT-STD-03-MIB` module.\n\n**Root containers:** 1 (CISCO-IETF-MPLS-TE-EXT-STD-03-MIB)\n**Paths:** 40 | **Descendants:** 39\n\nAll endpoints are read-only (GET).\n\nEndpoints: 40 | Operations: 40",
          "item": [
            {
              "name": "GET Get CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IETF-MPLS-TE-EXT-STD-03-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeConfigTable"
                  ]
                },
                "description": "Retrieve cmplsNodeConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeConfigTable/cmplsNodeConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeConfigTable",
                    "cmplsNodeConfigEntry"
                  ]
                },
                "description": "Retrieve cmplsNodeConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeConfigLocalId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeConfigTable/cmplsNodeConfigEntry/cmplsNodeConfigLocalId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeConfigTable",
                    "cmplsNodeConfigEntry",
                    "cmplsNodeConfigLocalId"
                  ]
                },
                "description": "Retrieve cmplsNodeConfigLocalId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeConfigGlobalId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeConfigTable/cmplsNodeConfigEntry/cmplsNodeConfigGlobalId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeConfigTable",
                    "cmplsNodeConfigEntry",
                    "cmplsNodeConfigGlobalId"
                  ]
                },
                "description": "Retrieve cmplsNodeConfigGlobalId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeConfigNodeId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeConfigTable/cmplsNodeConfigEntry/cmplsNodeConfigNodeId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeConfigTable",
                    "cmplsNodeConfigEntry",
                    "cmplsNodeConfigNodeId"
                  ]
                },
                "description": "Retrieve cmplsNodeConfigNodeId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeConfigIccId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeConfigTable/cmplsNodeConfigEntry/cmplsNodeConfigIccId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeConfigTable",
                    "cmplsNodeConfigEntry",
                    "cmplsNodeConfigIccId"
                  ]
                },
                "description": "Retrieve cmplsNodeConfigIccId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeConfigRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeConfigTable/cmplsNodeConfigEntry/cmplsNodeConfigRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeConfigTable",
                    "cmplsNodeConfigEntry",
                    "cmplsNodeConfigRowStatus"
                  ]
                },
                "description": "Retrieve cmplsNodeConfigRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeConfigStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeConfigTable/cmplsNodeConfigEntry/cmplsNodeConfigStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeConfigTable",
                    "cmplsNodeConfigEntry",
                    "cmplsNodeConfigStorageType"
                  ]
                },
                "description": "Retrieve cmplsNodeConfigStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeIpMapTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeIpMapTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeIpMapTable"
                  ]
                },
                "description": "Retrieve cmplsNodeIpMapTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeIpMapEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeIpMapTable/cmplsNodeIpMapEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeIpMapTable",
                    "cmplsNodeIpMapEntry"
                  ]
                },
                "description": "Retrieve cmplsNodeIpMapEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeIpMapGlobalId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeIpMapTable/cmplsNodeIpMapEntry/cmplsNodeIpMapGlobalId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeIpMapTable",
                    "cmplsNodeIpMapEntry",
                    "cmplsNodeIpMapGlobalId"
                  ]
                },
                "description": "Retrieve cmplsNodeIpMapGlobalId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeIpMapNodeId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeIpMapTable/cmplsNodeIpMapEntry/cmplsNodeIpMapNodeId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeIpMapTable",
                    "cmplsNodeIpMapEntry",
                    "cmplsNodeIpMapNodeId"
                  ]
                },
                "description": "Retrieve cmplsNodeIpMapNodeId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeIpMapLocalId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeIpMapTable/cmplsNodeIpMapEntry/cmplsNodeIpMapLocalId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeIpMapTable",
                    "cmplsNodeIpMapEntry",
                    "cmplsNodeIpMapLocalId"
                  ]
                },
                "description": "Retrieve cmplsNodeIpMapLocalId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeIccMapTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeIccMapTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeIccMapTable"
                  ]
                },
                "description": "Retrieve cmplsNodeIccMapTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeIccMapEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeIccMapTable/cmplsNodeIccMapEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeIccMapTable",
                    "cmplsNodeIccMapEntry"
                  ]
                },
                "description": "Retrieve cmplsNodeIccMapEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeIccMapIccId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeIccMapTable/cmplsNodeIccMapEntry/cmplsNodeIccMapIccId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeIccMapTable",
                    "cmplsNodeIccMapEntry",
                    "cmplsNodeIccMapIccId"
                  ]
                },
                "description": "Retrieve cmplsNodeIccMapIccId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsNodeIccMapLocalId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsNodeIccMapTable/cmplsNodeIccMapEntry/cmplsNodeIccMapLocalId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsNodeIccMapTable",
                    "cmplsNodeIccMapEntry",
                    "cmplsNodeIccMapLocalId"
                  ]
                },
                "description": "Retrieve cmplsNodeIccMapLocalId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsTunnelExtTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelExtTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelExtTable"
                  ]
                },
                "description": "Retrieve cmplsTunnelExtTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsTunnelExtEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelExtTable/cmplsTunnelExtEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelExtTable",
                    "cmplsTunnelExtEntry"
                  ]
                },
                "description": "Retrieve cmplsTunnelExtEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelExtTable/cmplsTunnelExtEntry/mplsTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelExtTable",
                    "cmplsTunnelExtEntry",
                    "mplsTunnelIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelExtTable/cmplsTunnelExtEntry/mplsTunnelInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelExtTable",
                    "cmplsTunnelExtEntry",
                    "mplsTunnelInstance"
                  ]
                },
                "description": "Retrieve mplsTunnelInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelIngressLSRId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelExtTable/cmplsTunnelExtEntry/mplsTunnelIngressLSRId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelExtTable",
                    "cmplsTunnelExtEntry",
                    "mplsTunnelIngressLSRId"
                  ]
                },
                "description": "Retrieve mplsTunnelIngressLSRId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelEgressLSRId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelExtTable/cmplsTunnelExtEntry/mplsTunnelEgressLSRId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelExtTable",
                    "cmplsTunnelExtEntry",
                    "mplsTunnelEgressLSRId"
                  ]
                },
                "description": "Retrieve mplsTunnelEgressLSRId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsTunnelOppositeDirPtr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelExtTable/cmplsTunnelExtEntry/cmplsTunnelOppositeDirPtr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelExtTable",
                    "cmplsTunnelExtEntry",
                    "cmplsTunnelOppositeDirPtr"
                  ]
                },
                "description": "Retrieve cmplsTunnelOppositeDirPtr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsTunnelExtOppositeDirTnlValid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelExtTable/cmplsTunnelExtEntry/cmplsTunnelExtOppositeDirTnlValid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelExtTable",
                    "cmplsTunnelExtEntry",
                    "cmplsTunnelExtOppositeDirTnlValid"
                  ]
                },
                "description": "Retrieve cmplsTunnelExtOppositeDirTnlValid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsTunnelExtDestTnlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelExtTable/cmplsTunnelExtEntry/cmplsTunnelExtDestTnlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelExtTable",
                    "cmplsTunnelExtEntry",
                    "cmplsTunnelExtDestTnlIndex"
                  ]
                },
                "description": "Retrieve cmplsTunnelExtDestTnlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsTunnelExtDestTnlLspIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelExtTable/cmplsTunnelExtEntry/cmplsTunnelExtDestTnlLspIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelExtTable",
                    "cmplsTunnelExtEntry",
                    "cmplsTunnelExtDestTnlLspIndex"
                  ]
                },
                "description": "Retrieve cmplsTunnelExtDestTnlLspIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsTunnelExtDestTnlValid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelExtTable/cmplsTunnelExtEntry/cmplsTunnelExtDestTnlValid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelExtTable",
                    "cmplsTunnelExtEntry",
                    "cmplsTunnelExtDestTnlValid"
                  ]
                },
                "description": "Retrieve cmplsTunnelExtDestTnlValid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsTunnelReversePerfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelReversePerfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelReversePerfTable"
                  ]
                },
                "description": "Retrieve cmplsTunnelReversePerfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsTunnelReversePerfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelReversePerfTable/cmplsTunnelReversePerfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelReversePerfTable",
                    "cmplsTunnelReversePerfEntry"
                  ]
                },
                "description": "Retrieve cmplsTunnelReversePerfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelReversePerfTable/cmplsTunnelReversePerfEntry/mplsTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelReversePerfTable",
                    "cmplsTunnelReversePerfEntry",
                    "mplsTunnelIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelReversePerfTable/cmplsTunnelReversePerfEntry/mplsTunnelInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelReversePerfTable",
                    "cmplsTunnelReversePerfEntry",
                    "mplsTunnelInstance"
                  ]
                },
                "description": "Retrieve mplsTunnelInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelIngressLSRId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelReversePerfTable/cmplsTunnelReversePerfEntry/mplsTunnelIngressLSRId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelReversePerfTable",
                    "cmplsTunnelReversePerfEntry",
                    "mplsTunnelIngressLSRId"
                  ]
                },
                "description": "Retrieve mplsTunnelIngressLSRId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelEgressLSRId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelReversePerfTable/cmplsTunnelReversePerfEntry/mplsTunnelEgressLSRId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelReversePerfTable",
                    "cmplsTunnelReversePerfEntry",
                    "mplsTunnelEgressLSRId"
                  ]
                },
                "description": "Retrieve mplsTunnelEgressLSRId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsTunnelReversePerfPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelReversePerfTable/cmplsTunnelReversePerfEntry/cmplsTunnelReversePerfPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelReversePerfTable",
                    "cmplsTunnelReversePerfEntry",
                    "cmplsTunnelReversePerfPackets"
                  ]
                },
                "description": "Retrieve cmplsTunnelReversePerfPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsTunnelReversePerfHCPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelReversePerfTable/cmplsTunnelReversePerfEntry/cmplsTunnelReversePerfHCPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelReversePerfTable",
                    "cmplsTunnelReversePerfEntry",
                    "cmplsTunnelReversePerfHCPackets"
                  ]
                },
                "description": "Retrieve cmplsTunnelReversePerfHCPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsTunnelReversePerfErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelReversePerfTable/cmplsTunnelReversePerfEntry/cmplsTunnelReversePerfErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelReversePerfTable",
                    "cmplsTunnelReversePerfEntry",
                    "cmplsTunnelReversePerfErrors"
                  ]
                },
                "description": "Retrieve cmplsTunnelReversePerfErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsTunnelReversePerfBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelReversePerfTable/cmplsTunnelReversePerfEntry/cmplsTunnelReversePerfBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelReversePerfTable",
                    "cmplsTunnelReversePerfEntry",
                    "cmplsTunnelReversePerfBytes"
                  ]
                },
                "description": "Retrieve cmplsTunnelReversePerfBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsTunnelReversePerfHCBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB/cmplsTunnelReversePerfTable/cmplsTunnelReversePerfEntry/cmplsTunnelReversePerfHCBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-MPLS-TE-EXT-STD-03-MIB:CISCO-IETF-MPLS-TE-EXT-STD-03-MIB",
                    "cmplsTunnelReversePerfTable",
                    "cmplsTunnelReversePerfEntry",
                    "cmplsTunnelReversePerfHCBytes"
                  ]
                },
                "description": "Retrieve cmplsTunnelReversePerfHCBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IETF-PW-ATM-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IETF-PW-ATM-MIB\n\nMIB data from `CISCO-IETF-PW-ATM-MIB` module.\n\n**Root containers:** 1 (CISCO-IETF-PW-ATM-MIB)\n**Paths:** 27 | **Descendants:** 26\n\nAll endpoints are read-only (GET).\n\nEndpoints: 27 | Operations: 27",
          "item": [
            {
              "name": "GET Get CISCO-IETF-PW-ATM-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IETF-PW-ATM-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcAtmTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable"
                  ]
                },
                "description": "Retrieve cpwVcAtmTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcAtmEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry"
                  ]
                },
                "description": "Retrieve cpwVcAtmEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmIf"
                  ]
                },
                "description": "Retrieve cpwAtmIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmVpi"
                  ]
                },
                "description": "Retrieve cpwAtmVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmVci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmVci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmVci"
                  ]
                },
                "description": "Retrieve cpwAtmVci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmClpQosMapping",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmClpQosMapping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmClpQosMapping"
                  ]
                },
                "description": "Retrieve cpwAtmClpQosMapping from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmRowStatus"
                  ]
                },
                "description": "Retrieve cpwAtmRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmOamCellSupported",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmOamCellSupported",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmOamCellSupported"
                  ]
                },
                "description": "Retrieve cpwAtmOamCellSupported from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmQosScalingFactor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmQosScalingFactor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmQosScalingFactor"
                  ]
                },
                "description": "Retrieve cpwAtmQosScalingFactor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmCellPacking",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmCellPacking",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmCellPacking"
                  ]
                },
                "description": "Retrieve cpwAtmCellPacking from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmMncp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmMncp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmMncp"
                  ]
                },
                "description": "Retrieve cpwAtmMncp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmPeerMncp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmPeerMncp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmPeerMncp"
                  ]
                },
                "description": "Retrieve cpwAtmPeerMncp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmEncap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmEncap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmEncap"
                  ]
                },
                "description": "Retrieve cpwAtmEncap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmMcptTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmMcptTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmMcptTimeout"
                  ]
                },
                "description": "Retrieve cpwAtmMcptTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmCellsReceived",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmCellsReceived",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmCellsReceived"
                  ]
                },
                "description": "Retrieve cpwAtmCellsReceived from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmCellsSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmCellsSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmCellsSent"
                  ]
                },
                "description": "Retrieve cpwAtmCellsSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmCellsRejected",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmCellsRejected",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmCellsRejected"
                  ]
                },
                "description": "Retrieve cpwAtmCellsRejected from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmCellsTagged",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmCellsTagged",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmCellsTagged"
                  ]
                },
                "description": "Retrieve cpwAtmCellsTagged from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmHCCellsReceived",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmHCCellsReceived",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmHCCellsReceived"
                  ]
                },
                "description": "Retrieve cpwAtmHCCellsReceived from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmHCCellsRejected",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmHCCellsRejected",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmHCCellsRejected"
                  ]
                },
                "description": "Retrieve cpwAtmHCCellsRejected from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmHCCellsTagged",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmHCCellsTagged",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmHCCellsTagged"
                  ]
                },
                "description": "Retrieve cpwAtmHCCellsTagged from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmAvgCellsPacked",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmAvgCellsPacked",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmAvgCellsPacked"
                  ]
                },
                "description": "Retrieve cpwAtmAvgCellsPacked from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmPktsReceived",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmPktsReceived",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmPktsReceived"
                  ]
                },
                "description": "Retrieve cpwAtmPktsReceived from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmPktsSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmPktsSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmPktsSent"
                  ]
                },
                "description": "Retrieve cpwAtmPktsSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwAtmPktsRejected",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB/cpwVcAtmTable/cpwVcAtmEntry/cpwAtmPktsRejected",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ATM-MIB:CISCO-IETF-PW-ATM-MIB",
                    "cpwVcAtmTable",
                    "cpwVcAtmEntry",
                    "cpwAtmPktsRejected"
                  ]
                },
                "description": "Retrieve cpwAtmPktsRejected from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IETF-PW-ENET-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IETF-PW-ENET-MIB\n\nMIB data from `CISCO-IETF-PW-ENET-MIB` module.\n\n**Root containers:** 1 (CISCO-IETF-PW-ENET-MIB)\n**Paths:** 22 | **Descendants:** 21\n\nAll endpoints are read-only (GET).\n\nEndpoints: 22 | Operations: 22",
          "item": [
            {
              "name": "GET Get CISCO-IETF-PW-ENET-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IETF-PW-ENET-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetTable"
                  ]
                },
                "description": "Retrieve cpwVcEnetTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetTable/cpwVcEnetEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetTable",
                    "cpwVcEnetEntry"
                  ]
                },
                "description": "Retrieve cpwVcEnetEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetTable/cpwVcEnetEntry/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetTable",
                    "cpwVcEnetEntry",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetPwVlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetTable/cpwVcEnetEntry/cpwVcEnetPwVlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetTable",
                    "cpwVcEnetEntry",
                    "cpwVcEnetPwVlan"
                  ]
                },
                "description": "Retrieve cpwVcEnetPwVlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetVlanMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetTable/cpwVcEnetEntry/cpwVcEnetVlanMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetTable",
                    "cpwVcEnetEntry",
                    "cpwVcEnetVlanMode"
                  ]
                },
                "description": "Retrieve cpwVcEnetVlanMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetPortVlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetTable/cpwVcEnetEntry/cpwVcEnetPortVlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetTable",
                    "cpwVcEnetEntry",
                    "cpwVcEnetPortVlan"
                  ]
                },
                "description": "Retrieve cpwVcEnetPortVlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetVcIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetTable/cpwVcEnetEntry/cpwVcEnetVcIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetTable",
                    "cpwVcEnetEntry",
                    "cpwVcEnetVcIfIndex"
                  ]
                },
                "description": "Retrieve cpwVcEnetVcIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetPortIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetTable/cpwVcEnetEntry/cpwVcEnetPortIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetTable",
                    "cpwVcEnetEntry",
                    "cpwVcEnetPortIfIndex"
                  ]
                },
                "description": "Retrieve cpwVcEnetPortIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetTable/cpwVcEnetEntry/cpwVcEnetRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetTable",
                    "cpwVcEnetEntry",
                    "cpwVcEnetRowStatus"
                  ]
                },
                "description": "Retrieve cpwVcEnetRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetTable/cpwVcEnetEntry/cpwVcEnetStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetTable",
                    "cpwVcEnetEntry",
                    "cpwVcEnetStorageType"
                  ]
                },
                "description": "Retrieve cpwVcEnetStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetMplsPriMappingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetMplsPriMappingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetMplsPriMappingTable"
                  ]
                },
                "description": "Retrieve cpwVcEnetMplsPriMappingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetMplsPriMappingTableEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetMplsPriMappingTable/cpwVcEnetMplsPriMappingTableEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetMplsPriMappingTable",
                    "cpwVcEnetMplsPriMappingTableEntry"
                  ]
                },
                "description": "Retrieve cpwVcEnetMplsPriMappingTableEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetMplsPriMappingTable/cpwVcEnetMplsPriMappingTableEntry/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetMplsPriMappingTable",
                    "cpwVcEnetMplsPriMappingTableEntry",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetMplsPriMapping",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetMplsPriMappingTable/cpwVcEnetMplsPriMappingTableEntry/cpwVcEnetMplsPriMapping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetMplsPriMappingTable",
                    "cpwVcEnetMplsPriMappingTableEntry",
                    "cpwVcEnetMplsPriMapping"
                  ]
                },
                "description": "Retrieve cpwVcEnetMplsPriMapping from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetMplsPriMappingRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetMplsPriMappingTable/cpwVcEnetMplsPriMappingTableEntry/cpwVcEnetMplsPriMappingRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetMplsPriMappingTable",
                    "cpwVcEnetMplsPriMappingTableEntry",
                    "cpwVcEnetMplsPriMappingRowStatus"
                  ]
                },
                "description": "Retrieve cpwVcEnetMplsPriMappingRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetMplsPriMappingStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetMplsPriMappingTable/cpwVcEnetMplsPriMappingTableEntry/cpwVcEnetMplsPriMappingStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetMplsPriMappingTable",
                    "cpwVcEnetMplsPriMappingTableEntry",
                    "cpwVcEnetMplsPriMappingStorageType"
                  ]
                },
                "description": "Retrieve cpwVcEnetMplsPriMappingStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetStatsTable"
                  ]
                },
                "description": "Retrieve cpwVcEnetStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetStatsTable/cpwVcEnetStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetStatsTable",
                    "cpwVcEnetStatsEntry"
                  ]
                },
                "description": "Retrieve cpwVcEnetStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetStatsTable/cpwVcEnetStatsEntry/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetStatsTable",
                    "cpwVcEnetStatsEntry",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetStatsIllegalVlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetStatsTable/cpwVcEnetStatsEntry/cpwVcEnetStatsIllegalVlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetStatsTable",
                    "cpwVcEnetStatsEntry",
                    "cpwVcEnetStatsIllegalVlan"
                  ]
                },
                "description": "Retrieve cpwVcEnetStatsIllegalVlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEnetStatsIllegalLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB/cpwVcEnetStatsTable/cpwVcEnetStatsEntry/cpwVcEnetStatsIllegalLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-ENET-MIB:CISCO-IETF-PW-ENET-MIB",
                    "cpwVcEnetStatsTable",
                    "cpwVcEnetStatsEntry",
                    "cpwVcEnetStatsIllegalLength"
                  ]
                },
                "description": "Retrieve cpwVcEnetStatsIllegalLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IETF-PW-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IETF-PW-MIB\n\nMIB data from `CISCO-IETF-PW-MIB` module.\n\n**Root containers:** 1 (CISCO-IETF-PW-MIB)\n**Paths:** 85 | **Descendants:** 90\n\nAll endpoints are read-only (GET).\n\nEndpoints: 85 | Operations: 85",
          "item": [
            {
              "name": "GET Get CISCO-IETF-PW-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IETF-PW-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcObjects"
                  ]
                },
                "description": "Retrieve cpwVcObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcObjects/cpwVcIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcObjects",
                    "cpwVcIndexNext"
                  ]
                },
                "description": "Retrieve cpwVcIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfTotalErrorPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcObjects/cpwVcPerfTotalErrorPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcObjects",
                    "cpwVcPerfTotalErrorPackets"
                  ]
                },
                "description": "Retrieve cpwVcPerfTotalErrorPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcUpDownNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcObjects/cpwVcUpDownNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcObjects",
                    "cpwVcUpDownNotifEnable"
                  ]
                },
                "description": "Retrieve cpwVcUpDownNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcNotifRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcObjects/cpwVcNotifRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcObjects",
                    "cpwVcNotifRate"
                  ]
                },
                "description": "Retrieve cpwVcNotifRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable"
                  ]
                },
                "description": "Retrieve cpwVcTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry"
                  ]
                },
                "description": "Retrieve cpwVcEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcType"
                  ]
                },
                "description": "Retrieve cpwVcType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcOwner"
                  ]
                },
                "description": "Retrieve cpwVcOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPsnType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcPsnType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcPsnType"
                  ]
                },
                "description": "Retrieve cpwVcPsnType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcSetUpPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcSetUpPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcSetUpPriority"
                  ]
                },
                "description": "Retrieve cpwVcSetUpPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcHoldingPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcHoldingPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcHoldingPriority"
                  ]
                },
                "description": "Retrieve cpwVcHoldingPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcInboundMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcInboundMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcInboundMode"
                  ]
                },
                "description": "Retrieve cpwVcInboundMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPeerAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcPeerAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcPeerAddrType"
                  ]
                },
                "description": "Retrieve cpwVcPeerAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPeerAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcPeerAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcPeerAddr"
                  ]
                },
                "description": "Retrieve cpwVcPeerAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcID"
                  ]
                },
                "description": "Retrieve cpwVcID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcLocalGroupID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcLocalGroupID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcLocalGroupID"
                  ]
                },
                "description": "Retrieve cpwVcLocalGroupID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcControlWord",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcControlWord",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcControlWord"
                  ]
                },
                "description": "Retrieve cpwVcControlWord from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcLocalIfMtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcLocalIfMtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcLocalIfMtu"
                  ]
                },
                "description": "Retrieve cpwVcLocalIfMtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcLocalIfString",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcLocalIfString",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcLocalIfString"
                  ]
                },
                "description": "Retrieve cpwVcLocalIfString from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcRemoteGroupID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcRemoteGroupID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcRemoteGroupID"
                  ]
                },
                "description": "Retrieve cpwVcRemoteGroupID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcRemoteControlWord",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcRemoteControlWord",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcRemoteControlWord"
                  ]
                },
                "description": "Retrieve cpwVcRemoteControlWord from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcRemoteIfMtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcRemoteIfMtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcRemoteIfMtu"
                  ]
                },
                "description": "Retrieve cpwVcRemoteIfMtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcRemoteIfString",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcRemoteIfString",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcRemoteIfString"
                  ]
                },
                "description": "Retrieve cpwVcRemoteIfString from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcOutboundVcLabel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcOutboundVcLabel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcOutboundVcLabel"
                  ]
                },
                "description": "Retrieve cpwVcOutboundVcLabel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcInboundVcLabel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcInboundVcLabel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcInboundVcLabel"
                  ]
                },
                "description": "Retrieve cpwVcInboundVcLabel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcName"
                  ]
                },
                "description": "Retrieve cpwVcName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcDescr"
                  ]
                },
                "description": "Retrieve cpwVcDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcCreateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcCreateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcCreateTime"
                  ]
                },
                "description": "Retrieve cpwVcCreateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcUpTime"
                  ]
                },
                "description": "Retrieve cpwVcUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcAdminStatus"
                  ]
                },
                "description": "Retrieve cpwVcAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcOperStatus"
                  ]
                },
                "description": "Retrieve cpwVcOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcInboundOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcInboundOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcInboundOperStatus"
                  ]
                },
                "description": "Retrieve cpwVcInboundOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcOutboundOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcOutboundOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcOutboundOperStatus"
                  ]
                },
                "description": "Retrieve cpwVcOutboundOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcTimeElapsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcTimeElapsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcTimeElapsed"
                  ]
                },
                "description": "Retrieve cpwVcTimeElapsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcValidIntervals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcValidIntervals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcValidIntervals"
                  ]
                },
                "description": "Retrieve cpwVcValidIntervals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcRowStatus"
                  ]
                },
                "description": "Retrieve cpwVcRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcTable/cpwVcEntry/cpwVcStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcTable",
                    "cpwVcEntry",
                    "cpwVcStorageType"
                  ]
                },
                "description": "Retrieve cpwVcStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfCurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfCurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfCurrentTable"
                  ]
                },
                "description": "Retrieve cpwVcPerfCurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfCurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfCurrentTable/cpwVcPerfCurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfCurrentTable",
                    "cpwVcPerfCurrentEntry"
                  ]
                },
                "description": "Retrieve cpwVcPerfCurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfCurrentTable/cpwVcPerfCurrentEntry/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfCurrentTable",
                    "cpwVcPerfCurrentEntry",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfCurrentInHCPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfCurrentTable/cpwVcPerfCurrentEntry/cpwVcPerfCurrentInHCPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfCurrentTable",
                    "cpwVcPerfCurrentEntry",
                    "cpwVcPerfCurrentInHCPackets"
                  ]
                },
                "description": "Retrieve cpwVcPerfCurrentInHCPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfCurrentInHCBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfCurrentTable/cpwVcPerfCurrentEntry/cpwVcPerfCurrentInHCBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfCurrentTable",
                    "cpwVcPerfCurrentEntry",
                    "cpwVcPerfCurrentInHCBytes"
                  ]
                },
                "description": "Retrieve cpwVcPerfCurrentInHCBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfCurrentOutHCPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfCurrentTable/cpwVcPerfCurrentEntry/cpwVcPerfCurrentOutHCPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfCurrentTable",
                    "cpwVcPerfCurrentEntry",
                    "cpwVcPerfCurrentOutHCPackets"
                  ]
                },
                "description": "Retrieve cpwVcPerfCurrentOutHCPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfCurrentOutHCBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfCurrentTable/cpwVcPerfCurrentEntry/cpwVcPerfCurrentOutHCBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfCurrentTable",
                    "cpwVcPerfCurrentEntry",
                    "cpwVcPerfCurrentOutHCBytes"
                  ]
                },
                "description": "Retrieve cpwVcPerfCurrentOutHCBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfIntervalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfIntervalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfIntervalTable"
                  ]
                },
                "description": "Retrieve cpwVcPerfIntervalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfIntervalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfIntervalTable/cpwVcPerfIntervalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfIntervalTable",
                    "cpwVcPerfIntervalEntry"
                  ]
                },
                "description": "Retrieve cpwVcPerfIntervalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfIntervalTable/cpwVcPerfIntervalEntry/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfIntervalTable",
                    "cpwVcPerfIntervalEntry",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfIntervalNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfIntervalTable/cpwVcPerfIntervalEntry/cpwVcPerfIntervalNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfIntervalTable",
                    "cpwVcPerfIntervalEntry",
                    "cpwVcPerfIntervalNumber"
                  ]
                },
                "description": "Retrieve cpwVcPerfIntervalNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfIntervalValidData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfIntervalTable/cpwVcPerfIntervalEntry/cpwVcPerfIntervalValidData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfIntervalTable",
                    "cpwVcPerfIntervalEntry",
                    "cpwVcPerfIntervalValidData"
                  ]
                },
                "description": "Retrieve cpwVcPerfIntervalValidData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfIntervalTimeElapsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfIntervalTable/cpwVcPerfIntervalEntry/cpwVcPerfIntervalTimeElapsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfIntervalTable",
                    "cpwVcPerfIntervalEntry",
                    "cpwVcPerfIntervalTimeElapsed"
                  ]
                },
                "description": "Retrieve cpwVcPerfIntervalTimeElapsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfIntervalInHCPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfIntervalTable/cpwVcPerfIntervalEntry/cpwVcPerfIntervalInHCPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfIntervalTable",
                    "cpwVcPerfIntervalEntry",
                    "cpwVcPerfIntervalInHCPackets"
                  ]
                },
                "description": "Retrieve cpwVcPerfIntervalInHCPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfIntervalInHCBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfIntervalTable/cpwVcPerfIntervalEntry/cpwVcPerfIntervalInHCBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfIntervalTable",
                    "cpwVcPerfIntervalEntry",
                    "cpwVcPerfIntervalInHCBytes"
                  ]
                },
                "description": "Retrieve cpwVcPerfIntervalInHCBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfIntervalOutHCPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfIntervalTable/cpwVcPerfIntervalEntry/cpwVcPerfIntervalOutHCPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfIntervalTable",
                    "cpwVcPerfIntervalEntry",
                    "cpwVcPerfIntervalOutHCPackets"
                  ]
                },
                "description": "Retrieve cpwVcPerfIntervalOutHCPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfIntervalOutHCBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfIntervalTable/cpwVcPerfIntervalEntry/cpwVcPerfIntervalOutHCBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfIntervalTable",
                    "cpwVcPerfIntervalEntry",
                    "cpwVcPerfIntervalOutHCBytes"
                  ]
                },
                "description": "Retrieve cpwVcPerfIntervalOutHCBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfTotalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfTotalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfTotalTable"
                  ]
                },
                "description": "Retrieve cpwVcPerfTotalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfTotalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfTotalTable/cpwVcPerfTotalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfTotalTable",
                    "cpwVcPerfTotalEntry"
                  ]
                },
                "description": "Retrieve cpwVcPerfTotalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfTotalTable/cpwVcPerfTotalEntry/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfTotalTable",
                    "cpwVcPerfTotalEntry",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfTotalInHCPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfTotalTable/cpwVcPerfTotalEntry/cpwVcPerfTotalInHCPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfTotalTable",
                    "cpwVcPerfTotalEntry",
                    "cpwVcPerfTotalInHCPackets"
                  ]
                },
                "description": "Retrieve cpwVcPerfTotalInHCPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfTotalInHCBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfTotalTable/cpwVcPerfTotalEntry/cpwVcPerfTotalInHCBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfTotalTable",
                    "cpwVcPerfTotalEntry",
                    "cpwVcPerfTotalInHCBytes"
                  ]
                },
                "description": "Retrieve cpwVcPerfTotalInHCBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfTotalOutHCPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfTotalTable/cpwVcPerfTotalEntry/cpwVcPerfTotalOutHCPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfTotalTable",
                    "cpwVcPerfTotalEntry",
                    "cpwVcPerfTotalOutHCPackets"
                  ]
                },
                "description": "Retrieve cpwVcPerfTotalOutHCPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfTotalOutHCBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfTotalTable/cpwVcPerfTotalEntry/cpwVcPerfTotalOutHCBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfTotalTable",
                    "cpwVcPerfTotalEntry",
                    "cpwVcPerfTotalOutHCBytes"
                  ]
                },
                "description": "Retrieve cpwVcPerfTotalOutHCBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPerfTotalDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPerfTotalTable/cpwVcPerfTotalEntry/cpwVcPerfTotalDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPerfTotalTable",
                    "cpwVcPerfTotalEntry",
                    "cpwVcPerfTotalDiscontinuityTime"
                  ]
                },
                "description": "Retrieve cpwVcPerfTotalDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIdMappingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcIdMappingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcIdMappingTable"
                  ]
                },
                "description": "Retrieve cpwVcIdMappingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIdMappingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcIdMappingTable/cpwVcIdMappingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcIdMappingTable",
                    "cpwVcIdMappingEntry"
                  ]
                },
                "description": "Retrieve cpwVcIdMappingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIdMappingVcType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcIdMappingTable/cpwVcIdMappingEntry/cpwVcIdMappingVcType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcIdMappingTable",
                    "cpwVcIdMappingEntry",
                    "cpwVcIdMappingVcType"
                  ]
                },
                "description": "Retrieve cpwVcIdMappingVcType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIdMappingVcID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcIdMappingTable/cpwVcIdMappingEntry/cpwVcIdMappingVcID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcIdMappingTable",
                    "cpwVcIdMappingEntry",
                    "cpwVcIdMappingVcID"
                  ]
                },
                "description": "Retrieve cpwVcIdMappingVcID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIdMappingPeerAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcIdMappingTable/cpwVcIdMappingEntry/cpwVcIdMappingPeerAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcIdMappingTable",
                    "cpwVcIdMappingEntry",
                    "cpwVcIdMappingPeerAddrType"
                  ]
                },
                "description": "Retrieve cpwVcIdMappingPeerAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIdMappingPeerAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcIdMappingTable/cpwVcIdMappingEntry/cpwVcIdMappingPeerAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcIdMappingTable",
                    "cpwVcIdMappingEntry",
                    "cpwVcIdMappingPeerAddr"
                  ]
                },
                "description": "Retrieve cpwVcIdMappingPeerAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIdMappingVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcIdMappingTable/cpwVcIdMappingEntry/cpwVcIdMappingVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcIdMappingTable",
                    "cpwVcIdMappingEntry",
                    "cpwVcIdMappingVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIdMappingVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPeerMappingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPeerMappingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPeerMappingTable"
                  ]
                },
                "description": "Retrieve cpwVcPeerMappingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPeerMappingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPeerMappingTable/cpwVcPeerMappingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPeerMappingTable",
                    "cpwVcPeerMappingEntry"
                  ]
                },
                "description": "Retrieve cpwVcPeerMappingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPeerMappingPeerAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPeerMappingTable/cpwVcPeerMappingEntry/cpwVcPeerMappingPeerAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPeerMappingTable",
                    "cpwVcPeerMappingEntry",
                    "cpwVcPeerMappingPeerAddrType"
                  ]
                },
                "description": "Retrieve cpwVcPeerMappingPeerAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPeerMappingPeerAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPeerMappingTable/cpwVcPeerMappingEntry/cpwVcPeerMappingPeerAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPeerMappingTable",
                    "cpwVcPeerMappingEntry",
                    "cpwVcPeerMappingPeerAddr"
                  ]
                },
                "description": "Retrieve cpwVcPeerMappingPeerAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPeerMappingVcType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPeerMappingTable/cpwVcPeerMappingEntry/cpwVcPeerMappingVcType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPeerMappingTable",
                    "cpwVcPeerMappingEntry",
                    "cpwVcPeerMappingVcType"
                  ]
                },
                "description": "Retrieve cpwVcPeerMappingVcType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPeerMappingVcID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPeerMappingTable/cpwVcPeerMappingEntry/cpwVcPeerMappingVcID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPeerMappingTable",
                    "cpwVcPeerMappingEntry",
                    "cpwVcPeerMappingVcID"
                  ]
                },
                "description": "Retrieve cpwVcPeerMappingVcID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcPeerMappingVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPeerMappingTable/cpwVcPeerMappingEntry/cpwVcPeerMappingVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPeerMappingTable",
                    "cpwVcPeerMappingEntry",
                    "cpwVcPeerMappingVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcPeerMappingVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPeerMappingTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPeerMappingTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPeerMappingTable/object-1/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPeerMappingTable",
                    "object-1",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPeerMappingTable/object-1/cpwVcOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPeerMappingTable",
                    "object-1",
                    "cpwVcOperStatus"
                  ]
                },
                "description": "Retrieve cpwVcOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPeerMappingTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPeerMappingTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPeerMappingTable/object-2/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPeerMappingTable",
                    "object-2",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB/cpwVcPeerMappingTable/object-2/cpwVcOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MIB:CISCO-IETF-PW-MIB",
                    "cpwVcPeerMappingTable",
                    "object-2",
                    "cpwVcOperStatus"
                  ]
                },
                "description": "Retrieve cpwVcOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IETF-PW-MPLS-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IETF-PW-MPLS-MIB\n\nMIB data from `CISCO-IETF-PW-MPLS-MIB` module.\n\n**Root containers:** 1 (CISCO-IETF-PW-MPLS-MIB)\n**Paths:** 53 | **Descendants:** 52\n\nAll endpoints are read-only (GET).\n\nEndpoints: 53 | Operations: 53",
          "item": [
            {
              "name": "GET Get CISCO-IETF-PW-MPLS-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IETF-PW-MPLS-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsObjects"
                  ]
                },
                "description": "Retrieve cpwVcMplsObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsOutboundIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsObjects/cpwVcMplsOutboundIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsObjects",
                    "cpwVcMplsOutboundIndexNext"
                  ]
                },
                "description": "Retrieve cpwVcMplsOutboundIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsInboundIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsObjects/cpwVcMplsInboundIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsObjects",
                    "cpwVcMplsInboundIndexNext"
                  ]
                },
                "description": "Retrieve cpwVcMplsInboundIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTable"
                  ]
                },
                "description": "Retrieve cpwVcMplsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTable/cpwVcMplsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTable",
                    "cpwVcMplsEntry"
                  ]
                },
                "description": "Retrieve cpwVcMplsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTable/cpwVcMplsEntry/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTable",
                    "cpwVcMplsEntry",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsMplsType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTable/cpwVcMplsEntry/cpwVcMplsMplsType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTable",
                    "cpwVcMplsEntry",
                    "cpwVcMplsMplsType"
                  ]
                },
                "description": "Retrieve cpwVcMplsMplsType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsExpBitsMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTable/cpwVcMplsEntry/cpwVcMplsExpBitsMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTable",
                    "cpwVcMplsEntry",
                    "cpwVcMplsExpBitsMode"
                  ]
                },
                "description": "Retrieve cpwVcMplsExpBitsMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsExpBits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTable/cpwVcMplsEntry/cpwVcMplsExpBits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTable",
                    "cpwVcMplsEntry",
                    "cpwVcMplsExpBits"
                  ]
                },
                "description": "Retrieve cpwVcMplsExpBits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsTtl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTable/cpwVcMplsEntry/cpwVcMplsTtl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTable",
                    "cpwVcMplsEntry",
                    "cpwVcMplsTtl"
                  ]
                },
                "description": "Retrieve cpwVcMplsTtl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsLocalLdpID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTable/cpwVcMplsEntry/cpwVcMplsLocalLdpID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTable",
                    "cpwVcMplsEntry",
                    "cpwVcMplsLocalLdpID"
                  ]
                },
                "description": "Retrieve cpwVcMplsLocalLdpID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsLocalLdpEntityID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTable/cpwVcMplsEntry/cpwVcMplsLocalLdpEntityID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTable",
                    "cpwVcMplsEntry",
                    "cpwVcMplsLocalLdpEntityID"
                  ]
                },
                "description": "Retrieve cpwVcMplsLocalLdpEntityID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsPeerLdpID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTable/cpwVcMplsEntry/cpwVcMplsPeerLdpID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTable",
                    "cpwVcMplsEntry",
                    "cpwVcMplsPeerLdpID"
                  ]
                },
                "description": "Retrieve cpwVcMplsPeerLdpID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTable/cpwVcMplsEntry/cpwVcMplsStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTable",
                    "cpwVcMplsEntry",
                    "cpwVcMplsStorageType"
                  ]
                },
                "description": "Retrieve cpwVcMplsStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsOutboundTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsOutboundTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsOutboundTable"
                  ]
                },
                "description": "Retrieve cpwVcMplsOutboundTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsOutboundEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsOutboundTable/cpwVcMplsOutboundEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsOutboundTable",
                    "cpwVcMplsOutboundEntry"
                  ]
                },
                "description": "Retrieve cpwVcMplsOutboundEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsOutboundTable/cpwVcMplsOutboundEntry/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsOutboundTable",
                    "cpwVcMplsOutboundEntry",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsOutboundIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsOutboundTable/cpwVcMplsOutboundEntry/cpwVcMplsOutboundIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsOutboundTable",
                    "cpwVcMplsOutboundEntry",
                    "cpwVcMplsOutboundIndex"
                  ]
                },
                "description": "Retrieve cpwVcMplsOutboundIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsOutboundLsrXcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsOutboundTable/cpwVcMplsOutboundEntry/cpwVcMplsOutboundLsrXcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsOutboundTable",
                    "cpwVcMplsOutboundEntry",
                    "cpwVcMplsOutboundLsrXcIndex"
                  ]
                },
                "description": "Retrieve cpwVcMplsOutboundLsrXcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsOutboundTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsOutboundTable/cpwVcMplsOutboundEntry/cpwVcMplsOutboundTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsOutboundTable",
                    "cpwVcMplsOutboundEntry",
                    "cpwVcMplsOutboundTunnelIndex"
                  ]
                },
                "description": "Retrieve cpwVcMplsOutboundTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsOutboundTunnelInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsOutboundTable/cpwVcMplsOutboundEntry/cpwVcMplsOutboundTunnelInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsOutboundTable",
                    "cpwVcMplsOutboundEntry",
                    "cpwVcMplsOutboundTunnelInstance"
                  ]
                },
                "description": "Retrieve cpwVcMplsOutboundTunnelInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsOutboundTunnelLclLSR",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsOutboundTable/cpwVcMplsOutboundEntry/cpwVcMplsOutboundTunnelLclLSR",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsOutboundTable",
                    "cpwVcMplsOutboundEntry",
                    "cpwVcMplsOutboundTunnelLclLSR"
                  ]
                },
                "description": "Retrieve cpwVcMplsOutboundTunnelLclLSR from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsOutboundTunnelPeerLSR",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsOutboundTable/cpwVcMplsOutboundEntry/cpwVcMplsOutboundTunnelPeerLSR",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsOutboundTable",
                    "cpwVcMplsOutboundEntry",
                    "cpwVcMplsOutboundTunnelPeerLSR"
                  ]
                },
                "description": "Retrieve cpwVcMplsOutboundTunnelPeerLSR from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsOutboundIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsOutboundTable/cpwVcMplsOutboundEntry/cpwVcMplsOutboundIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsOutboundTable",
                    "cpwVcMplsOutboundEntry",
                    "cpwVcMplsOutboundIfIndex"
                  ]
                },
                "description": "Retrieve cpwVcMplsOutboundIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsOutboundRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsOutboundTable/cpwVcMplsOutboundEntry/cpwVcMplsOutboundRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsOutboundTable",
                    "cpwVcMplsOutboundEntry",
                    "cpwVcMplsOutboundRowStatus"
                  ]
                },
                "description": "Retrieve cpwVcMplsOutboundRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsOutboundStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsOutboundTable/cpwVcMplsOutboundEntry/cpwVcMplsOutboundStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsOutboundTable",
                    "cpwVcMplsOutboundEntry",
                    "cpwVcMplsOutboundStorageType"
                  ]
                },
                "description": "Retrieve cpwVcMplsOutboundStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsInboundTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsInboundTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsInboundTable"
                  ]
                },
                "description": "Retrieve cpwVcMplsInboundTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsInboundEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsInboundTable/cpwVcMplsInboundEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsInboundTable",
                    "cpwVcMplsInboundEntry"
                  ]
                },
                "description": "Retrieve cpwVcMplsInboundEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsInboundTable/cpwVcMplsInboundEntry/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsInboundTable",
                    "cpwVcMplsInboundEntry",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsInboundIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsInboundTable/cpwVcMplsInboundEntry/cpwVcMplsInboundIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsInboundTable",
                    "cpwVcMplsInboundEntry",
                    "cpwVcMplsInboundIndex"
                  ]
                },
                "description": "Retrieve cpwVcMplsInboundIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsInboundLsrXcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsInboundTable/cpwVcMplsInboundEntry/cpwVcMplsInboundLsrXcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsInboundTable",
                    "cpwVcMplsInboundEntry",
                    "cpwVcMplsInboundLsrXcIndex"
                  ]
                },
                "description": "Retrieve cpwVcMplsInboundLsrXcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsInboundTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsInboundTable/cpwVcMplsInboundEntry/cpwVcMplsInboundTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsInboundTable",
                    "cpwVcMplsInboundEntry",
                    "cpwVcMplsInboundTunnelIndex"
                  ]
                },
                "description": "Retrieve cpwVcMplsInboundTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsInboundTunnelInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsInboundTable/cpwVcMplsInboundEntry/cpwVcMplsInboundTunnelInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsInboundTable",
                    "cpwVcMplsInboundEntry",
                    "cpwVcMplsInboundTunnelInstance"
                  ]
                },
                "description": "Retrieve cpwVcMplsInboundTunnelInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsInboundTunnelLclLSR",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsInboundTable/cpwVcMplsInboundEntry/cpwVcMplsInboundTunnelLclLSR",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsInboundTable",
                    "cpwVcMplsInboundEntry",
                    "cpwVcMplsInboundTunnelLclLSR"
                  ]
                },
                "description": "Retrieve cpwVcMplsInboundTunnelLclLSR from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsInboundTunnelPeerLSR",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsInboundTable/cpwVcMplsInboundEntry/cpwVcMplsInboundTunnelPeerLSR",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsInboundTable",
                    "cpwVcMplsInboundEntry",
                    "cpwVcMplsInboundTunnelPeerLSR"
                  ]
                },
                "description": "Retrieve cpwVcMplsInboundTunnelPeerLSR from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsInboundIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsInboundTable/cpwVcMplsInboundEntry/cpwVcMplsInboundIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsInboundTable",
                    "cpwVcMplsInboundEntry",
                    "cpwVcMplsInboundIfIndex"
                  ]
                },
                "description": "Retrieve cpwVcMplsInboundIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsInboundRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsInboundTable/cpwVcMplsInboundEntry/cpwVcMplsInboundRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsInboundTable",
                    "cpwVcMplsInboundEntry",
                    "cpwVcMplsInboundRowStatus"
                  ]
                },
                "description": "Retrieve cpwVcMplsInboundRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsInboundStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsInboundTable/cpwVcMplsInboundEntry/cpwVcMplsInboundStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsInboundTable",
                    "cpwVcMplsInboundEntry",
                    "cpwVcMplsInboundStorageType"
                  ]
                },
                "description": "Retrieve cpwVcMplsInboundStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsNonTeMappingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsNonTeMappingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsNonTeMappingTable"
                  ]
                },
                "description": "Retrieve cpwVcMplsNonTeMappingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsNonTeMappingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsNonTeMappingTable/cpwVcMplsNonTeMappingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsNonTeMappingTable",
                    "cpwVcMplsNonTeMappingEntry"
                  ]
                },
                "description": "Retrieve cpwVcMplsNonTeMappingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsNonTeMappingTunnelDirection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsNonTeMappingTable/cpwVcMplsNonTeMappingEntry/cpwVcMplsNonTeMappingTunnelDirection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsNonTeMappingTable",
                    "cpwVcMplsNonTeMappingEntry",
                    "cpwVcMplsNonTeMappingTunnelDirection"
                  ]
                },
                "description": "Retrieve cpwVcMplsNonTeMappingTunnelDirection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsNonTeMappingXcTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsNonTeMappingTable/cpwVcMplsNonTeMappingEntry/cpwVcMplsNonTeMappingXcTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsNonTeMappingTable",
                    "cpwVcMplsNonTeMappingEntry",
                    "cpwVcMplsNonTeMappingXcTunnelIndex"
                  ]
                },
                "description": "Retrieve cpwVcMplsNonTeMappingXcTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsNonTeMappingIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsNonTeMappingTable/cpwVcMplsNonTeMappingEntry/cpwVcMplsNonTeMappingIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsNonTeMappingTable",
                    "cpwVcMplsNonTeMappingEntry",
                    "cpwVcMplsNonTeMappingIfIndex"
                  ]
                },
                "description": "Retrieve cpwVcMplsNonTeMappingIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsNonTeMappingVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsNonTeMappingTable/cpwVcMplsNonTeMappingEntry/cpwVcMplsNonTeMappingVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsNonTeMappingTable",
                    "cpwVcMplsNonTeMappingEntry",
                    "cpwVcMplsNonTeMappingVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcMplsNonTeMappingVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsTeMappingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTeMappingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTeMappingTable"
                  ]
                },
                "description": "Retrieve cpwVcMplsTeMappingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsTeMappingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTeMappingTable/cpwVcMplsTeMappingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTeMappingTable",
                    "cpwVcMplsTeMappingEntry"
                  ]
                },
                "description": "Retrieve cpwVcMplsTeMappingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsTeMappingTunnelDirection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTeMappingTable/cpwVcMplsTeMappingEntry/cpwVcMplsTeMappingTunnelDirection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTeMappingTable",
                    "cpwVcMplsTeMappingEntry",
                    "cpwVcMplsTeMappingTunnelDirection"
                  ]
                },
                "description": "Retrieve cpwVcMplsTeMappingTunnelDirection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsTeMappingTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTeMappingTable/cpwVcMplsTeMappingEntry/cpwVcMplsTeMappingTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTeMappingTable",
                    "cpwVcMplsTeMappingEntry",
                    "cpwVcMplsTeMappingTunnelIndex"
                  ]
                },
                "description": "Retrieve cpwVcMplsTeMappingTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsTeMappingTunnelInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTeMappingTable/cpwVcMplsTeMappingEntry/cpwVcMplsTeMappingTunnelInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTeMappingTable",
                    "cpwVcMplsTeMappingEntry",
                    "cpwVcMplsTeMappingTunnelInstance"
                  ]
                },
                "description": "Retrieve cpwVcMplsTeMappingTunnelInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsTeMappingTunnelPeerLsrID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTeMappingTable/cpwVcMplsTeMappingEntry/cpwVcMplsTeMappingTunnelPeerLsrID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTeMappingTable",
                    "cpwVcMplsTeMappingEntry",
                    "cpwVcMplsTeMappingTunnelPeerLsrID"
                  ]
                },
                "description": "Retrieve cpwVcMplsTeMappingTunnelPeerLsrID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsTeMappingTunnelLocalLsrID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTeMappingTable/cpwVcMplsTeMappingEntry/cpwVcMplsTeMappingTunnelLocalLsrID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTeMappingTable",
                    "cpwVcMplsTeMappingEntry",
                    "cpwVcMplsTeMappingTunnelLocalLsrID"
                  ]
                },
                "description": "Retrieve cpwVcMplsTeMappingTunnelLocalLsrID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcMplsTeMappingVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB/cpwVcMplsTeMappingTable/cpwVcMplsTeMappingEntry/cpwVcMplsTeMappingVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-MPLS-MIB:CISCO-IETF-PW-MPLS-MIB",
                    "cpwVcMplsTeMappingTable",
                    "cpwVcMplsTeMappingEntry",
                    "cpwVcMplsTeMappingVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcMplsTeMappingVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IETF-PW-TDM-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IETF-PW-TDM-MIB\n\nMIB data from `CISCO-IETF-PW-TDM-MIB` module.\n\n**Root containers:** 1 (CISCO-IETF-PW-TDM-MIB)\n**Paths:** 80 | **Descendants:** 79\n\nAll endpoints are read-only (GET).\n\nEndpoints: 80 | Operations: 80",
          "item": [
            {
              "name": "GET Get CISCO-IETF-PW-TDM-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IETF-PW-TDM-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMObjects"
                  ]
                },
                "description": "Retrieve cpwCTDMObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMObjects/cpwCTDMCfgIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMObjects",
                    "cpwCTDMCfgIndexNext"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMTable"
                  ]
                },
                "description": "Retrieve cpwCTDMTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMTable/cpwCTDMEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMTable",
                    "cpwCTDMEntry"
                  ]
                },
                "description": "Retrieve cpwCTDMEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMTable/cpwCTDMEntry/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMTable",
                    "cpwCTDMEntry",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMTable/cpwCTDMEntry/cpwCTDMRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMTable",
                    "cpwCTDMEntry",
                    "cpwCTDMRate"
                  ]
                },
                "description": "Retrieve cpwCTDMRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMTable/cpwCTDMEntry/cpwCTDMIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMTable",
                    "cpwCTDMEntry",
                    "cpwCTDMIfIndex"
                  ]
                },
                "description": "Retrieve cpwCTDMIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCGenTDMCfgIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMTable/cpwCTDMEntry/cpwCGenTDMCfgIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMTable",
                    "cpwCTDMEntry",
                    "cpwCGenTDMCfgIndex"
                  ]
                },
                "description": "Retrieve cpwCGenTDMCfgIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCRelTDMCfgIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMTable/cpwCTDMEntry/cpwCRelTDMCfgIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMTable",
                    "cpwCTDMEntry",
                    "cpwCRelTDMCfgIndex"
                  ]
                },
                "description": "Retrieve cpwCRelTDMCfgIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMConfigError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMTable/cpwCTDMEntry/cpwCTDMConfigError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMTable",
                    "cpwCTDMEntry",
                    "cpwCTDMConfigError"
                  ]
                },
                "description": "Retrieve cpwCTDMConfigError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMTimeElapsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMTable/cpwCTDMEntry/cpwCTDMTimeElapsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMTable",
                    "cpwCTDMEntry",
                    "cpwCTDMTimeElapsed"
                  ]
                },
                "description": "Retrieve cpwCTDMTimeElapsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMValidIntervals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMTable/cpwCTDMEntry/cpwCTDMValidIntervals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMTable",
                    "cpwCTDMEntry",
                    "cpwCTDMValidIntervals"
                  ]
                },
                "description": "Retrieve cpwCTDMValidIntervals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMValidDayIntervals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMTable/cpwCTDMEntry/cpwCTDMValidDayIntervals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMTable",
                    "cpwCTDMEntry",
                    "cpwCTDMValidDayIntervals"
                  ]
                },
                "description": "Retrieve cpwCTDMValidDayIntervals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCurrentIndications",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMTable/cpwCTDMEntry/cpwCTDMCurrentIndications",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMTable",
                    "cpwCTDMEntry",
                    "cpwCTDMCurrentIndications"
                  ]
                },
                "description": "Retrieve cpwCTDMCurrentIndications from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMLatchedIndications",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMTable/cpwCTDMEntry/cpwCTDMLatchedIndications",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMTable",
                    "cpwCTDMEntry",
                    "cpwCTDMLatchedIndications"
                  ]
                },
                "description": "Retrieve cpwCTDMLatchedIndications from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMLastEsTimeStamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMTable/cpwCTDMEntry/cpwCTDMLastEsTimeStamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMTable",
                    "cpwCTDMEntry",
                    "cpwCTDMLastEsTimeStamp"
                  ]
                },
                "description": "Retrieve cpwCTDMLastEsTimeStamp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgIndex"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgConfErr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgConfErr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgConfErr"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgConfErr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgPayloadSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgPayloadSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgPayloadSize"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgPayloadSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgPktReorder",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgPktReorder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgPktReorder"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgPktReorder from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgRtpHdrUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgRtpHdrUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgRtpHdrUsed"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgRtpHdrUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgJtrBfrDepth",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgJtrBfrDepth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgJtrBfrDepth"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgJtrBfrDepth from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgPayloadSuppression",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgPayloadSuppression",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgPayloadSuppression"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgPayloadSuppression from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgConsecPktsInSynch",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgConsecPktsInSynch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgConsecPktsInSynch"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgConsecPktsInSynch from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgConsecMissPktsOutSynch",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgConsecMissPktsOutSynch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgConsecMissPktsOutSynch"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgConsecMissPktsOutSynch from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgSetUp2SynchTimeOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgSetUp2SynchTimeOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgSetUp2SynchTimeOut"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgSetUp2SynchTimeOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgPktReplacePolicy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgPktReplacePolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgPktReplacePolicy"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgPktReplacePolicy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgAvePktLossTimeWindow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgAvePktLossTimeWindow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgAvePktLossTimeWindow"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgAvePktLossTimeWindow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgExcessivePktLossThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgExcessivePktLossThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgExcessivePktLossThreshold"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgExcessivePktLossThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgAlarmThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgAlarmThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgAlarmThreshold"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgAlarmThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgClearAlarmThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgClearAlarmThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgClearAlarmThreshold"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgClearAlarmThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgMissingPktsToSes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgMissingPktsToSes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgMissingPktsToSes"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgMissingPktsToSes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgTimestampMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgTimestampMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgTimestampMode"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgTimestampMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgStorageType"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMCfgRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMCfgTable/cpwCTDMCfgEntry/cpwCTDMCfgRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMCfgTable",
                    "cpwCTDMCfgEntry",
                    "cpwCTDMCfgRowStatus"
                  ]
                },
                "description": "Retrieve cpwCTDMCfgRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfCurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfCurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfCurrentTable"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfCurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfCurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfCurrentTable/cpwCTDMPerfCurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfCurrentTable",
                    "cpwCTDMPerfCurrentEntry"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfCurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfCurrentTable/cpwCTDMPerfCurrentEntry/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfCurrentTable",
                    "cpwCTDMPerfCurrentEntry",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfCurrentMissingPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfCurrentTable/cpwCTDMPerfCurrentEntry/cpwCTDMPerfCurrentMissingPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfCurrentTable",
                    "cpwCTDMPerfCurrentEntry",
                    "cpwCTDMPerfCurrentMissingPkts"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfCurrentMissingPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfCurrentPktsReOrder",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfCurrentTable/cpwCTDMPerfCurrentEntry/cpwCTDMPerfCurrentPktsReOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfCurrentTable",
                    "cpwCTDMPerfCurrentEntry",
                    "cpwCTDMPerfCurrentPktsReOrder"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfCurrentPktsReOrder from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfCurrentJtrBfrUnderruns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfCurrentTable/cpwCTDMPerfCurrentEntry/cpwCTDMPerfCurrentJtrBfrUnderruns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfCurrentTable",
                    "cpwCTDMPerfCurrentEntry",
                    "cpwCTDMPerfCurrentJtrBfrUnderruns"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfCurrentJtrBfrUnderruns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfCurrentMisOrderDropped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfCurrentTable/cpwCTDMPerfCurrentEntry/cpwCTDMPerfCurrentMisOrderDropped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfCurrentTable",
                    "cpwCTDMPerfCurrentEntry",
                    "cpwCTDMPerfCurrentMisOrderDropped"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfCurrentMisOrderDropped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfCurrentMalformedPkt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfCurrentTable/cpwCTDMPerfCurrentEntry/cpwCTDMPerfCurrentMalformedPkt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfCurrentTable",
                    "cpwCTDMPerfCurrentEntry",
                    "cpwCTDMPerfCurrentMalformedPkt"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfCurrentMalformedPkt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfCurrentESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfCurrentTable/cpwCTDMPerfCurrentEntry/cpwCTDMPerfCurrentESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfCurrentTable",
                    "cpwCTDMPerfCurrentEntry",
                    "cpwCTDMPerfCurrentESs"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfCurrentESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfCurrentSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfCurrentTable/cpwCTDMPerfCurrentEntry/cpwCTDMPerfCurrentSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfCurrentTable",
                    "cpwCTDMPerfCurrentEntry",
                    "cpwCTDMPerfCurrentSESs"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfCurrentSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfCurrentUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfCurrentTable/cpwCTDMPerfCurrentEntry/cpwCTDMPerfCurrentUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfCurrentTable",
                    "cpwCTDMPerfCurrentEntry",
                    "cpwCTDMPerfCurrentUASs"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfCurrentUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfCurrentFC",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfCurrentTable/cpwCTDMPerfCurrentEntry/cpwCTDMPerfCurrentFC",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfCurrentTable",
                    "cpwCTDMPerfCurrentEntry",
                    "cpwCTDMPerfCurrentFC"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfCurrentFC from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfIntervalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfIntervalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfIntervalTable"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfIntervalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfIntervalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfIntervalTable/cpwCTDMPerfIntervalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfIntervalTable",
                    "cpwCTDMPerfIntervalEntry"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfIntervalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfIntervalTable/cpwCTDMPerfIntervalEntry/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfIntervalTable",
                    "cpwCTDMPerfIntervalEntry",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfIntervalNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfIntervalTable/cpwCTDMPerfIntervalEntry/cpwCTDMPerfIntervalNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfIntervalTable",
                    "cpwCTDMPerfIntervalEntry",
                    "cpwCTDMPerfIntervalNumber"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfIntervalNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfIntervalValidData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfIntervalTable/cpwCTDMPerfIntervalEntry/cpwCTDMPerfIntervalValidData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfIntervalTable",
                    "cpwCTDMPerfIntervalEntry",
                    "cpwCTDMPerfIntervalValidData"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfIntervalValidData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfIntervalDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfIntervalTable/cpwCTDMPerfIntervalEntry/cpwCTDMPerfIntervalDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfIntervalTable",
                    "cpwCTDMPerfIntervalEntry",
                    "cpwCTDMPerfIntervalDuration"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfIntervalDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfIntervalMissingPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfIntervalTable/cpwCTDMPerfIntervalEntry/cpwCTDMPerfIntervalMissingPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfIntervalTable",
                    "cpwCTDMPerfIntervalEntry",
                    "cpwCTDMPerfIntervalMissingPkts"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfIntervalMissingPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfIntervalPktsReOrder",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfIntervalTable/cpwCTDMPerfIntervalEntry/cpwCTDMPerfIntervalPktsReOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfIntervalTable",
                    "cpwCTDMPerfIntervalEntry",
                    "cpwCTDMPerfIntervalPktsReOrder"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfIntervalPktsReOrder from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfIntervalJtrBfrUnderruns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfIntervalTable/cpwCTDMPerfIntervalEntry/cpwCTDMPerfIntervalJtrBfrUnderruns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfIntervalTable",
                    "cpwCTDMPerfIntervalEntry",
                    "cpwCTDMPerfIntervalJtrBfrUnderruns"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfIntervalJtrBfrUnderruns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfIntervalMisOrderDropped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfIntervalTable/cpwCTDMPerfIntervalEntry/cpwCTDMPerfIntervalMisOrderDropped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfIntervalTable",
                    "cpwCTDMPerfIntervalEntry",
                    "cpwCTDMPerfIntervalMisOrderDropped"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfIntervalMisOrderDropped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfIntervalMalformedPkt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfIntervalTable/cpwCTDMPerfIntervalEntry/cpwCTDMPerfIntervalMalformedPkt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfIntervalTable",
                    "cpwCTDMPerfIntervalEntry",
                    "cpwCTDMPerfIntervalMalformedPkt"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfIntervalMalformedPkt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfIntervalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfIntervalTable/cpwCTDMPerfIntervalEntry/cpwCTDMPerfIntervalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfIntervalTable",
                    "cpwCTDMPerfIntervalEntry",
                    "cpwCTDMPerfIntervalESs"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfIntervalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfIntervalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfIntervalTable/cpwCTDMPerfIntervalEntry/cpwCTDMPerfIntervalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfIntervalTable",
                    "cpwCTDMPerfIntervalEntry",
                    "cpwCTDMPerfIntervalSESs"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfIntervalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfIntervalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfIntervalTable/cpwCTDMPerfIntervalEntry/cpwCTDMPerfIntervalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfIntervalTable",
                    "cpwCTDMPerfIntervalEntry",
                    "cpwCTDMPerfIntervalUASs"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfIntervalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerfIntervalFC",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerfIntervalTable/cpwCTDMPerfIntervalEntry/cpwCTDMPerfIntervalFC",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerfIntervalTable",
                    "cpwCTDMPerfIntervalEntry",
                    "cpwCTDMPerfIntervalFC"
                  ]
                },
                "description": "Retrieve cpwCTDMPerfIntervalFC from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerf1DayIntervalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerf1DayIntervalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerf1DayIntervalTable"
                  ]
                },
                "description": "Retrieve cpwCTDMPerf1DayIntervalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerf1DayIntervalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerf1DayIntervalTable/cpwCTDMPerf1DayIntervalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerf1DayIntervalTable",
                    "cpwCTDMPerf1DayIntervalEntry"
                  ]
                },
                "description": "Retrieve cpwCTDMPerf1DayIntervalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwVcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerf1DayIntervalTable/cpwCTDMPerf1DayIntervalEntry/cpwVcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerf1DayIntervalTable",
                    "cpwCTDMPerf1DayIntervalEntry",
                    "cpwVcIndex"
                  ]
                },
                "description": "Retrieve cpwVcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerf1DayIntervalNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerf1DayIntervalTable/cpwCTDMPerf1DayIntervalEntry/cpwCTDMPerf1DayIntervalNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerf1DayIntervalTable",
                    "cpwCTDMPerf1DayIntervalEntry",
                    "cpwCTDMPerf1DayIntervalNumber"
                  ]
                },
                "description": "Retrieve cpwCTDMPerf1DayIntervalNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerf1DayIntervalValidData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerf1DayIntervalTable/cpwCTDMPerf1DayIntervalEntry/cpwCTDMPerf1DayIntervalValidData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerf1DayIntervalTable",
                    "cpwCTDMPerf1DayIntervalEntry",
                    "cpwCTDMPerf1DayIntervalValidData"
                  ]
                },
                "description": "Retrieve cpwCTDMPerf1DayIntervalValidData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerf1DayIntervalDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerf1DayIntervalTable/cpwCTDMPerf1DayIntervalEntry/cpwCTDMPerf1DayIntervalDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerf1DayIntervalTable",
                    "cpwCTDMPerf1DayIntervalEntry",
                    "cpwCTDMPerf1DayIntervalDuration"
                  ]
                },
                "description": "Retrieve cpwCTDMPerf1DayIntervalDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerf1DayIntervalMissingPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerf1DayIntervalTable/cpwCTDMPerf1DayIntervalEntry/cpwCTDMPerf1DayIntervalMissingPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerf1DayIntervalTable",
                    "cpwCTDMPerf1DayIntervalEntry",
                    "cpwCTDMPerf1DayIntervalMissingPkts"
                  ]
                },
                "description": "Retrieve cpwCTDMPerf1DayIntervalMissingPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerf1DayIntervalPktsReOrder",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerf1DayIntervalTable/cpwCTDMPerf1DayIntervalEntry/cpwCTDMPerf1DayIntervalPktsReOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerf1DayIntervalTable",
                    "cpwCTDMPerf1DayIntervalEntry",
                    "cpwCTDMPerf1DayIntervalPktsReOrder"
                  ]
                },
                "description": "Retrieve cpwCTDMPerf1DayIntervalPktsReOrder from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerf1DayIntervalJtrBfrUnderruns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerf1DayIntervalTable/cpwCTDMPerf1DayIntervalEntry/cpwCTDMPerf1DayIntervalJtrBfrUnderruns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerf1DayIntervalTable",
                    "cpwCTDMPerf1DayIntervalEntry",
                    "cpwCTDMPerf1DayIntervalJtrBfrUnderruns"
                  ]
                },
                "description": "Retrieve cpwCTDMPerf1DayIntervalJtrBfrUnderruns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerf1DayIntervalMisOrderDropped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerf1DayIntervalTable/cpwCTDMPerf1DayIntervalEntry/cpwCTDMPerf1DayIntervalMisOrderDropped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerf1DayIntervalTable",
                    "cpwCTDMPerf1DayIntervalEntry",
                    "cpwCTDMPerf1DayIntervalMisOrderDropped"
                  ]
                },
                "description": "Retrieve cpwCTDMPerf1DayIntervalMisOrderDropped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerf1DayIntervalMalformedPkt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerf1DayIntervalTable/cpwCTDMPerf1DayIntervalEntry/cpwCTDMPerf1DayIntervalMalformedPkt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerf1DayIntervalTable",
                    "cpwCTDMPerf1DayIntervalEntry",
                    "cpwCTDMPerf1DayIntervalMalformedPkt"
                  ]
                },
                "description": "Retrieve cpwCTDMPerf1DayIntervalMalformedPkt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerf1DayIntervalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerf1DayIntervalTable/cpwCTDMPerf1DayIntervalEntry/cpwCTDMPerf1DayIntervalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerf1DayIntervalTable",
                    "cpwCTDMPerf1DayIntervalEntry",
                    "cpwCTDMPerf1DayIntervalESs"
                  ]
                },
                "description": "Retrieve cpwCTDMPerf1DayIntervalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerf1DayIntervalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerf1DayIntervalTable/cpwCTDMPerf1DayIntervalEntry/cpwCTDMPerf1DayIntervalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerf1DayIntervalTable",
                    "cpwCTDMPerf1DayIntervalEntry",
                    "cpwCTDMPerf1DayIntervalSESs"
                  ]
                },
                "description": "Retrieve cpwCTDMPerf1DayIntervalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerf1DayIntervalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerf1DayIntervalTable/cpwCTDMPerf1DayIntervalEntry/cpwCTDMPerf1DayIntervalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerf1DayIntervalTable",
                    "cpwCTDMPerf1DayIntervalEntry",
                    "cpwCTDMPerf1DayIntervalUASs"
                  ]
                },
                "description": "Retrieve cpwCTDMPerf1DayIntervalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpwCTDMPerf1DayIntervalFC",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB/cpwCTDMPerf1DayIntervalTable/cpwCTDMPerf1DayIntervalEntry/cpwCTDMPerf1DayIntervalFC",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IETF-PW-TDM-MIB:CISCO-IETF-PW-TDM-MIB",
                    "cpwCTDMPerf1DayIntervalTable",
                    "cpwCTDMPerf1DayIntervalEntry",
                    "cpwCTDMPerf1DayIntervalFC"
                  ]
                },
                "description": "Retrieve cpwCTDMPerf1DayIntervalFC from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IF-EXTENSION-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IF-EXTENSION-MIB\n\nMIB data from `CISCO-IF-EXTENSION-MIB` module.\n\n**Root containers:** 1 (CISCO-IF-EXTENSION-MIB)\n**Paths:** 107 | **Descendants:** 130\n\nAll endpoints are read-only (GET).\n\nEndpoints: 107 | Operations: 107",
          "item": [
            {
              "name": "GET Get CISCO-IF-EXTENSION-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IF-EXTENSION-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIfExtSystemConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/ciscoIfExtSystemConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "ciscoIfExtSystemConfig"
                  ]
                },
                "description": "Retrieve ciscoIfExtSystemConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieSystemMtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/ciscoIfExtSystemConfig/cieSystemMtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "ciscoIfExtSystemConfig",
                    "cieSystemMtu"
                  ]
                },
                "description": "Retrieve cieSystemMtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieDelayedLinkUpDownNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/ciscoIfExtSystemConfig/cieDelayedLinkUpDownNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "ciscoIfExtSystemConfig",
                    "cieDelayedLinkUpDownNotifEnable"
                  ]
                },
                "description": "Retrieve cieDelayedLinkUpDownNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieDelayedLinkUpDownNotifDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/ciscoIfExtSystemConfig/cieDelayedLinkUpDownNotifDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "ciscoIfExtSystemConfig",
                    "cieDelayedLinkUpDownNotifDelay"
                  ]
                },
                "description": "Retrieve cieDelayedLinkUpDownNotifDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfIndexGlobalPersistence",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/ciscoIfExtSystemConfig/cieIfIndexGlobalPersistence",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "ciscoIfExtSystemConfig",
                    "cieIfIndexGlobalPersistence"
                  ]
                },
                "description": "Retrieve cieIfIndexGlobalPersistence from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieLinkUpDownConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/ciscoIfExtSystemConfig/cieLinkUpDownConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "ciscoIfExtSystemConfig",
                    "cieLinkUpDownConfig"
                  ]
                },
                "description": "Retrieve cieLinkUpDownConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfPacketStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfPacketStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfPacketStatsTable"
                  ]
                },
                "description": "Retrieve cieIfPacketStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfPacketStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfPacketStatsTable/cieIfPacketStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfPacketStatsTable",
                    "cieIfPacketStatsEntry"
                  ]
                },
                "description": "Retrieve cieIfPacketStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfPacketStatsTable/cieIfPacketStatsEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfPacketStatsTable",
                    "cieIfPacketStatsEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfLastInTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfPacketStatsTable/cieIfPacketStatsEntry/cieIfLastInTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfPacketStatsTable",
                    "cieIfPacketStatsEntry",
                    "cieIfLastInTime"
                  ]
                },
                "description": "Retrieve cieIfLastInTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfLastOutTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfPacketStatsTable/cieIfPacketStatsEntry/cieIfLastOutTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfPacketStatsTable",
                    "cieIfPacketStatsEntry",
                    "cieIfLastOutTime"
                  ]
                },
                "description": "Retrieve cieIfLastOutTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfLastOutHangTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfPacketStatsTable/cieIfPacketStatsEntry/cieIfLastOutHangTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfPacketStatsTable",
                    "cieIfPacketStatsEntry",
                    "cieIfLastOutHangTime"
                  ]
                },
                "description": "Retrieve cieIfLastOutHangTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfInRuntsErrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfPacketStatsTable/cieIfPacketStatsEntry/cieIfInRuntsErrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfPacketStatsTable",
                    "cieIfPacketStatsEntry",
                    "cieIfInRuntsErrs"
                  ]
                },
                "description": "Retrieve cieIfInRuntsErrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfInGiantsErrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfPacketStatsTable/cieIfPacketStatsEntry/cieIfInGiantsErrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfPacketStatsTable",
                    "cieIfPacketStatsEntry",
                    "cieIfInGiantsErrs"
                  ]
                },
                "description": "Retrieve cieIfInGiantsErrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfInFramingErrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfPacketStatsTable/cieIfPacketStatsEntry/cieIfInFramingErrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfPacketStatsTable",
                    "cieIfPacketStatsEntry",
                    "cieIfInFramingErrs"
                  ]
                },
                "description": "Retrieve cieIfInFramingErrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfInOverrunErrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfPacketStatsTable/cieIfPacketStatsEntry/cieIfInOverrunErrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfPacketStatsTable",
                    "cieIfPacketStatsEntry",
                    "cieIfInOverrunErrs"
                  ]
                },
                "description": "Retrieve cieIfInOverrunErrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfInIgnored",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfPacketStatsTable/cieIfPacketStatsEntry/cieIfInIgnored",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfPacketStatsTable",
                    "cieIfPacketStatsEntry",
                    "cieIfInIgnored"
                  ]
                },
                "description": "Retrieve cieIfInIgnored from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfInAbortErrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfPacketStatsTable/cieIfPacketStatsEntry/cieIfInAbortErrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfPacketStatsTable",
                    "cieIfPacketStatsEntry",
                    "cieIfInAbortErrs"
                  ]
                },
                "description": "Retrieve cieIfInAbortErrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfInputQueueDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfPacketStatsTable/cieIfPacketStatsEntry/cieIfInputQueueDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfPacketStatsTable",
                    "cieIfPacketStatsEntry",
                    "cieIfInputQueueDrops"
                  ]
                },
                "description": "Retrieve cieIfInputQueueDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfOutputQueueDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfPacketStatsTable/cieIfPacketStatsEntry/cieIfOutputQueueDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfPacketStatsTable",
                    "cieIfPacketStatsEntry",
                    "cieIfOutputQueueDrops"
                  ]
                },
                "description": "Retrieve cieIfOutputQueueDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfPacketDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfPacketStatsTable/cieIfPacketStatsEntry/cieIfPacketDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfPacketStatsTable",
                    "cieIfPacketStatsEntry",
                    "cieIfPacketDiscontinuityTime"
                  ]
                },
                "description": "Retrieve cieIfPacketDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfInterfaceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable"
                  ]
                },
                "description": "Retrieve cieIfInterfaceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfInterfaceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry"
                  ]
                },
                "description": "Retrieve cieIfInterfaceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfResetCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfResetCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfResetCount"
                  ]
                },
                "description": "Retrieve cieIfResetCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfKeepAliveEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfKeepAliveEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfKeepAliveEnabled"
                  ]
                },
                "description": "Retrieve cieIfKeepAliveEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfStateChangeReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfStateChangeReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfStateChangeReason"
                  ]
                },
                "description": "Retrieve cieIfStateChangeReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfCarrierTransitionCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfCarrierTransitionCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfCarrierTransitionCount"
                  ]
                },
                "description": "Retrieve cieIfCarrierTransitionCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfInterfaceDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfInterfaceDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfInterfaceDiscontinuityTime"
                  ]
                },
                "description": "Retrieve cieIfInterfaceDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfDhcpMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfDhcpMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfDhcpMode"
                  ]
                },
                "description": "Retrieve cieIfDhcpMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfMtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfMtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfMtu"
                  ]
                },
                "description": "Retrieve cieIfMtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfContextName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfContextName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfContextName"
                  ]
                },
                "description": "Retrieve cieIfContextName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfOperStatusCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfOperStatusCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfOperStatusCause"
                  ]
                },
                "description": "Retrieve cieIfOperStatusCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfOperStatusCauseDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfOperStatusCauseDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfOperStatusCauseDescr"
                  ]
                },
                "description": "Retrieve cieIfOperStatusCauseDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfSpeedReceive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfSpeedReceive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfSpeedReceive"
                  ]
                },
                "description": "Retrieve cieIfSpeedReceive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfHighSpeedReceive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfHighSpeedReceive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfHighSpeedReceive"
                  ]
                },
                "description": "Retrieve cieIfHighSpeedReceive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfOwner"
                  ]
                },
                "description": "Retrieve cieIfOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfSharedConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfSharedConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfSharedConfig"
                  ]
                },
                "description": "Retrieve cieIfSharedConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfSpeedGroupConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfSpeedGroupConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfSpeedGroupConfig"
                  ]
                },
                "description": "Retrieve cieIfSpeedGroupConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfTransceiverFrequencyConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfTransceiverFrequencyConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfTransceiverFrequencyConfig"
                  ]
                },
                "description": "Retrieve cieIfTransceiverFrequencyConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfFillPatternConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfFillPatternConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfFillPatternConfig"
                  ]
                },
                "description": "Retrieve cieIfFillPatternConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfIgnoreBitErrorsConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfIgnoreBitErrorsConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfIgnoreBitErrorsConfig"
                  ]
                },
                "description": "Retrieve cieIfIgnoreBitErrorsConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfIgnoreInterruptThresholdConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfInterfaceTable/cieIfInterfaceEntry/cieIfIgnoreInterruptThresholdConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfInterfaceTable",
                    "cieIfInterfaceEntry",
                    "cieIfIgnoreInterruptThresholdConfig"
                  ]
                },
                "description": "Retrieve cieIfIgnoreInterruptThresholdConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfStatusListTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfStatusListTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfStatusListTable"
                  ]
                },
                "description": "Retrieve cieIfStatusListTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfStatusListEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfStatusListTable/cieIfStatusListEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfStatusListTable",
                    "cieIfStatusListEntry"
                  ]
                },
                "description": "Retrieve cieIfStatusListEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfStatusListTable/cieIfStatusListEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfStatusListTable",
                    "cieIfStatusListEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfStatusListIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfStatusListTable/cieIfStatusListEntry/cieIfStatusListIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfStatusListTable",
                    "cieIfStatusListEntry",
                    "cieIfStatusListIndex"
                  ]
                },
                "description": "Retrieve cieIfStatusListIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieInterfacesIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfStatusListTable/cieIfStatusListEntry/cieInterfacesIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfStatusListTable",
                    "cieIfStatusListEntry",
                    "cieInterfacesIndex"
                  ]
                },
                "description": "Retrieve cieInterfacesIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieInterfacesOperMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfStatusListTable/cieIfStatusListEntry/cieInterfacesOperMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfStatusListTable",
                    "cieIfStatusListEntry",
                    "cieInterfacesOperMode"
                  ]
                },
                "description": "Retrieve cieInterfacesOperMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieInterfacesOperCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfStatusListTable/cieIfStatusListEntry/cieInterfacesOperCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfStatusListTable",
                    "cieIfStatusListEntry",
                    "cieInterfacesOperCause"
                  ]
                },
                "description": "Retrieve cieInterfacesOperCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieInterfaceOwnershipBitmap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfStatusListTable/cieIfStatusListEntry/cieInterfaceOwnershipBitmap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfStatusListTable",
                    "cieIfStatusListEntry",
                    "cieInterfaceOwnershipBitmap"
                  ]
                },
                "description": "Retrieve cieInterfaceOwnershipBitmap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfVlStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfVlStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfVlStatsTable"
                  ]
                },
                "description": "Retrieve cieIfVlStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfVlStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfVlStatsTable/cieIfVlStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfVlStatsTable",
                    "cieIfVlStatsEntry"
                  ]
                },
                "description": "Retrieve cieIfVlStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfVlStatsTable/cieIfVlStatsEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfVlStatsTable",
                    "cieIfVlStatsEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfNoDropVlInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfVlStatsTable/cieIfVlStatsEntry/cieIfNoDropVlInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfVlStatsTable",
                    "cieIfVlStatsEntry",
                    "cieIfNoDropVlInPkts"
                  ]
                },
                "description": "Retrieve cieIfNoDropVlInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfNoDropVlInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfVlStatsTable/cieIfVlStatsEntry/cieIfNoDropVlInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfVlStatsTable",
                    "cieIfVlStatsEntry",
                    "cieIfNoDropVlInOctets"
                  ]
                },
                "description": "Retrieve cieIfNoDropVlInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfNoDropVlOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfVlStatsTable/cieIfVlStatsEntry/cieIfNoDropVlOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfVlStatsTable",
                    "cieIfVlStatsEntry",
                    "cieIfNoDropVlOutPkts"
                  ]
                },
                "description": "Retrieve cieIfNoDropVlOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfNoDropVlOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfVlStatsTable/cieIfVlStatsEntry/cieIfNoDropVlOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfVlStatsTable",
                    "cieIfVlStatsEntry",
                    "cieIfNoDropVlOutOctets"
                  ]
                },
                "description": "Retrieve cieIfNoDropVlOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfDropVlInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfVlStatsTable/cieIfVlStatsEntry/cieIfDropVlInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfVlStatsTable",
                    "cieIfVlStatsEntry",
                    "cieIfDropVlInPkts"
                  ]
                },
                "description": "Retrieve cieIfDropVlInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfDropVlInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfVlStatsTable/cieIfVlStatsEntry/cieIfDropVlInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfVlStatsTable",
                    "cieIfVlStatsEntry",
                    "cieIfDropVlInOctets"
                  ]
                },
                "description": "Retrieve cieIfDropVlInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfDropVlOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfVlStatsTable/cieIfVlStatsEntry/cieIfDropVlOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfVlStatsTable",
                    "cieIfVlStatsEntry",
                    "cieIfDropVlOutPkts"
                  ]
                },
                "description": "Retrieve cieIfDropVlOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfDropVlOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfVlStatsTable/cieIfVlStatsEntry/cieIfDropVlOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfVlStatsTable",
                    "cieIfVlStatsEntry",
                    "cieIfDropVlOutOctets"
                  ]
                },
                "description": "Retrieve cieIfDropVlOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfIndexPersistenceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfIndexPersistenceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfIndexPersistenceTable"
                  ]
                },
                "description": "Retrieve cieIfIndexPersistenceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfIndexPersistenceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfIndexPersistenceTable/cieIfIndexPersistenceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfIndexPersistenceTable",
                    "cieIfIndexPersistenceEntry"
                  ]
                },
                "description": "Retrieve cieIfIndexPersistenceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfIndexPersistenceTable/cieIfIndexPersistenceEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfIndexPersistenceTable",
                    "cieIfIndexPersistenceEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfIndexPersistenceControl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfIndexPersistenceTable/cieIfIndexPersistenceEntry/cieIfIndexPersistenceControl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfIndexPersistenceTable",
                    "cieIfIndexPersistenceEntry",
                    "cieIfIndexPersistenceControl"
                  ]
                },
                "description": "Retrieve cieIfIndexPersistenceControl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfDot1qCustomEtherTypeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfDot1qCustomEtherTypeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfDot1qCustomEtherTypeTable"
                  ]
                },
                "description": "Retrieve cieIfDot1qCustomEtherTypeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfDot1qCustomEtherTypeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfDot1qCustomEtherTypeTable/cieIfDot1qCustomEtherTypeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfDot1qCustomEtherTypeTable",
                    "cieIfDot1qCustomEtherTypeEntry"
                  ]
                },
                "description": "Retrieve cieIfDot1qCustomEtherTypeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfDot1qCustomEtherTypeTable/cieIfDot1qCustomEtherTypeEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfDot1qCustomEtherTypeTable",
                    "cieIfDot1qCustomEtherTypeEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfDot1qCustomAdminEtherType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfDot1qCustomEtherTypeTable/cieIfDot1qCustomEtherTypeEntry/cieIfDot1qCustomAdminEtherType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfDot1qCustomEtherTypeTable",
                    "cieIfDot1qCustomEtherTypeEntry",
                    "cieIfDot1qCustomAdminEtherType"
                  ]
                },
                "description": "Retrieve cieIfDot1qCustomAdminEtherType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfDot1qCustomOperEtherType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfDot1qCustomEtherTypeTable/cieIfDot1qCustomEtherTypeEntry/cieIfDot1qCustomOperEtherType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfDot1qCustomEtherTypeTable",
                    "cieIfDot1qCustomEtherTypeEntry",
                    "cieIfDot1qCustomOperEtherType"
                  ]
                },
                "description": "Retrieve cieIfDot1qCustomOperEtherType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfUtilTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfUtilTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfUtilTable"
                  ]
                },
                "description": "Retrieve cieIfUtilTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfUtilEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfUtilTable/cieIfUtilEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfUtilTable",
                    "cieIfUtilEntry"
                  ]
                },
                "description": "Retrieve cieIfUtilEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfUtilTable/cieIfUtilEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfUtilTable",
                    "cieIfUtilEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfInPktRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfUtilTable/cieIfUtilEntry/cieIfInPktRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfUtilTable",
                    "cieIfUtilEntry",
                    "cieIfInPktRate"
                  ]
                },
                "description": "Retrieve cieIfInPktRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfInOctetRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfUtilTable/cieIfUtilEntry/cieIfInOctetRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfUtilTable",
                    "cieIfUtilEntry",
                    "cieIfInOctetRate"
                  ]
                },
                "description": "Retrieve cieIfInOctetRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfOutPktRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfUtilTable/cieIfUtilEntry/cieIfOutPktRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfUtilTable",
                    "cieIfUtilEntry",
                    "cieIfOutPktRate"
                  ]
                },
                "description": "Retrieve cieIfOutPktRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfOutOctetRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfUtilTable/cieIfUtilEntry/cieIfOutOctetRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfUtilTable",
                    "cieIfUtilEntry",
                    "cieIfOutOctetRate"
                  ]
                },
                "description": "Retrieve cieIfOutOctetRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfUtilTable/cieIfUtilEntry/cieIfInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfUtilTable",
                    "cieIfUtilEntry",
                    "cieIfInterval"
                  ]
                },
                "description": "Retrieve cieIfInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfDot1dBaseMappingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfDot1dBaseMappingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfDot1dBaseMappingTable"
                  ]
                },
                "description": "Retrieve cieIfDot1dBaseMappingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfDot1dBaseMappingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfDot1dBaseMappingTable/cieIfDot1dBaseMappingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfDot1dBaseMappingTable",
                    "cieIfDot1dBaseMappingEntry"
                  ]
                },
                "description": "Retrieve cieIfDot1dBaseMappingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfDot1dBaseMappingTable/cieIfDot1dBaseMappingEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfDot1dBaseMappingTable",
                    "cieIfDot1dBaseMappingEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfDot1dBaseMappingPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfDot1dBaseMappingTable/cieIfDot1dBaseMappingEntry/cieIfDot1dBaseMappingPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfDot1dBaseMappingTable",
                    "cieIfDot1dBaseMappingEntry",
                    "cieIfDot1dBaseMappingPort"
                  ]
                },
                "description": "Retrieve cieIfDot1dBaseMappingPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfNameMappingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable"
                  ]
                },
                "description": "Retrieve cieIfNameMappingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfNameMappingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/cieIfNameMappingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "cieIfNameMappingEntry"
                  ]
                },
                "description": "Retrieve cieIfNameMappingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/cieIfNameMappingEntry/cieIfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "cieIfNameMappingEntry",
                    "cieIfName"
                  ]
                },
                "description": "Retrieve cieIfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/cieIfNameMappingEntry/cieIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "cieIfNameMappingEntry",
                    "cieIfIndex"
                  ]
                },
                "description": "Retrieve cieIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-1/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-1",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-2/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-2",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-2/ifAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-2",
                    "ifAdminStatus"
                  ]
                },
                "description": "Retrieve ifAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-3/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-3",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-3/ifOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-3",
                    "ifOperStatus"
                  ]
                },
                "description": "Retrieve ifOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-4/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-4",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-4/ifName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-4",
                    "ifName"
                  ]
                },
                "description": "Retrieve ifName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-5/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-5",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-5/ifType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-5",
                    "ifType"
                  ]
                },
                "description": "Retrieve ifType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-1/ifAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-1",
                    "ifAdminStatus"
                  ]
                },
                "description": "Retrieve ifAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-2/ifOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-2",
                    "ifOperStatus"
                  ]
                },
                "description": "Retrieve ifOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-3/ifName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-3",
                    "ifName"
                  ]
                },
                "description": "Retrieve ifName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-4/ifType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-4",
                    "ifType"
                  ]
                },
                "description": "Retrieve ifType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cieIfOperStatusCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB/cieIfNameMappingTable/object-5/cieIfOperStatusCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IF-EXTENSION-MIB:CISCO-IF-EXTENSION-MIB",
                    "cieIfNameMappingTable",
                    "object-5",
                    "cieIfOperStatusCause"
                  ]
                },
                "description": "Retrieve cieIfOperStatusCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IGMP-FILTER-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IGMP-FILTER-MIB\n\nMIB data from `CISCO-IGMP-FILTER-MIB` module.\n\n**Root containers:** 1 (CISCO-IGMP-FILTER-MIB)\n**Paths:** 26 | **Descendants:** 25\n\nAll endpoints are read-only (GET).\n\nEndpoints: 26 | Operations: 26",
          "item": [
            {
              "name": "GET Get CISCO-IGMP-FILTER-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IGMP-FILTER-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterGeneral",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterGeneral",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterGeneral"
                  ]
                },
                "description": "Retrieve cIgmpFilterGeneral from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterGeneral/cIgmpFilterEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterGeneral",
                    "cIgmpFilterEnable"
                  ]
                },
                "description": "Retrieve cIgmpFilterEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterMaxProfiles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterGeneral/cIgmpFilterMaxProfiles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterGeneral",
                    "cIgmpFilterMaxProfiles"
                  ]
                },
                "description": "Retrieve cIgmpFilterMaxProfiles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterEditor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterEditor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterEditor"
                  ]
                },
                "description": "Retrieve cIgmpFilterEditor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterEditSpinLock",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterEditor/cIgmpFilterEditSpinLock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterEditor",
                    "cIgmpFilterEditSpinLock"
                  ]
                },
                "description": "Retrieve cIgmpFilterEditSpinLock from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterEditProfileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterEditor/cIgmpFilterEditProfileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterEditor",
                    "cIgmpFilterEditProfileIndex"
                  ]
                },
                "description": "Retrieve cIgmpFilterEditProfileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterEditStartAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterEditor/cIgmpFilterEditStartAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterEditor",
                    "cIgmpFilterEditStartAddressType"
                  ]
                },
                "description": "Retrieve cIgmpFilterEditStartAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterEditStartAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterEditor/cIgmpFilterEditStartAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterEditor",
                    "cIgmpFilterEditStartAddress"
                  ]
                },
                "description": "Retrieve cIgmpFilterEditStartAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterEditEndAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterEditor/cIgmpFilterEditEndAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterEditor",
                    "cIgmpFilterEditEndAddressType"
                  ]
                },
                "description": "Retrieve cIgmpFilterEditEndAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterEditEndAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterEditor/cIgmpFilterEditEndAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterEditor",
                    "cIgmpFilterEditEndAddress"
                  ]
                },
                "description": "Retrieve cIgmpFilterEditEndAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterEditProfileAction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterEditor/cIgmpFilterEditProfileAction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterEditor",
                    "cIgmpFilterEditProfileAction"
                  ]
                },
                "description": "Retrieve cIgmpFilterEditProfileAction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterEditOperation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterEditor/cIgmpFilterEditOperation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterEditor",
                    "cIgmpFilterEditOperation"
                  ]
                },
                "description": "Retrieve cIgmpFilterEditOperation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterApplyStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterEditor/cIgmpFilterApplyStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterEditor",
                    "cIgmpFilterApplyStatus"
                  ]
                },
                "description": "Retrieve cIgmpFilterApplyStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterTable"
                  ]
                },
                "description": "Retrieve cIgmpFilterTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterTable/cIgmpFilterEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterTable",
                    "cIgmpFilterEntry"
                  ]
                },
                "description": "Retrieve cIgmpFilterEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterProfileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterTable/cIgmpFilterEntry/cIgmpFilterProfileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterTable",
                    "cIgmpFilterEntry",
                    "cIgmpFilterProfileIndex"
                  ]
                },
                "description": "Retrieve cIgmpFilterProfileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterStartAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterTable/cIgmpFilterEntry/cIgmpFilterStartAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterTable",
                    "cIgmpFilterEntry",
                    "cIgmpFilterStartAddressType"
                  ]
                },
                "description": "Retrieve cIgmpFilterStartAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterStartAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterTable/cIgmpFilterEntry/cIgmpFilterStartAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterTable",
                    "cIgmpFilterEntry",
                    "cIgmpFilterStartAddress"
                  ]
                },
                "description": "Retrieve cIgmpFilterStartAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterEndAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterTable/cIgmpFilterEntry/cIgmpFilterEndAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterTable",
                    "cIgmpFilterEntry",
                    "cIgmpFilterEndAddressType"
                  ]
                },
                "description": "Retrieve cIgmpFilterEndAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterEndAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterTable/cIgmpFilterEntry/cIgmpFilterEndAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterTable",
                    "cIgmpFilterEntry",
                    "cIgmpFilterEndAddress"
                  ]
                },
                "description": "Retrieve cIgmpFilterEndAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterProfileAction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterTable/cIgmpFilterEntry/cIgmpFilterProfileAction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterTable",
                    "cIgmpFilterEntry",
                    "cIgmpFilterProfileAction"
                  ]
                },
                "description": "Retrieve cIgmpFilterProfileAction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterInterfaceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterInterfaceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterInterfaceTable"
                  ]
                },
                "description": "Retrieve cIgmpFilterInterfaceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterInterfaceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterInterfaceTable/cIgmpFilterInterfaceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterInterfaceTable",
                    "cIgmpFilterInterfaceEntry"
                  ]
                },
                "description": "Retrieve cIgmpFilterInterfaceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterInterfaceTable/cIgmpFilterInterfaceEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterInterfaceTable",
                    "cIgmpFilterInterfaceEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIgmpFilterInterfaceProfileIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB/cIgmpFilterInterfaceTable/cIgmpFilterInterfaceEntry/cIgmpFilterInterfaceProfileIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IGMP-FILTER-MIB:CISCO-IGMP-FILTER-MIB",
                    "cIgmpFilterInterfaceTable",
                    "cIgmpFilterInterfaceEntry",
                    "cIgmpFilterInterfaceProfileIndex"
                  ]
                },
                "description": "Retrieve cIgmpFilterInterfaceProfileIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IMAGE-LICENSE-MGMT-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IMAGE-LICENSE-MGMT-MIB\n\nMIB data from `CISCO-IMAGE-LICENSE-MGMT-MIB` module.\n\n**Root containers:** 1 (CISCO-IMAGE-LICENSE-MGMT-MIB)\n**Paths:** 32 | **Descendants:** 31\n\nAll endpoints are read-only (GET).\n\nEndpoints: 32 | Operations: 32",
          "item": [
            {
              "name": "GET Get CISCO-IMAGE-LICENSE-MGMT-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IMAGE-LICENSE-MGMT-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoImageLicenseMgmtMIBObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/ciscoImageLicenseMgmtMIBObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "ciscoImageLicenseMgmtMIBObjects"
                  ]
                },
                "description": "Retrieve ciscoImageLicenseMgmtMIBObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmEULAAccepted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/ciscoImageLicenseMgmtMIBObjects/cilmEULAAccepted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "ciscoImageLicenseMgmtMIBObjects",
                    "cilmEULAAccepted"
                  ]
                },
                "description": "Retrieve cilmEULAAccepted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmNotifCntl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmNotifCntl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmNotifCntl"
                  ]
                },
                "description": "Retrieve cilmNotifCntl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmImageLevelChangedNotif",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmNotifCntl/cilmImageLevelChangedNotif",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmNotifCntl",
                    "cilmImageLevelChangedNotif"
                  ]
                },
                "description": "Retrieve cilmImageLevelChangedNotif from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmBootImageLevelTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmBootImageLevelTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmBootImageLevelTable"
                  ]
                },
                "description": "Retrieve cilmBootImageLevelTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmBootImageLevelEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmBootImageLevelTable/cilmBootImageLevelEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmBootImageLevelTable",
                    "cilmBootImageLevelEntry"
                  ]
                },
                "description": "Retrieve cilmBootImageLevelEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmBootImageLevelTable/cilmBootImageLevelEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmBootImageLevelTable",
                    "cilmBootImageLevelEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmModuleName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmBootImageLevelTable/cilmBootImageLevelEntry/cilmModuleName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmBootImageLevelTable",
                    "cilmBootImageLevelEntry",
                    "cilmModuleName"
                  ]
                },
                "description": "Retrieve cilmModuleName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmCurrentImageLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmBootImageLevelTable/cilmBootImageLevelEntry/cilmCurrentImageLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmBootImageLevelTable",
                    "cilmBootImageLevelEntry",
                    "cilmCurrentImageLevel"
                  ]
                },
                "description": "Retrieve cilmCurrentImageLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmConfiguredBootImageLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmBootImageLevelTable/cilmBootImageLevelEntry/cilmConfiguredBootImageLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmBootImageLevelTable",
                    "cilmBootImageLevelEntry",
                    "cilmConfiguredBootImageLevel"
                  ]
                },
                "description": "Retrieve cilmConfiguredBootImageLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmNextBootImageLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmBootImageLevelTable/cilmBootImageLevelEntry/cilmNextBootImageLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmBootImageLevelTable",
                    "cilmBootImageLevelEntry",
                    "cilmNextBootImageLevel"
                  ]
                },
                "description": "Retrieve cilmNextBootImageLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmCurrentLicenseStoreIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmBootImageLevelTable/cilmBootImageLevelEntry/cilmCurrentLicenseStoreIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmBootImageLevelTable",
                    "cilmBootImageLevelEntry",
                    "cilmCurrentLicenseStoreIndex"
                  ]
                },
                "description": "Retrieve cilmCurrentLicenseStoreIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmCurrentLicenseIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmBootImageLevelTable/cilmBootImageLevelEntry/cilmCurrentLicenseIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmBootImageLevelTable",
                    "cilmBootImageLevelEntry",
                    "cilmCurrentLicenseIndex"
                  ]
                },
                "description": "Retrieve cilmCurrentLicenseIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmNextBootLicenseStoreIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmBootImageLevelTable/cilmBootImageLevelEntry/cilmNextBootLicenseStoreIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmBootImageLevelTable",
                    "cilmBootImageLevelEntry",
                    "cilmNextBootLicenseStoreIndex"
                  ]
                },
                "description": "Retrieve cilmNextBootLicenseStoreIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmNextBootLicenseIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmBootImageLevelTable/cilmBootImageLevelEntry/cilmNextBootLicenseIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmBootImageLevelTable",
                    "cilmBootImageLevelEntry",
                    "cilmNextBootLicenseIndex"
                  ]
                },
                "description": "Retrieve cilmNextBootLicenseIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmImageLevelToLicenseMapTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmImageLevelToLicenseMapTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmImageLevelToLicenseMapTable"
                  ]
                },
                "description": "Retrieve cilmImageLevelToLicenseMapTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmImageLevelToLicenseMapEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmImageLevelToLicenseMapTable/cilmImageLevelToLicenseMapEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmImageLevelToLicenseMapTable",
                    "cilmImageLevelToLicenseMapEntry"
                  ]
                },
                "description": "Retrieve cilmImageLevelToLicenseMapEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmImageLevelToLicenseMapTable/cilmImageLevelToLicenseMapEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmImageLevelToLicenseMapTable",
                    "cilmImageLevelToLicenseMapEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmModuleName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmImageLevelToLicenseMapTable/cilmImageLevelToLicenseMapEntry/cilmModuleName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmImageLevelToLicenseMapTable",
                    "cilmImageLevelToLicenseMapEntry",
                    "cilmModuleName"
                  ]
                },
                "description": "Retrieve cilmModuleName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmImageLicenseMapIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmImageLevelToLicenseMapTable/cilmImageLevelToLicenseMapEntry/cilmImageLicenseMapIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmImageLevelToLicenseMapTable",
                    "cilmImageLevelToLicenseMapEntry",
                    "cilmImageLicenseMapIndex"
                  ]
                },
                "description": "Retrieve cilmImageLicenseMapIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmImageLicenseImageLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmImageLevelToLicenseMapTable/cilmImageLevelToLicenseMapEntry/cilmImageLicenseImageLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmImageLevelToLicenseMapTable",
                    "cilmImageLevelToLicenseMapEntry",
                    "cilmImageLicenseImageLevel"
                  ]
                },
                "description": "Retrieve cilmImageLicenseImageLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmImageLicenseName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmImageLevelToLicenseMapTable/cilmImageLevelToLicenseMapEntry/cilmImageLicenseName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmImageLevelToLicenseMapTable",
                    "cilmImageLevelToLicenseMapEntry",
                    "cilmImageLicenseName"
                  ]
                },
                "description": "Retrieve cilmImageLicenseName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmImageLicensePriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmImageLevelToLicenseMapTable/cilmImageLevelToLicenseMapEntry/cilmImageLicensePriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmImageLevelToLicenseMapTable",
                    "cilmImageLevelToLicenseMapEntry",
                    "cilmImageLicensePriority"
                  ]
                },
                "description": "Retrieve cilmImageLicensePriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmImageLevelToLicenseMapTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmImageLevelToLicenseMapTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmImageLevelToLicenseMapTable/object-1/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmImageLevelToLicenseMapTable",
                    "object-1",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmModuleName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmImageLevelToLicenseMapTable/object-1/cilmModuleName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmImageLevelToLicenseMapTable",
                    "object-1",
                    "cilmModuleName"
                  ]
                },
                "description": "Retrieve cilmModuleName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmCurrentImageLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmImageLevelToLicenseMapTable/object-1/cilmCurrentImageLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmImageLevelToLicenseMapTable",
                    "object-1",
                    "cilmCurrentImageLevel"
                  ]
                },
                "description": "Retrieve cilmCurrentImageLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmImageLevelToLicenseMapTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmImageLevelToLicenseMapTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmImageLevelToLicenseMapTable/object-2/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmImageLevelToLicenseMapTable",
                    "object-2",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmModuleName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmImageLevelToLicenseMapTable/object-2/cilmModuleName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmImageLevelToLicenseMapTable",
                    "object-2",
                    "cilmModuleName"
                  ]
                },
                "description": "Retrieve cilmModuleName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cilmConfiguredBootImageLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB/cilmImageLevelToLicenseMapTable/object-2/cilmConfiguredBootImageLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-LICENSE-MGMT-MIB:CISCO-IMAGE-LICENSE-MGMT-MIB",
                    "cilmImageLevelToLicenseMapTable",
                    "object-2",
                    "cilmConfiguredBootImageLevel"
                  ]
                },
                "description": "Retrieve cilmConfiguredBootImageLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IMAGE-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IMAGE-MIB\n\nMIB data from `CISCO-IMAGE-MIB` module.\n\n**Root containers:** 1 (CISCO-IMAGE-MIB)\n**Paths:** 5 | **Descendants:** 4\n\nAll endpoints are read-only (GET).\n\nEndpoints: 5 | Operations: 5",
          "item": [
            {
              "name": "GET Get CISCO-IMAGE-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-MIB:CISCO-IMAGE-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-MIB:CISCO-IMAGE-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IMAGE-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoImageTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-MIB:CISCO-IMAGE-MIB/ciscoImageTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-MIB:CISCO-IMAGE-MIB",
                    "ciscoImageTable"
                  ]
                },
                "description": "Retrieve ciscoImageTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoImageEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-MIB:CISCO-IMAGE-MIB/ciscoImageTable/ciscoImageEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-MIB:CISCO-IMAGE-MIB",
                    "ciscoImageTable",
                    "ciscoImageEntry"
                  ]
                },
                "description": "Retrieve ciscoImageEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoImageIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-MIB:CISCO-IMAGE-MIB/ciscoImageTable/ciscoImageEntry/ciscoImageIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-MIB:CISCO-IMAGE-MIB",
                    "ciscoImageTable",
                    "ciscoImageEntry",
                    "ciscoImageIndex"
                  ]
                },
                "description": "Retrieve ciscoImageIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoImageString",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IMAGE-MIB:CISCO-IMAGE-MIB/ciscoImageTable/ciscoImageEntry/ciscoImageString",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IMAGE-MIB:CISCO-IMAGE-MIB",
                    "ciscoImageTable",
                    "ciscoImageEntry",
                    "ciscoImageString"
                  ]
                },
                "description": "Retrieve ciscoImageString from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IP-LOCAL-POOL-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IP-LOCAL-POOL-MIB\n\nMIB data from `CISCO-IP-LOCAL-POOL-MIB` module.\n\n**Root containers:** 1 (CISCO-IP-LOCAL-POOL-MIB)\n**Paths:** 46 | **Descendants:** 57\n\nAll endpoints are read-only (GET).\n\nEndpoints: 46 | Operations: 46",
          "item": [
            {
              "name": "GET Get CISCO-IP-LOCAL-POOL-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IP-LOCAL-POOL-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolConfig"
                  ]
                },
                "description": "Retrieve cIpLocalPoolConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolNotificationsEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolConfig/cIpLocalPoolNotificationsEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolConfig",
                    "cIpLocalPoolNotificationsEnable"
                  ]
                },
                "description": "Retrieve cIpLocalPoolNotificationsEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolConfigTable"
                  ]
                },
                "description": "Retrieve cIpLocalPoolConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolConfigTable/cIpLocalPoolConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolConfigTable",
                    "cIpLocalPoolConfigEntry"
                  ]
                },
                "description": "Retrieve cIpLocalPoolConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolConfigTable/cIpLocalPoolConfigEntry/cIpLocalPoolName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolConfigTable",
                    "cIpLocalPoolConfigEntry",
                    "cIpLocalPoolName"
                  ]
                },
                "description": "Retrieve cIpLocalPoolName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolConfigTable/cIpLocalPoolConfigEntry/cIpLocalPoolAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolConfigTable",
                    "cIpLocalPoolConfigEntry",
                    "cIpLocalPoolAddrType"
                  ]
                },
                "description": "Retrieve cIpLocalPoolAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolAddressLo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolConfigTable/cIpLocalPoolConfigEntry/cIpLocalPoolAddressLo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolConfigTable",
                    "cIpLocalPoolConfigEntry",
                    "cIpLocalPoolAddressLo"
                  ]
                },
                "description": "Retrieve cIpLocalPoolAddressLo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolAddressHi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolConfigTable/cIpLocalPoolConfigEntry/cIpLocalPoolAddressHi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolConfigTable",
                    "cIpLocalPoolConfigEntry",
                    "cIpLocalPoolAddressHi"
                  ]
                },
                "description": "Retrieve cIpLocalPoolAddressHi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolFreeAddrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolConfigTable/cIpLocalPoolConfigEntry/cIpLocalPoolFreeAddrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolConfigTable",
                    "cIpLocalPoolConfigEntry",
                    "cIpLocalPoolFreeAddrs"
                  ]
                },
                "description": "Retrieve cIpLocalPoolFreeAddrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolInUseAddrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolConfigTable/cIpLocalPoolConfigEntry/cIpLocalPoolInUseAddrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolConfigTable",
                    "cIpLocalPoolConfigEntry",
                    "cIpLocalPoolInUseAddrs"
                  ]
                },
                "description": "Retrieve cIpLocalPoolInUseAddrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolGroupContainedIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolConfigTable/cIpLocalPoolConfigEntry/cIpLocalPoolGroupContainedIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolConfigTable",
                    "cIpLocalPoolConfigEntry",
                    "cIpLocalPoolGroupContainedIn"
                  ]
                },
                "description": "Retrieve cIpLocalPoolGroupContainedIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolConfigTable/cIpLocalPoolConfigEntry/cIpLocalPoolRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolConfigTable",
                    "cIpLocalPoolConfigEntry",
                    "cIpLocalPoolRowStatus"
                  ]
                },
                "description": "Retrieve cIpLocalPoolRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolConfigTable/cIpLocalPoolConfigEntry/cIpLocalPoolPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolConfigTable",
                    "cIpLocalPoolConfigEntry",
                    "cIpLocalPoolPriority"
                  ]
                },
                "description": "Retrieve cIpLocalPoolPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolGroupContainsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolGroupContainsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolGroupContainsTable"
                  ]
                },
                "description": "Retrieve cIpLocalPoolGroupContainsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolGroupContainsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolGroupContainsTable/cIpLocalPoolGroupContainsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolGroupContainsTable",
                    "cIpLocalPoolGroupContainsEntry"
                  ]
                },
                "description": "Retrieve cIpLocalPoolGroupContainsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolGroupName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolGroupContainsTable/cIpLocalPoolGroupContainsEntry/cIpLocalPoolGroupName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolGroupContainsTable",
                    "cIpLocalPoolGroupContainsEntry",
                    "cIpLocalPoolGroupName"
                  ]
                },
                "description": "Retrieve cIpLocalPoolGroupName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolChildIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolGroupContainsTable/cIpLocalPoolGroupContainsEntry/cIpLocalPoolChildIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolGroupContainsTable",
                    "cIpLocalPoolGroupContainsEntry",
                    "cIpLocalPoolChildIndex"
                  ]
                },
                "description": "Retrieve cIpLocalPoolChildIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolGroupTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolGroupTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolGroupTable"
                  ]
                },
                "description": "Retrieve cIpLocalPoolGroupTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolGroupEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolGroupTable/cIpLocalPoolGroupEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolGroupTable",
                    "cIpLocalPoolGroupEntry"
                  ]
                },
                "description": "Retrieve cIpLocalPoolGroupEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolGroupName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolGroupTable/cIpLocalPoolGroupEntry/cIpLocalPoolGroupName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolGroupTable",
                    "cIpLocalPoolGroupEntry",
                    "cIpLocalPoolGroupName"
                  ]
                },
                "description": "Retrieve cIpLocalPoolGroupName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolGroupFreeAddrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolGroupTable/cIpLocalPoolGroupEntry/cIpLocalPoolGroupFreeAddrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolGroupTable",
                    "cIpLocalPoolGroupEntry",
                    "cIpLocalPoolGroupFreeAddrs"
                  ]
                },
                "description": "Retrieve cIpLocalPoolGroupFreeAddrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolGroupInUseAddrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolGroupTable/cIpLocalPoolGroupEntry/cIpLocalPoolGroupInUseAddrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolGroupTable",
                    "cIpLocalPoolGroupEntry",
                    "cIpLocalPoolGroupInUseAddrs"
                  ]
                },
                "description": "Retrieve cIpLocalPoolGroupInUseAddrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolStatsTable"
                  ]
                },
                "description": "Retrieve cIpLocalPoolStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolStatsTable/cIpLocalPoolStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolStatsTable",
                    "cIpLocalPoolStatsEntry"
                  ]
                },
                "description": "Retrieve cIpLocalPoolStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolStatsTable/cIpLocalPoolStatsEntry/cIpLocalPoolName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolStatsTable",
                    "cIpLocalPoolStatsEntry",
                    "cIpLocalPoolName"
                  ]
                },
                "description": "Retrieve cIpLocalPoolName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolStatFreeAddrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolStatsTable/cIpLocalPoolStatsEntry/cIpLocalPoolStatFreeAddrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolStatsTable",
                    "cIpLocalPoolStatsEntry",
                    "cIpLocalPoolStatFreeAddrs"
                  ]
                },
                "description": "Retrieve cIpLocalPoolStatFreeAddrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolStatInUseAddrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolStatsTable/cIpLocalPoolStatsEntry/cIpLocalPoolStatInUseAddrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolStatsTable",
                    "cIpLocalPoolStatsEntry",
                    "cIpLocalPoolStatInUseAddrs"
                  ]
                },
                "description": "Retrieve cIpLocalPoolStatInUseAddrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolStatHiWaterUsedAddrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolStatsTable/cIpLocalPoolStatsEntry/cIpLocalPoolStatHiWaterUsedAddrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolStatsTable",
                    "cIpLocalPoolStatsEntry",
                    "cIpLocalPoolStatHiWaterUsedAddrs"
                  ]
                },
                "description": "Retrieve cIpLocalPoolStatHiWaterUsedAddrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolStatInUseAddrThldLo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolStatsTable/cIpLocalPoolStatsEntry/cIpLocalPoolStatInUseAddrThldLo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolStatsTable",
                    "cIpLocalPoolStatsEntry",
                    "cIpLocalPoolStatInUseAddrThldLo"
                  ]
                },
                "description": "Retrieve cIpLocalPoolStatInUseAddrThldLo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolStatInUseAddrThldHi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolStatsTable/cIpLocalPoolStatsEntry/cIpLocalPoolStatInUseAddrThldHi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolStatsTable",
                    "cIpLocalPoolStatsEntry",
                    "cIpLocalPoolStatInUseAddrThldHi"
                  ]
                },
                "description": "Retrieve cIpLocalPoolStatInUseAddrThldHi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolPercentAddrThldLo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolStatsTable/cIpLocalPoolStatsEntry/cIpLocalPoolPercentAddrThldLo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolStatsTable",
                    "cIpLocalPoolStatsEntry",
                    "cIpLocalPoolPercentAddrThldLo"
                  ]
                },
                "description": "Retrieve cIpLocalPoolPercentAddrThldLo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolPercentAddrThldHi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolStatsTable/cIpLocalPoolStatsEntry/cIpLocalPoolPercentAddrThldHi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolStatsTable",
                    "cIpLocalPoolStatsEntry",
                    "cIpLocalPoolPercentAddrThldHi"
                  ]
                },
                "description": "Retrieve cIpLocalPoolPercentAddrThldHi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolAllocTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolAllocTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolAllocTable"
                  ]
                },
                "description": "Retrieve cIpLocalPoolAllocTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolAllocEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolAllocTable/cIpLocalPoolAllocEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolAllocTable",
                    "cIpLocalPoolAllocEntry"
                  ]
                },
                "description": "Retrieve cIpLocalPoolAllocEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolAllocTable/cIpLocalPoolAllocEntry/cIpLocalPoolName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolAllocTable",
                    "cIpLocalPoolAllocEntry",
                    "cIpLocalPoolName"
                  ]
                },
                "description": "Retrieve cIpLocalPoolName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolAllocAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolAllocTable/cIpLocalPoolAllocEntry/cIpLocalPoolAllocAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolAllocTable",
                    "cIpLocalPoolAllocEntry",
                    "cIpLocalPoolAllocAddrType"
                  ]
                },
                "description": "Retrieve cIpLocalPoolAllocAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolAllocAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolAllocTable/cIpLocalPoolAllocEntry/cIpLocalPoolAllocAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolAllocTable",
                    "cIpLocalPoolAllocEntry",
                    "cIpLocalPoolAllocAddr"
                  ]
                },
                "description": "Retrieve cIpLocalPoolAllocAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolAllocIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolAllocTable/cIpLocalPoolAllocEntry/cIpLocalPoolAllocIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolAllocTable",
                    "cIpLocalPoolAllocEntry",
                    "cIpLocalPoolAllocIfIndex"
                  ]
                },
                "description": "Retrieve cIpLocalPoolAllocIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolAllocUser",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolAllocTable/cIpLocalPoolAllocEntry/cIpLocalPoolAllocUser",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolAllocTable",
                    "cIpLocalPoolAllocEntry",
                    "cIpLocalPoolAllocUser"
                  ]
                },
                "description": "Retrieve cIpLocalPoolAllocUser from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolAllocTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolAllocTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolAllocTable/object-1/cIpLocalPoolName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolAllocTable",
                    "object-1",
                    "cIpLocalPoolName"
                  ]
                },
                "description": "Retrieve cIpLocalPoolName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolStatFreeAddrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolAllocTable/object-1/cIpLocalPoolStatFreeAddrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolAllocTable",
                    "object-1",
                    "cIpLocalPoolStatFreeAddrs"
                  ]
                },
                "description": "Retrieve cIpLocalPoolStatFreeAddrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolAllocTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolAllocTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolAllocTable/object-2/cIpLocalPoolName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolAllocTable",
                    "object-2",
                    "cIpLocalPoolName"
                  ]
                },
                "description": "Retrieve cIpLocalPoolName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cIpLocalPoolStatInUseAddrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB/cIpLocalPoolAllocTable/object-2/cIpLocalPoolStatInUseAddrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-LOCAL-POOL-MIB:CISCO-IP-LOCAL-POOL-MIB",
                    "cIpLocalPoolAllocTable",
                    "object-2",
                    "cIpLocalPoolStatInUseAddrs"
                  ]
                },
                "description": "Retrieve cIpLocalPoolStatInUseAddrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IP-TAP-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IP-TAP-MIB\n\nMIB data from `CISCO-IP-TAP-MIB` module.\n\n**Root containers:** 1 (CISCO-IP-TAP-MIB)\n**Paths:** 23 | **Descendants:** 22\n\nAll endpoints are read-only (GET).\n\nEndpoints: 23 | Operations: 23",
          "item": [
            {
              "name": "GET Get CISCO-IP-TAP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IP-TAP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamEncodePacket",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamEncodePacket",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamEncodePacket"
                  ]
                },
                "description": "Retrieve citapStreamEncodePacket from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamCapabilities",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamEncodePacket/citapStreamCapabilities",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamEncodePacket",
                    "citapStreamCapabilities"
                  ]
                },
                "description": "Retrieve citapStreamCapabilities from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable"
                  ]
                },
                "description": "Retrieve citapStreamTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry"
                  ]
                },
                "description": "Retrieve citapStreamEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationContentId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/cTap2MediationContentId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "cTap2MediationContentId"
                  ]
                },
                "description": "Retrieve cTap2MediationContentId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2StreamIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/cTap2StreamIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "cTap2StreamIndex"
                  ]
                },
                "description": "Retrieve cTap2StreamIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/citapStreamInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "citapStreamInterface"
                  ]
                },
                "description": "Retrieve citapStreamInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/citapStreamAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "citapStreamAddrType"
                  ]
                },
                "description": "Retrieve citapStreamAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamDestinationAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/citapStreamDestinationAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "citapStreamDestinationAddress"
                  ]
                },
                "description": "Retrieve citapStreamDestinationAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamDestinationLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/citapStreamDestinationLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "citapStreamDestinationLength"
                  ]
                },
                "description": "Retrieve citapStreamDestinationLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamSourceAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/citapStreamSourceAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "citapStreamSourceAddress"
                  ]
                },
                "description": "Retrieve citapStreamSourceAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamSourceLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/citapStreamSourceLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "citapStreamSourceLength"
                  ]
                },
                "description": "Retrieve citapStreamSourceLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamTosByte",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/citapStreamTosByte",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "citapStreamTosByte"
                  ]
                },
                "description": "Retrieve citapStreamTosByte from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamTosByteMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/citapStreamTosByteMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "citapStreamTosByteMask"
                  ]
                },
                "description": "Retrieve citapStreamTosByteMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamFlowId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/citapStreamFlowId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "citapStreamFlowId"
                  ]
                },
                "description": "Retrieve citapStreamFlowId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/citapStreamProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "citapStreamProtocol"
                  ]
                },
                "description": "Retrieve citapStreamProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamDestL4PortMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/citapStreamDestL4PortMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "citapStreamDestL4PortMin"
                  ]
                },
                "description": "Retrieve citapStreamDestL4PortMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamDestL4PortMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/citapStreamDestL4PortMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "citapStreamDestL4PortMax"
                  ]
                },
                "description": "Retrieve citapStreamDestL4PortMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamSourceL4PortMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/citapStreamSourceL4PortMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "citapStreamSourceL4PortMin"
                  ]
                },
                "description": "Retrieve citapStreamSourceL4PortMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamSourceL4PortMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/citapStreamSourceL4PortMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "citapStreamSourceL4PortMax"
                  ]
                },
                "description": "Retrieve citapStreamSourceL4PortMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamVRF",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/citapStreamVRF",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "citapStreamVRF"
                  ]
                },
                "description": "Retrieve citapStreamVRF from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get citapStreamStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB/citapStreamTable/citapStreamEntry/citapStreamStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-TAP-MIB:CISCO-IP-TAP-MIB",
                    "citapStreamTable",
                    "citapStreamEntry",
                    "citapStreamStatus"
                  ]
                },
                "description": "Retrieve citapStreamStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IP-URPF-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IP-URPF-MIB\n\nMIB data from `CISCO-IP-URPF-MIB` module.\n\n**Root containers:** 1 (CISCO-IP-URPF-MIB)\n**Paths:** 37 | **Descendants:** 36\n\nAll endpoints are read-only (GET).\n\nEndpoints: 37 | Operations: 37",
          "item": [
            {
              "name": "GET Get CISCO-IP-URPF-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IP-URPF-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfScalar",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfScalar",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfScalar"
                  ]
                },
                "description": "Retrieve cipUrpfScalar from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfDropRateWindow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfScalar/cipUrpfDropRateWindow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfScalar",
                    "cipUrpfDropRateWindow"
                  ]
                },
                "description": "Retrieve cipUrpfDropRateWindow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfComputeInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfScalar/cipUrpfComputeInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfScalar",
                    "cipUrpfComputeInterval"
                  ]
                },
                "description": "Retrieve cipUrpfComputeInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfDropNotifyHoldDownTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfScalar/cipUrpfDropNotifyHoldDownTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfScalar",
                    "cipUrpfDropNotifyHoldDownTime"
                  ]
                },
                "description": "Retrieve cipUrpfDropNotifyHoldDownTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfTable"
                  ]
                },
                "description": "Retrieve cipUrpfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfTable/cipUrpfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfTable",
                    "cipUrpfEntry"
                  ]
                },
                "description": "Retrieve cipUrpfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfIpVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfTable/cipUrpfEntry/cipUrpfIpVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfTable",
                    "cipUrpfEntry",
                    "cipUrpfIpVersion"
                  ]
                },
                "description": "Retrieve cipUrpfIpVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfTable/cipUrpfEntry/cipUrpfDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfTable",
                    "cipUrpfEntry",
                    "cipUrpfDrops"
                  ]
                },
                "description": "Retrieve cipUrpfDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfDropRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfTable/cipUrpfEntry/cipUrpfDropRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfTable",
                    "cipUrpfEntry",
                    "cipUrpfDropRate"
                  ]
                },
                "description": "Retrieve cipUrpfDropRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfIfMonTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfIfMonTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfIfMonTable"
                  ]
                },
                "description": "Retrieve cipUrpfIfMonTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfIfMonEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfIfMonTable/cipUrpfIfMonEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfIfMonTable",
                    "cipUrpfIfMonEntry"
                  ]
                },
                "description": "Retrieve cipUrpfIfMonEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfIfMonTable/cipUrpfIfMonEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfIfMonTable",
                    "cipUrpfIfMonEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfIfIpVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfIfMonTable/cipUrpfIfMonEntry/cipUrpfIfIpVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfIfMonTable",
                    "cipUrpfIfMonEntry",
                    "cipUrpfIfIpVersion"
                  ]
                },
                "description": "Retrieve cipUrpfIfIpVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfIfDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfIfMonTable/cipUrpfIfMonEntry/cipUrpfIfDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfIfMonTable",
                    "cipUrpfIfMonEntry",
                    "cipUrpfIfDrops"
                  ]
                },
                "description": "Retrieve cipUrpfIfDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfIfSuppressedDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfIfMonTable/cipUrpfIfMonEntry/cipUrpfIfSuppressedDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfIfMonTable",
                    "cipUrpfIfMonEntry",
                    "cipUrpfIfSuppressedDrops"
                  ]
                },
                "description": "Retrieve cipUrpfIfSuppressedDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfIfDropRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfIfMonTable/cipUrpfIfMonEntry/cipUrpfIfDropRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfIfMonTable",
                    "cipUrpfIfMonEntry",
                    "cipUrpfIfDropRate"
                  ]
                },
                "description": "Retrieve cipUrpfIfDropRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfIfDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfIfMonTable/cipUrpfIfMonEntry/cipUrpfIfDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfIfMonTable",
                    "cipUrpfIfMonEntry",
                    "cipUrpfIfDiscontinuityTime"
                  ]
                },
                "description": "Retrieve cipUrpfIfDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfIfDropRateNotifyEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfIfMonTable/cipUrpfIfMonEntry/cipUrpfIfDropRateNotifyEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfIfMonTable",
                    "cipUrpfIfMonEntry",
                    "cipUrpfIfDropRateNotifyEnable"
                  ]
                },
                "description": "Retrieve cipUrpfIfDropRateNotifyEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfIfNotifyDropRateThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfIfMonTable/cipUrpfIfMonEntry/cipUrpfIfNotifyDropRateThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfIfMonTable",
                    "cipUrpfIfMonEntry",
                    "cipUrpfIfNotifyDropRateThreshold"
                  ]
                },
                "description": "Retrieve cipUrpfIfNotifyDropRateThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfIfNotifyDrHoldDownReset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfIfMonTable/cipUrpfIfMonEntry/cipUrpfIfNotifyDrHoldDownReset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfIfMonTable",
                    "cipUrpfIfMonEntry",
                    "cipUrpfIfNotifyDrHoldDownReset"
                  ]
                },
                "description": "Retrieve cipUrpfIfNotifyDrHoldDownReset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfIfCheckStrict",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfIfMonTable/cipUrpfIfMonEntry/cipUrpfIfCheckStrict",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfIfMonTable",
                    "cipUrpfIfMonEntry",
                    "cipUrpfIfCheckStrict"
                  ]
                },
                "description": "Retrieve cipUrpfIfCheckStrict from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfIfWhichRouteTableID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfIfMonTable/cipUrpfIfMonEntry/cipUrpfIfWhichRouteTableID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfIfMonTable",
                    "cipUrpfIfMonEntry",
                    "cipUrpfIfWhichRouteTableID"
                  ]
                },
                "description": "Retrieve cipUrpfIfWhichRouteTableID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfIfVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfIfMonTable/cipUrpfIfMonEntry/cipUrpfIfVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfIfMonTable",
                    "cipUrpfIfMonEntry",
                    "cipUrpfIfVrfName"
                  ]
                },
                "description": "Retrieve cipUrpfIfVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfVrfIfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfVrfIfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfVrfIfTable"
                  ]
                },
                "description": "Retrieve cipUrpfVrfIfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfVrfIfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfVrfIfTable/cipUrpfVrfIfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfVrfIfTable",
                    "cipUrpfVrfIfEntry"
                  ]
                },
                "description": "Retrieve cipUrpfVrfIfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfVrfIfTable/cipUrpfVrfIfEntry/cipUrpfVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfVrfIfTable",
                    "cipUrpfVrfIfEntry",
                    "cipUrpfVrfName"
                  ]
                },
                "description": "Retrieve cipUrpfVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfVrfIfTable/cipUrpfVrfIfEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfVrfIfTable",
                    "cipUrpfVrfIfEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfVrfIfDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfVrfIfTable/cipUrpfVrfIfEntry/cipUrpfVrfIfDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfVrfIfTable",
                    "cipUrpfVrfIfEntry",
                    "cipUrpfVrfIfDrops"
                  ]
                },
                "description": "Retrieve cipUrpfVrfIfDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfVrfIfDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfVrfIfTable/cipUrpfVrfIfEntry/cipUrpfVrfIfDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfVrfIfTable",
                    "cipUrpfVrfIfEntry",
                    "cipUrpfVrfIfDiscontinuityTime"
                  ]
                },
                "description": "Retrieve cipUrpfVrfIfDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfVrfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfVrfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfVrfTable"
                  ]
                },
                "description": "Retrieve cipUrpfVrfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfVrfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfVrfTable/cipUrpfVrfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfVrfTable",
                    "cipUrpfVrfEntry"
                  ]
                },
                "description": "Retrieve cipUrpfVrfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfVrfTable/cipUrpfVrfEntry/cipUrpfVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfVrfTable",
                    "cipUrpfVrfEntry",
                    "cipUrpfVrfName"
                  ]
                },
                "description": "Retrieve cipUrpfVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfVrfTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfVrfTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfVrfTable/object-1/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfVrfTable",
                    "object-1",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfIfIpVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfVrfTable/object-1/cipUrpfIfIpVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfVrfTable",
                    "object-1",
                    "cipUrpfIfIpVersion"
                  ]
                },
                "description": "Retrieve cipUrpfIfIpVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipUrpfIfDropRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB/cipUrpfVrfTable/object-1/cipUrpfIfDropRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IP-URPF-MIB:CISCO-IP-URPF-MIB",
                    "cipUrpfVrfTable",
                    "object-1",
                    "cipUrpfIfDropRate"
                  ]
                },
                "description": "Retrieve cipUrpfIfDropRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IPMROUTE-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IPMROUTE-MIB\n\nMIB data from `CISCO-IPMROUTE-MIB` module.\n\n**Root containers:** 1 (CISCO-IPMROUTE-MIB)\n**Paths:** 41 | **Descendants:** 52\n\nAll endpoints are read-only (GET).\n\nEndpoints: 41 | Operations: 41",
          "item": [
            {
              "name": "GET Get CISCO-IPMROUTE-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IPMROUTE-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRoute",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRoute",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRoute"
                  ]
                },
                "description": "Retrieve ciscoIpMRoute from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteNumberOfEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRoute/ciscoIpMRouteNumberOfEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRoute",
                    "ciscoIpMRouteNumberOfEntries"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteNumberOfEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteHeartBeatTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteHeartBeatTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteHeartBeatTable"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteHeartBeatTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteHeartBeatEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteHeartBeatTable/ciscoIpMRouteHeartBeatEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteHeartBeatTable",
                    "ciscoIpMRouteHeartBeatEntry"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteHeartBeatEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteHeartBeatGroupAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteHeartBeatTable/ciscoIpMRouteHeartBeatEntry/ciscoIpMRouteHeartBeatGroupAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteHeartBeatTable",
                    "ciscoIpMRouteHeartBeatEntry",
                    "ciscoIpMRouteHeartBeatGroupAddr"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteHeartBeatGroupAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteHeartBeatSourceAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteHeartBeatTable/ciscoIpMRouteHeartBeatEntry/ciscoIpMRouteHeartBeatSourceAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteHeartBeatTable",
                    "ciscoIpMRouteHeartBeatEntry",
                    "ciscoIpMRouteHeartBeatSourceAddr"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteHeartBeatSourceAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteHeartBeatInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteHeartBeatTable/ciscoIpMRouteHeartBeatEntry/ciscoIpMRouteHeartBeatInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteHeartBeatTable",
                    "ciscoIpMRouteHeartBeatEntry",
                    "ciscoIpMRouteHeartBeatInterval"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteHeartBeatInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteHeartBeatWindowSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteHeartBeatTable/ciscoIpMRouteHeartBeatEntry/ciscoIpMRouteHeartBeatWindowSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteHeartBeatTable",
                    "ciscoIpMRouteHeartBeatEntry",
                    "ciscoIpMRouteHeartBeatWindowSize"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteHeartBeatWindowSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteHeartBeatCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteHeartBeatTable/ciscoIpMRouteHeartBeatEntry/ciscoIpMRouteHeartBeatCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteHeartBeatTable",
                    "ciscoIpMRouteHeartBeatEntry",
                    "ciscoIpMRouteHeartBeatCount"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteHeartBeatCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteHeartBeatMinimum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteHeartBeatTable/ciscoIpMRouteHeartBeatEntry/ciscoIpMRouteHeartBeatMinimum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteHeartBeatTable",
                    "ciscoIpMRouteHeartBeatEntry",
                    "ciscoIpMRouteHeartBeatMinimum"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteHeartBeatMinimum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteHeartBeatAlertTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteHeartBeatTable/ciscoIpMRouteHeartBeatEntry/ciscoIpMRouteHeartBeatAlertTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteHeartBeatTable",
                    "ciscoIpMRouteHeartBeatEntry",
                    "ciscoIpMRouteHeartBeatAlertTime"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteHeartBeatAlertTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteHeartBeatStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteHeartBeatTable/ciscoIpMRouteHeartBeatEntry/ciscoIpMRouteHeartBeatStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteHeartBeatTable",
                    "ciscoIpMRouteHeartBeatEntry",
                    "ciscoIpMRouteHeartBeatStatus"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteHeartBeatStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRoutePruneFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRoutePruneFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRoutePruneFlag"
                  ]
                },
                "description": "Retrieve ciscoIpMRoutePruneFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteSparseFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteSparseFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteSparseFlag"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteSparseFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteConnectedFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteConnectedFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteConnectedFlag"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteConnectedFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteLocalFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteLocalFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteLocalFlag"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteLocalFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteRegisterFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteRegisterFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteRegisterFlag"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteRegisterFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteRpFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteRpFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteRpFlag"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteRpFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteSptFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteSptFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteSptFlag"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteSptFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteMetricPreference",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteMetricPreference",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteMetricPreference"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteMetricPreference from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteInLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteInLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteInLimit"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteInLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteLastUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteLastUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteLastUsed"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteLastUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteInLimit2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteInLimit2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteInLimit2"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteInLimit2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteJoinFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteJoinFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteJoinFlag"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteJoinFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteMsdpFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteMsdpFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteMsdpFlag"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteMsdpFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteProxyJoinFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteProxyJoinFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteProxyJoinFlag"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteProxyJoinFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRoutePkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRoutePkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRoutePkts"
                  ]
                },
                "description": "Retrieve ciscoIpMRoutePkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteDifferentInIfPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteDifferentInIfPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteDifferentInIfPkts"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteDifferentInIfPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteOctets"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteBps2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteBps2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteBps2"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteBps2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteMetric2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteMetric2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteMetric2"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteMetric2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteNextHopOutLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteNextHopOutLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteNextHopOutLimit"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteNextHopOutLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteNextHopMacHdr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteNextHopMacHdr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteNextHopMacHdr"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteNextHopMacHdr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteNextHopPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteNextHopPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteNextHopPkts"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteNextHopPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteIfInMcastOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteIfInMcastOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteIfInMcastOctets"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteIfInMcastOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteIfOutMcastOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteIfOutMcastOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteIfOutMcastOctets"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteIfOutMcastOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteIfInMcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteIfInMcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteIfInMcastPkts"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteIfInMcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteIfHCInMcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteIfHCInMcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteIfHCInMcastPkts"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteIfHCInMcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteIfOutMcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteIfOutMcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteIfOutMcastPkts"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteIfOutMcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoIpMRouteIfHCOutMcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB/ciscoIpMRouteIfHCOutMcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPMROUTE-MIB:CISCO-IPMROUTE-MIB",
                    "ciscoIpMRouteIfHCOutMcastPkts"
                  ]
                },
                "description": "Retrieve ciscoIpMRouteIfHCOutMcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IPSEC-FLOW-MONITOR-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IPSEC-FLOW-MONITOR-MIB\n\nMIB data from `CISCO-IPSEC-FLOW-MONITOR-MIB` module.\n\n**Root containers:** 1 (CISCO-IPSEC-FLOW-MONITOR-MIB)\n**Paths:** 431 | **Descendants:** 547\n\nAll endpoints are read-only (GET).\n\nEndpoints: 431 | Operations: 431",
          "item": [
            {
              "name": "GET Get CISCO-IPSEC-FLOW-MONITOR-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IPSEC-FLOW-MONITOR-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecLevels",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecLevels",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecLevels"
                  ]
                },
                "description": "Retrieve cipSecLevels from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecMibLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecLevels/cipSecMibLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecLevels",
                    "cipSecMibLevel"
                  ]
                },
                "description": "Retrieve cipSecMibLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalStats",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats"
                  ]
                },
                "description": "Retrieve cikeGlobalStats from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalActiveTunnels",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalActiveTunnels",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalActiveTunnels"
                  ]
                },
                "description": "Retrieve cikeGlobalActiveTunnels from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalPreviousTunnels",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalPreviousTunnels",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalPreviousTunnels"
                  ]
                },
                "description": "Retrieve cikeGlobalPreviousTunnels from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalInOctets"
                  ]
                },
                "description": "Retrieve cikeGlobalInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalInPkts"
                  ]
                },
                "description": "Retrieve cikeGlobalInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalInDropPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalInDropPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalInDropPkts"
                  ]
                },
                "description": "Retrieve cikeGlobalInDropPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalInNotifys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalInNotifys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalInNotifys"
                  ]
                },
                "description": "Retrieve cikeGlobalInNotifys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalInP2Exchgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalInP2Exchgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalInP2Exchgs"
                  ]
                },
                "description": "Retrieve cikeGlobalInP2Exchgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalInP2ExchgInvalids",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalInP2ExchgInvalids",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalInP2ExchgInvalids"
                  ]
                },
                "description": "Retrieve cikeGlobalInP2ExchgInvalids from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalInP2ExchgRejects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalInP2ExchgRejects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalInP2ExchgRejects"
                  ]
                },
                "description": "Retrieve cikeGlobalInP2ExchgRejects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalInP2SaDelRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalInP2SaDelRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalInP2SaDelRequests"
                  ]
                },
                "description": "Retrieve cikeGlobalInP2SaDelRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalOutOctets"
                  ]
                },
                "description": "Retrieve cikeGlobalOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalOutPkts"
                  ]
                },
                "description": "Retrieve cikeGlobalOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalOutDropPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalOutDropPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalOutDropPkts"
                  ]
                },
                "description": "Retrieve cikeGlobalOutDropPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalOutNotifys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalOutNotifys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalOutNotifys"
                  ]
                },
                "description": "Retrieve cikeGlobalOutNotifys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalOutP2Exchgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalOutP2Exchgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalOutP2Exchgs"
                  ]
                },
                "description": "Retrieve cikeGlobalOutP2Exchgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalOutP2ExchgInvalids",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalOutP2ExchgInvalids",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalOutP2ExchgInvalids"
                  ]
                },
                "description": "Retrieve cikeGlobalOutP2ExchgInvalids from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalOutP2ExchgRejects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalOutP2ExchgRejects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalOutP2ExchgRejects"
                  ]
                },
                "description": "Retrieve cikeGlobalOutP2ExchgRejects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalOutP2SaDelRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalOutP2SaDelRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalOutP2SaDelRequests"
                  ]
                },
                "description": "Retrieve cikeGlobalOutP2SaDelRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalInitTunnels",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalInitTunnels",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalInitTunnels"
                  ]
                },
                "description": "Retrieve cikeGlobalInitTunnels from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalInitTunnelFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalInitTunnelFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalInitTunnelFails"
                  ]
                },
                "description": "Retrieve cikeGlobalInitTunnelFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalRespTunnelFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalRespTunnelFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalRespTunnelFails"
                  ]
                },
                "description": "Retrieve cikeGlobalRespTunnelFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalSysCapFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalSysCapFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalSysCapFails"
                  ]
                },
                "description": "Retrieve cikeGlobalSysCapFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalAuthFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalAuthFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalAuthFails"
                  ]
                },
                "description": "Retrieve cikeGlobalAuthFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalDecryptFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalDecryptFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalDecryptFails"
                  ]
                },
                "description": "Retrieve cikeGlobalDecryptFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalHashValidFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalHashValidFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalHashValidFails"
                  ]
                },
                "description": "Retrieve cikeGlobalHashValidFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeGlobalNoSaFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeGlobalStats/cikeGlobalNoSaFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeGlobalStats",
                    "cikeGlobalNoSaFails"
                  ]
                },
                "description": "Retrieve cikeGlobalNoSaFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalStats",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats"
                  ]
                },
                "description": "Retrieve cipSecGlobalStats from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalActiveTunnels",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalActiveTunnels",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalActiveTunnels"
                  ]
                },
                "description": "Retrieve cipSecGlobalActiveTunnels from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalPreviousTunnels",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalPreviousTunnels",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalPreviousTunnels"
                  ]
                },
                "description": "Retrieve cipSecGlobalPreviousTunnels from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalInOctets"
                  ]
                },
                "description": "Retrieve cipSecGlobalInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalHcInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalHcInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalHcInOctets"
                  ]
                },
                "description": "Retrieve cipSecGlobalHcInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalInOctWraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalInOctWraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalInOctWraps"
                  ]
                },
                "description": "Retrieve cipSecGlobalInOctWraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalInDecompOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalInDecompOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalInDecompOctets"
                  ]
                },
                "description": "Retrieve cipSecGlobalInDecompOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalHcInDecompOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalHcInDecompOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalHcInDecompOctets"
                  ]
                },
                "description": "Retrieve cipSecGlobalHcInDecompOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalInDecompOctWraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalInDecompOctWraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalInDecompOctWraps"
                  ]
                },
                "description": "Retrieve cipSecGlobalInDecompOctWraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalInPkts"
                  ]
                },
                "description": "Retrieve cipSecGlobalInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalInDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalInDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalInDrops"
                  ]
                },
                "description": "Retrieve cipSecGlobalInDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalInReplayDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalInReplayDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalInReplayDrops"
                  ]
                },
                "description": "Retrieve cipSecGlobalInReplayDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalInAuths",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalInAuths",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalInAuths"
                  ]
                },
                "description": "Retrieve cipSecGlobalInAuths from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalInAuthFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalInAuthFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalInAuthFails"
                  ]
                },
                "description": "Retrieve cipSecGlobalInAuthFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalInDecrypts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalInDecrypts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalInDecrypts"
                  ]
                },
                "description": "Retrieve cipSecGlobalInDecrypts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalInDecryptFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalInDecryptFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalInDecryptFails"
                  ]
                },
                "description": "Retrieve cipSecGlobalInDecryptFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalOutOctets"
                  ]
                },
                "description": "Retrieve cipSecGlobalOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalHcOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalHcOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalHcOutOctets"
                  ]
                },
                "description": "Retrieve cipSecGlobalHcOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalOutOctWraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalOutOctWraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalOutOctWraps"
                  ]
                },
                "description": "Retrieve cipSecGlobalOutOctWraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalOutUncompOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalOutUncompOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalOutUncompOctets"
                  ]
                },
                "description": "Retrieve cipSecGlobalOutUncompOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalHcOutUncompOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalHcOutUncompOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalHcOutUncompOctets"
                  ]
                },
                "description": "Retrieve cipSecGlobalHcOutUncompOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalOutUncompOctWraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalOutUncompOctWraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalOutUncompOctWraps"
                  ]
                },
                "description": "Retrieve cipSecGlobalOutUncompOctWraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalOutPkts"
                  ]
                },
                "description": "Retrieve cipSecGlobalOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalOutDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalOutDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalOutDrops"
                  ]
                },
                "description": "Retrieve cipSecGlobalOutDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalOutAuths",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalOutAuths",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalOutAuths"
                  ]
                },
                "description": "Retrieve cipSecGlobalOutAuths from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalOutAuthFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalOutAuthFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalOutAuthFails"
                  ]
                },
                "description": "Retrieve cipSecGlobalOutAuthFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalOutEncrypts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalOutEncrypts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalOutEncrypts"
                  ]
                },
                "description": "Retrieve cipSecGlobalOutEncrypts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalOutEncryptFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalOutEncryptFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalOutEncryptFails"
                  ]
                },
                "description": "Retrieve cipSecGlobalOutEncryptFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalProtocolUseFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalProtocolUseFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalProtocolUseFails"
                  ]
                },
                "description": "Retrieve cipSecGlobalProtocolUseFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalNoSaFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalNoSaFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalNoSaFails"
                  ]
                },
                "description": "Retrieve cipSecGlobalNoSaFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecGlobalSysCapFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecGlobalStats/cipSecGlobalSysCapFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecGlobalStats",
                    "cipSecGlobalSysCapFails"
                  ]
                },
                "description": "Retrieve cipSecGlobalSysCapFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecHistGlobalCntl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecHistGlobalCntl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecHistGlobalCntl"
                  ]
                },
                "description": "Retrieve cipSecHistGlobalCntl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecHistTableSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecHistGlobalCntl/cipSecHistTableSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecHistGlobalCntl",
                    "cipSecHistTableSize"
                  ]
                },
                "description": "Retrieve cipSecHistTableSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecHistCheckPoint",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecHistGlobalCntl/cipSecHistCheckPoint",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecHistGlobalCntl",
                    "cipSecHistCheckPoint"
                  ]
                },
                "description": "Retrieve cipSecHistCheckPoint from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecFailGlobalCntl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailGlobalCntl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailGlobalCntl"
                  ]
                },
                "description": "Retrieve cipSecFailGlobalCntl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecFailTableSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailGlobalCntl/cipSecFailTableSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailGlobalCntl",
                    "cipSecFailTableSize"
                  ]
                },
                "description": "Retrieve cipSecFailTableSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTrapCntl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTrapCntl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTrapCntl"
                  ]
                },
                "description": "Retrieve cipSecTrapCntl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTrapCntlIkeTunnelStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTrapCntl/cipSecTrapCntlIkeTunnelStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTrapCntl",
                    "cipSecTrapCntlIkeTunnelStart"
                  ]
                },
                "description": "Retrieve cipSecTrapCntlIkeTunnelStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTrapCntlIkeTunnelStop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTrapCntl/cipSecTrapCntlIkeTunnelStop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTrapCntl",
                    "cipSecTrapCntlIkeTunnelStop"
                  ]
                },
                "description": "Retrieve cipSecTrapCntlIkeTunnelStop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTrapCntlIkeSysFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTrapCntl/cipSecTrapCntlIkeSysFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTrapCntl",
                    "cipSecTrapCntlIkeSysFailure"
                  ]
                },
                "description": "Retrieve cipSecTrapCntlIkeSysFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTrapCntlIkeCertCrlFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTrapCntl/cipSecTrapCntlIkeCertCrlFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTrapCntl",
                    "cipSecTrapCntlIkeCertCrlFailure"
                  ]
                },
                "description": "Retrieve cipSecTrapCntlIkeCertCrlFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTrapCntlIkeProtocolFail",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTrapCntl/cipSecTrapCntlIkeProtocolFail",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTrapCntl",
                    "cipSecTrapCntlIkeProtocolFail"
                  ]
                },
                "description": "Retrieve cipSecTrapCntlIkeProtocolFail from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTrapCntlIkeNoSa",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTrapCntl/cipSecTrapCntlIkeNoSa",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTrapCntl",
                    "cipSecTrapCntlIkeNoSa"
                  ]
                },
                "description": "Retrieve cipSecTrapCntlIkeNoSa from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTrapCntlIpSecTunnelStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTrapCntl/cipSecTrapCntlIpSecTunnelStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTrapCntl",
                    "cipSecTrapCntlIpSecTunnelStart"
                  ]
                },
                "description": "Retrieve cipSecTrapCntlIpSecTunnelStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTrapCntlIpSecTunnelStop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTrapCntl/cipSecTrapCntlIpSecTunnelStop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTrapCntl",
                    "cipSecTrapCntlIpSecTunnelStop"
                  ]
                },
                "description": "Retrieve cipSecTrapCntlIpSecTunnelStop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTrapCntlIpSecSysFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTrapCntl/cipSecTrapCntlIpSecSysFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTrapCntl",
                    "cipSecTrapCntlIpSecSysFailure"
                  ]
                },
                "description": "Retrieve cipSecTrapCntlIpSecSysFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTrapCntlIpSecSetUpFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTrapCntl/cipSecTrapCntlIpSecSetUpFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTrapCntl",
                    "cipSecTrapCntlIpSecSetUpFailure"
                  ]
                },
                "description": "Retrieve cipSecTrapCntlIpSecSetUpFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTrapCntlIpSecEarlyTunTerm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTrapCntl/cipSecTrapCntlIpSecEarlyTunTerm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTrapCntl",
                    "cipSecTrapCntlIpSecEarlyTunTerm"
                  ]
                },
                "description": "Retrieve cipSecTrapCntlIpSecEarlyTunTerm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTrapCntlIpSecProtocolFail",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTrapCntl/cipSecTrapCntlIpSecProtocolFail",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTrapCntl",
                    "cipSecTrapCntlIpSecProtocolFail"
                  ]
                },
                "description": "Retrieve cipSecTrapCntlIpSecProtocolFail from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTrapCntlIpSecNoSa",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTrapCntl/cipSecTrapCntlIpSecNoSa",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTrapCntl",
                    "cipSecTrapCntlIpSecNoSa"
                  ]
                },
                "description": "Retrieve cipSecTrapCntlIpSecNoSa from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerTable"
                  ]
                },
                "description": "Retrieve cikePeerTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerTable/cikePeerEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerTable",
                    "cikePeerEntry"
                  ]
                },
                "description": "Retrieve cikePeerEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerLocalType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerTable/cikePeerEntry/cikePeerLocalType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerTable",
                    "cikePeerEntry",
                    "cikePeerLocalType"
                  ]
                },
                "description": "Retrieve cikePeerLocalType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerLocalValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerTable/cikePeerEntry/cikePeerLocalValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerTable",
                    "cikePeerEntry",
                    "cikePeerLocalValue"
                  ]
                },
                "description": "Retrieve cikePeerLocalValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerRemoteType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerTable/cikePeerEntry/cikePeerRemoteType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerTable",
                    "cikePeerEntry",
                    "cikePeerRemoteType"
                  ]
                },
                "description": "Retrieve cikePeerRemoteType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerRemoteValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerTable/cikePeerEntry/cikePeerRemoteValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerTable",
                    "cikePeerEntry",
                    "cikePeerRemoteValue"
                  ]
                },
                "description": "Retrieve cikePeerRemoteValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerIntIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerTable/cikePeerEntry/cikePeerIntIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerTable",
                    "cikePeerEntry",
                    "cikePeerIntIndex"
                  ]
                },
                "description": "Retrieve cikePeerIntIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerLocalAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerTable/cikePeerEntry/cikePeerLocalAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerTable",
                    "cikePeerEntry",
                    "cikePeerLocalAddr"
                  ]
                },
                "description": "Retrieve cikePeerLocalAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerRemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerTable/cikePeerEntry/cikePeerRemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerTable",
                    "cikePeerEntry",
                    "cikePeerRemoteAddr"
                  ]
                },
                "description": "Retrieve cikePeerRemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerActiveTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerTable/cikePeerEntry/cikePeerActiveTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerTable",
                    "cikePeerEntry",
                    "cikePeerActiveTime"
                  ]
                },
                "description": "Retrieve cikePeerActiveTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerActiveTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerTable/cikePeerEntry/cikePeerActiveTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerTable",
                    "cikePeerEntry",
                    "cikePeerActiveTunnelIndex"
                  ]
                },
                "description": "Retrieve cikePeerActiveTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunnelTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable"
                  ]
                },
                "description": "Retrieve cikeTunnelTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunnelEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry"
                  ]
                },
                "description": "Retrieve cikeTunnelEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunIndex"
                  ]
                },
                "description": "Retrieve cikeTunIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunLocalType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunLocalType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunLocalType"
                  ]
                },
                "description": "Retrieve cikeTunLocalType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunLocalValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunLocalValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunLocalValue"
                  ]
                },
                "description": "Retrieve cikeTunLocalValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunLocalAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunLocalAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunLocalAddr"
                  ]
                },
                "description": "Retrieve cikeTunLocalAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunLocalName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunLocalName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunLocalName"
                  ]
                },
                "description": "Retrieve cikeTunLocalName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunRemoteType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunRemoteType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunRemoteType"
                  ]
                },
                "description": "Retrieve cikeTunRemoteType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunRemoteValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunRemoteValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunRemoteValue"
                  ]
                },
                "description": "Retrieve cikeTunRemoteValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunRemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunRemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunRemoteAddr"
                  ]
                },
                "description": "Retrieve cikeTunRemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunRemoteName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunRemoteName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunRemoteName"
                  ]
                },
                "description": "Retrieve cikeTunRemoteName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunNegoMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunNegoMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunNegoMode"
                  ]
                },
                "description": "Retrieve cikeTunNegoMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunDiffHellmanGrp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunDiffHellmanGrp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunDiffHellmanGrp"
                  ]
                },
                "description": "Retrieve cikeTunDiffHellmanGrp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunEncryptAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunEncryptAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunEncryptAlgo"
                  ]
                },
                "description": "Retrieve cikeTunEncryptAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHashAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunHashAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunHashAlgo"
                  ]
                },
                "description": "Retrieve cikeTunHashAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunAuthMethod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunAuthMethod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunAuthMethod"
                  ]
                },
                "description": "Retrieve cikeTunAuthMethod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunLifeTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunLifeTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunLifeTime"
                  ]
                },
                "description": "Retrieve cikeTunLifeTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunActiveTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunActiveTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunActiveTime"
                  ]
                },
                "description": "Retrieve cikeTunActiveTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunSaRefreshThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunSaRefreshThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunSaRefreshThreshold"
                  ]
                },
                "description": "Retrieve cikeTunSaRefreshThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunTotalRefreshes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunTotalRefreshes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunTotalRefreshes"
                  ]
                },
                "description": "Retrieve cikeTunTotalRefreshes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunInOctets"
                  ]
                },
                "description": "Retrieve cikeTunInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunInPkts"
                  ]
                },
                "description": "Retrieve cikeTunInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunInDropPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunInDropPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunInDropPkts"
                  ]
                },
                "description": "Retrieve cikeTunInDropPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunInNotifys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunInNotifys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunInNotifys"
                  ]
                },
                "description": "Retrieve cikeTunInNotifys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunInP2Exchgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunInP2Exchgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunInP2Exchgs"
                  ]
                },
                "description": "Retrieve cikeTunInP2Exchgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunInP2ExchgInvalids",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunInP2ExchgInvalids",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunInP2ExchgInvalids"
                  ]
                },
                "description": "Retrieve cikeTunInP2ExchgInvalids from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunInP2ExchgRejects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunInP2ExchgRejects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunInP2ExchgRejects"
                  ]
                },
                "description": "Retrieve cikeTunInP2ExchgRejects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunInP2SaDelRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunInP2SaDelRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunInP2SaDelRequests"
                  ]
                },
                "description": "Retrieve cikeTunInP2SaDelRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunOutOctets"
                  ]
                },
                "description": "Retrieve cikeTunOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunOutPkts"
                  ]
                },
                "description": "Retrieve cikeTunOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunOutDropPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunOutDropPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunOutDropPkts"
                  ]
                },
                "description": "Retrieve cikeTunOutDropPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunOutNotifys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunOutNotifys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunOutNotifys"
                  ]
                },
                "description": "Retrieve cikeTunOutNotifys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunOutP2Exchgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunOutP2Exchgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunOutP2Exchgs"
                  ]
                },
                "description": "Retrieve cikeTunOutP2Exchgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunOutP2ExchgInvalids",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunOutP2ExchgInvalids",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunOutP2ExchgInvalids"
                  ]
                },
                "description": "Retrieve cikeTunOutP2ExchgInvalids from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunOutP2ExchgRejects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunOutP2ExchgRejects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunOutP2ExchgRejects"
                  ]
                },
                "description": "Retrieve cikeTunOutP2ExchgRejects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunOutP2SaDelRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunOutP2SaDelRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunOutP2SaDelRequests"
                  ]
                },
                "description": "Retrieve cikeTunOutP2SaDelRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelTable/cikeTunnelEntry/cikeTunStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelTable",
                    "cikeTunnelEntry",
                    "cikeTunStatus"
                  ]
                },
                "description": "Retrieve cikeTunStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerCorrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerCorrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerCorrTable"
                  ]
                },
                "description": "Retrieve cikePeerCorrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerCorrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerCorrTable/cikePeerCorrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerCorrTable",
                    "cikePeerCorrEntry"
                  ]
                },
                "description": "Retrieve cikePeerCorrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerCorrLocalType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerCorrTable/cikePeerCorrEntry/cikePeerCorrLocalType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerCorrTable",
                    "cikePeerCorrEntry",
                    "cikePeerCorrLocalType"
                  ]
                },
                "description": "Retrieve cikePeerCorrLocalType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerCorrLocalValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerCorrTable/cikePeerCorrEntry/cikePeerCorrLocalValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerCorrTable",
                    "cikePeerCorrEntry",
                    "cikePeerCorrLocalValue"
                  ]
                },
                "description": "Retrieve cikePeerCorrLocalValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerCorrRemoteType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerCorrTable/cikePeerCorrEntry/cikePeerCorrRemoteType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerCorrTable",
                    "cikePeerCorrEntry",
                    "cikePeerCorrRemoteType"
                  ]
                },
                "description": "Retrieve cikePeerCorrRemoteType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerCorrRemoteValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerCorrTable/cikePeerCorrEntry/cikePeerCorrRemoteValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerCorrTable",
                    "cikePeerCorrEntry",
                    "cikePeerCorrRemoteValue"
                  ]
                },
                "description": "Retrieve cikePeerCorrRemoteValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerCorrIntIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerCorrTable/cikePeerCorrEntry/cikePeerCorrIntIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerCorrTable",
                    "cikePeerCorrEntry",
                    "cikePeerCorrIntIndex"
                  ]
                },
                "description": "Retrieve cikePeerCorrIntIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerCorrSeqNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerCorrTable/cikePeerCorrEntry/cikePeerCorrSeqNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerCorrTable",
                    "cikePeerCorrEntry",
                    "cikePeerCorrSeqNum"
                  ]
                },
                "description": "Retrieve cikePeerCorrSeqNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerCorrIpSecTunIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePeerCorrTable/cikePeerCorrEntry/cikePeerCorrIpSecTunIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePeerCorrTable",
                    "cikePeerCorrEntry",
                    "cikePeerCorrIpSecTunIndex"
                  ]
                },
                "description": "Retrieve cikePeerCorrIpSecTunIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable"
                  ]
                },
                "description": "Retrieve cikePhase1GWStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry"
                  ]
                },
                "description": "Retrieve cikePhase1GWStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cmgwIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cmgwIndex"
                  ]
                },
                "description": "Retrieve cmgwIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWActiveTunnels",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWActiveTunnels",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWActiveTunnels"
                  ]
                },
                "description": "Retrieve cikePhase1GWActiveTunnels from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWPreviousTunnels",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWPreviousTunnels",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWPreviousTunnels"
                  ]
                },
                "description": "Retrieve cikePhase1GWPreviousTunnels from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWInOctets"
                  ]
                },
                "description": "Retrieve cikePhase1GWInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWInPkts"
                  ]
                },
                "description": "Retrieve cikePhase1GWInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWInDropPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWInDropPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWInDropPkts"
                  ]
                },
                "description": "Retrieve cikePhase1GWInDropPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWInNotifys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWInNotifys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWInNotifys"
                  ]
                },
                "description": "Retrieve cikePhase1GWInNotifys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWInP2Exchgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWInP2Exchgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWInP2Exchgs"
                  ]
                },
                "description": "Retrieve cikePhase1GWInP2Exchgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWInP2ExchgInvalids",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWInP2ExchgInvalids",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWInP2ExchgInvalids"
                  ]
                },
                "description": "Retrieve cikePhase1GWInP2ExchgInvalids from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWInP2ExchgRejects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWInP2ExchgRejects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWInP2ExchgRejects"
                  ]
                },
                "description": "Retrieve cikePhase1GWInP2ExchgRejects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWInP2SaDelRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWInP2SaDelRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWInP2SaDelRequests"
                  ]
                },
                "description": "Retrieve cikePhase1GWInP2SaDelRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWOutOctets"
                  ]
                },
                "description": "Retrieve cikePhase1GWOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWOutPkts"
                  ]
                },
                "description": "Retrieve cikePhase1GWOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWOutDropPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWOutDropPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWOutDropPkts"
                  ]
                },
                "description": "Retrieve cikePhase1GWOutDropPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWOutNotifys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWOutNotifys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWOutNotifys"
                  ]
                },
                "description": "Retrieve cikePhase1GWOutNotifys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWOutP2Exchgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWOutP2Exchgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWOutP2Exchgs"
                  ]
                },
                "description": "Retrieve cikePhase1GWOutP2Exchgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWOutP2ExchgInvalids",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWOutP2ExchgInvalids",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWOutP2ExchgInvalids"
                  ]
                },
                "description": "Retrieve cikePhase1GWOutP2ExchgInvalids from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWOutP2ExchgRejects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWOutP2ExchgRejects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWOutP2ExchgRejects"
                  ]
                },
                "description": "Retrieve cikePhase1GWOutP2ExchgRejects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWOutP2SaDelRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWOutP2SaDelRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWOutP2SaDelRequests"
                  ]
                },
                "description": "Retrieve cikePhase1GWOutP2SaDelRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWInitTunnels",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWInitTunnels",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWInitTunnels"
                  ]
                },
                "description": "Retrieve cikePhase1GWInitTunnels from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWInitTunnelFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWInitTunnelFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWInitTunnelFails"
                  ]
                },
                "description": "Retrieve cikePhase1GWInitTunnelFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWRespTunnelFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWRespTunnelFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWRespTunnelFails"
                  ]
                },
                "description": "Retrieve cikePhase1GWRespTunnelFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWSysCapFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWSysCapFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWSysCapFails"
                  ]
                },
                "description": "Retrieve cikePhase1GWSysCapFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWAuthFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWAuthFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWAuthFails"
                  ]
                },
                "description": "Retrieve cikePhase1GWAuthFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWDecryptFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWDecryptFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWDecryptFails"
                  ]
                },
                "description": "Retrieve cikePhase1GWDecryptFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWHashValidFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWHashValidFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWHashValidFails"
                  ]
                },
                "description": "Retrieve cikePhase1GWHashValidFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePhase1GWNoSaFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikePhase1GWStatsTable/cikePhase1GWStatsEntry/cikePhase1GWNoSaFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikePhase1GWStatsTable",
                    "cikePhase1GWStatsEntry",
                    "cikePhase1GWNoSaFails"
                  ]
                },
                "description": "Retrieve cikePhase1GWNoSaFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunnelTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable"
                  ]
                },
                "description": "Retrieve cipSecTunnelTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunnelEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry"
                  ]
                },
                "description": "Retrieve cipSecTunnelEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunIndex"
                  ]
                },
                "description": "Retrieve cipSecTunIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunIkeTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunIkeTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunIkeTunnelIndex"
                  ]
                },
                "description": "Retrieve cipSecTunIkeTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunIkeTunnelAlive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunIkeTunnelAlive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunIkeTunnelAlive"
                  ]
                },
                "description": "Retrieve cipSecTunIkeTunnelAlive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunLocalAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunLocalAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunLocalAddr"
                  ]
                },
                "description": "Retrieve cipSecTunLocalAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunRemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunRemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunRemoteAddr"
                  ]
                },
                "description": "Retrieve cipSecTunRemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunKeyType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunKeyType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunKeyType"
                  ]
                },
                "description": "Retrieve cipSecTunKeyType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunEncapMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunEncapMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunEncapMode"
                  ]
                },
                "description": "Retrieve cipSecTunEncapMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunLifeSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunLifeSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunLifeSize"
                  ]
                },
                "description": "Retrieve cipSecTunLifeSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunLifeTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunLifeTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunLifeTime"
                  ]
                },
                "description": "Retrieve cipSecTunLifeTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunActiveTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunActiveTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunActiveTime"
                  ]
                },
                "description": "Retrieve cipSecTunActiveTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunSaLifeSizeThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunSaLifeSizeThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunSaLifeSizeThreshold"
                  ]
                },
                "description": "Retrieve cipSecTunSaLifeSizeThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunSaLifeTimeThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunSaLifeTimeThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunSaLifeTimeThreshold"
                  ]
                },
                "description": "Retrieve cipSecTunSaLifeTimeThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunTotalRefreshes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunTotalRefreshes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunTotalRefreshes"
                  ]
                },
                "description": "Retrieve cipSecTunTotalRefreshes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunExpiredSaInstances",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunExpiredSaInstances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunExpiredSaInstances"
                  ]
                },
                "description": "Retrieve cipSecTunExpiredSaInstances from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunCurrentSaInstances",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunCurrentSaInstances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunCurrentSaInstances"
                  ]
                },
                "description": "Retrieve cipSecTunCurrentSaInstances from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunInSaDiffHellmanGrp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunInSaDiffHellmanGrp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunInSaDiffHellmanGrp"
                  ]
                },
                "description": "Retrieve cipSecTunInSaDiffHellmanGrp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunInSaEncryptAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunInSaEncryptAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunInSaEncryptAlgo"
                  ]
                },
                "description": "Retrieve cipSecTunInSaEncryptAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunInSaAhAuthAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunInSaAhAuthAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunInSaAhAuthAlgo"
                  ]
                },
                "description": "Retrieve cipSecTunInSaAhAuthAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunInSaEspAuthAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunInSaEspAuthAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunInSaEspAuthAlgo"
                  ]
                },
                "description": "Retrieve cipSecTunInSaEspAuthAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunInSaDecompAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunInSaDecompAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunInSaDecompAlgo"
                  ]
                },
                "description": "Retrieve cipSecTunInSaDecompAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunOutSaDiffHellmanGrp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunOutSaDiffHellmanGrp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunOutSaDiffHellmanGrp"
                  ]
                },
                "description": "Retrieve cipSecTunOutSaDiffHellmanGrp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunOutSaEncryptAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunOutSaEncryptAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunOutSaEncryptAlgo"
                  ]
                },
                "description": "Retrieve cipSecTunOutSaEncryptAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunOutSaAhAuthAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunOutSaAhAuthAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunOutSaAhAuthAlgo"
                  ]
                },
                "description": "Retrieve cipSecTunOutSaAhAuthAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunOutSaEspAuthAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunOutSaEspAuthAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunOutSaEspAuthAlgo"
                  ]
                },
                "description": "Retrieve cipSecTunOutSaEspAuthAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunOutSaCompAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunOutSaCompAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunOutSaCompAlgo"
                  ]
                },
                "description": "Retrieve cipSecTunOutSaCompAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunInOctets"
                  ]
                },
                "description": "Retrieve cipSecTunInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHcInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunHcInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunHcInOctets"
                  ]
                },
                "description": "Retrieve cipSecTunHcInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunInOctWraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunInOctWraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunInOctWraps"
                  ]
                },
                "description": "Retrieve cipSecTunInOctWraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunInDecompOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunInDecompOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunInDecompOctets"
                  ]
                },
                "description": "Retrieve cipSecTunInDecompOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHcInDecompOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunHcInDecompOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunHcInDecompOctets"
                  ]
                },
                "description": "Retrieve cipSecTunHcInDecompOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunInDecompOctWraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunInDecompOctWraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunInDecompOctWraps"
                  ]
                },
                "description": "Retrieve cipSecTunInDecompOctWraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunInPkts"
                  ]
                },
                "description": "Retrieve cipSecTunInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunInDropPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunInDropPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunInDropPkts"
                  ]
                },
                "description": "Retrieve cipSecTunInDropPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunInReplayDropPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunInReplayDropPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunInReplayDropPkts"
                  ]
                },
                "description": "Retrieve cipSecTunInReplayDropPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunInAuths",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunInAuths",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunInAuths"
                  ]
                },
                "description": "Retrieve cipSecTunInAuths from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunInAuthFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunInAuthFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunInAuthFails"
                  ]
                },
                "description": "Retrieve cipSecTunInAuthFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunInDecrypts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunInDecrypts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunInDecrypts"
                  ]
                },
                "description": "Retrieve cipSecTunInDecrypts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunInDecryptFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunInDecryptFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunInDecryptFails"
                  ]
                },
                "description": "Retrieve cipSecTunInDecryptFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunOutOctets"
                  ]
                },
                "description": "Retrieve cipSecTunOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHcOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunHcOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunHcOutOctets"
                  ]
                },
                "description": "Retrieve cipSecTunHcOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunOutOctWraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunOutOctWraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunOutOctWraps"
                  ]
                },
                "description": "Retrieve cipSecTunOutOctWraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunOutUncompOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunOutUncompOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunOutUncompOctets"
                  ]
                },
                "description": "Retrieve cipSecTunOutUncompOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHcOutUncompOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunHcOutUncompOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunHcOutUncompOctets"
                  ]
                },
                "description": "Retrieve cipSecTunHcOutUncompOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunOutUncompOctWraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunOutUncompOctWraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunOutUncompOctWraps"
                  ]
                },
                "description": "Retrieve cipSecTunOutUncompOctWraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunOutPkts"
                  ]
                },
                "description": "Retrieve cipSecTunOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunOutDropPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunOutDropPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunOutDropPkts"
                  ]
                },
                "description": "Retrieve cipSecTunOutDropPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunOutAuths",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunOutAuths",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunOutAuths"
                  ]
                },
                "description": "Retrieve cipSecTunOutAuths from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunOutAuthFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunOutAuthFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunOutAuthFails"
                  ]
                },
                "description": "Retrieve cipSecTunOutAuthFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunOutEncrypts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunOutEncrypts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunOutEncrypts"
                  ]
                },
                "description": "Retrieve cipSecTunOutEncrypts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunOutEncryptFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunOutEncryptFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunOutEncryptFails"
                  ]
                },
                "description": "Retrieve cipSecTunOutEncryptFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelTable/cipSecTunnelEntry/cipSecTunStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelTable",
                    "cipSecTunnelEntry",
                    "cipSecTunStatus"
                  ]
                },
                "description": "Retrieve cipSecTunStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtTable"
                  ]
                },
                "description": "Retrieve cipSecEndPtTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtTable/cipSecEndPtEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtTable",
                    "cipSecEndPtEntry"
                  ]
                },
                "description": "Retrieve cipSecEndPtEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtTable/cipSecEndPtEntry/cipSecTunIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtTable",
                    "cipSecEndPtEntry",
                    "cipSecTunIndex"
                  ]
                },
                "description": "Retrieve cipSecTunIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtTable/cipSecEndPtEntry/cipSecEndPtIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtTable",
                    "cipSecEndPtEntry",
                    "cipSecEndPtIndex"
                  ]
                },
                "description": "Retrieve cipSecEndPtIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtLocalName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtTable/cipSecEndPtEntry/cipSecEndPtLocalName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtTable",
                    "cipSecEndPtEntry",
                    "cipSecEndPtLocalName"
                  ]
                },
                "description": "Retrieve cipSecEndPtLocalName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtLocalType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtTable/cipSecEndPtEntry/cipSecEndPtLocalType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtTable",
                    "cipSecEndPtEntry",
                    "cipSecEndPtLocalType"
                  ]
                },
                "description": "Retrieve cipSecEndPtLocalType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtLocalAddr1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtTable/cipSecEndPtEntry/cipSecEndPtLocalAddr1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtTable",
                    "cipSecEndPtEntry",
                    "cipSecEndPtLocalAddr1"
                  ]
                },
                "description": "Retrieve cipSecEndPtLocalAddr1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtLocalAddr2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtTable/cipSecEndPtEntry/cipSecEndPtLocalAddr2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtTable",
                    "cipSecEndPtEntry",
                    "cipSecEndPtLocalAddr2"
                  ]
                },
                "description": "Retrieve cipSecEndPtLocalAddr2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtLocalProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtTable/cipSecEndPtEntry/cipSecEndPtLocalProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtTable",
                    "cipSecEndPtEntry",
                    "cipSecEndPtLocalProtocol"
                  ]
                },
                "description": "Retrieve cipSecEndPtLocalProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtLocalPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtTable/cipSecEndPtEntry/cipSecEndPtLocalPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtTable",
                    "cipSecEndPtEntry",
                    "cipSecEndPtLocalPort"
                  ]
                },
                "description": "Retrieve cipSecEndPtLocalPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtRemoteName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtTable/cipSecEndPtEntry/cipSecEndPtRemoteName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtTable",
                    "cipSecEndPtEntry",
                    "cipSecEndPtRemoteName"
                  ]
                },
                "description": "Retrieve cipSecEndPtRemoteName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtRemoteType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtTable/cipSecEndPtEntry/cipSecEndPtRemoteType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtTable",
                    "cipSecEndPtEntry",
                    "cipSecEndPtRemoteType"
                  ]
                },
                "description": "Retrieve cipSecEndPtRemoteType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtRemoteAddr1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtTable/cipSecEndPtEntry/cipSecEndPtRemoteAddr1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtTable",
                    "cipSecEndPtEntry",
                    "cipSecEndPtRemoteAddr1"
                  ]
                },
                "description": "Retrieve cipSecEndPtRemoteAddr1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtRemoteAddr2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtTable/cipSecEndPtEntry/cipSecEndPtRemoteAddr2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtTable",
                    "cipSecEndPtEntry",
                    "cipSecEndPtRemoteAddr2"
                  ]
                },
                "description": "Retrieve cipSecEndPtRemoteAddr2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtRemoteProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtTable/cipSecEndPtEntry/cipSecEndPtRemoteProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtTable",
                    "cipSecEndPtEntry",
                    "cipSecEndPtRemoteProtocol"
                  ]
                },
                "description": "Retrieve cipSecEndPtRemoteProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtRemotePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtTable/cipSecEndPtEntry/cipSecEndPtRemotePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtTable",
                    "cipSecEndPtEntry",
                    "cipSecEndPtRemotePort"
                  ]
                },
                "description": "Retrieve cipSecEndPtRemotePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecSpiTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecSpiTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecSpiTable"
                  ]
                },
                "description": "Retrieve cipSecSpiTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecSpiEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecSpiTable/cipSecSpiEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecSpiTable",
                    "cipSecSpiEntry"
                  ]
                },
                "description": "Retrieve cipSecSpiEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecSpiTable/cipSecSpiEntry/cipSecTunIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecSpiTable",
                    "cipSecSpiEntry",
                    "cipSecTunIndex"
                  ]
                },
                "description": "Retrieve cipSecTunIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecSpiIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecSpiTable/cipSecSpiEntry/cipSecSpiIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecSpiTable",
                    "cipSecSpiEntry",
                    "cipSecSpiIndex"
                  ]
                },
                "description": "Retrieve cipSecSpiIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecSpiDirection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecSpiTable/cipSecSpiEntry/cipSecSpiDirection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecSpiTable",
                    "cipSecSpiEntry",
                    "cipSecSpiDirection"
                  ]
                },
                "description": "Retrieve cipSecSpiDirection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecSpiValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecSpiTable/cipSecSpiEntry/cipSecSpiValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecSpiTable",
                    "cipSecSpiEntry",
                    "cipSecSpiValue"
                  ]
                },
                "description": "Retrieve cipSecSpiValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecSpiProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecSpiTable/cipSecSpiEntry/cipSecSpiProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecSpiTable",
                    "cipSecSpiEntry",
                    "cipSecSpiProtocol"
                  ]
                },
                "description": "Retrieve cipSecSpiProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecSpiStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecSpiTable/cipSecSpiEntry/cipSecSpiStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecSpiTable",
                    "cipSecSpiEntry",
                    "cipSecSpiStatus"
                  ]
                },
                "description": "Retrieve cipSecSpiStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cmgwIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cmgwIndex"
                  ]
                },
                "description": "Retrieve cmgwIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWActiveTunnels",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWActiveTunnels",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWActiveTunnels"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWActiveTunnels from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWPreviousTunnels",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWPreviousTunnels",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWPreviousTunnels"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWPreviousTunnels from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWInOctets"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWInOctWraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWInOctWraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWInOctWraps"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWInOctWraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWInDecompOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWInDecompOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWInDecompOctets"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWInDecompOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWInDecompOctWraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWInDecompOctWraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWInDecompOctWraps"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWInDecompOctWraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWInPkts"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWInDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWInDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWInDrops"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWInDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWInReplayDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWInReplayDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWInReplayDrops"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWInReplayDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWInAuths",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWInAuths",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWInAuths"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWInAuths from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWInAuthFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWInAuthFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWInAuthFails"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWInAuthFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWInDecrypts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWInDecrypts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWInDecrypts"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWInDecrypts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWInDecryptFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWInDecryptFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWInDecryptFails"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWInDecryptFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWOutOctets"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWOutOctWraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWOutOctWraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWOutOctWraps"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWOutOctWraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWOutUncompOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWOutUncompOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWOutUncompOctets"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWOutUncompOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWOutUncompOctWraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWOutUncompOctWraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWOutUncompOctWraps"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWOutUncompOctWraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWOutPkts"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWOutDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWOutDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWOutDrops"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWOutDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWOutAuths",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWOutAuths",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWOutAuths"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWOutAuths from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWOutAuthFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWOutAuthFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWOutAuthFails"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWOutAuthFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWOutEncrypts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWOutEncrypts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWOutEncrypts"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWOutEncrypts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWOutEncryptFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWOutEncryptFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWOutEncryptFails"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWOutEncryptFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWProtocolUseFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWProtocolUseFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWProtocolUseFails"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWProtocolUseFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWNoSaFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWNoSaFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWNoSaFails"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWNoSaFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecPhase2GWSysCapFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecPhase2GWStatsTable/cipSecPhase2GWStatsEntry/cipSecPhase2GWSysCapFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecPhase2GWStatsTable",
                    "cipSecPhase2GWStatsEntry",
                    "cipSecPhase2GWSysCapFails"
                  ]
                },
                "description": "Retrieve cipSecPhase2GWSysCapFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunnelHistTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable"
                  ]
                },
                "description": "Retrieve cikeTunnelHistTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunnelHistEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry"
                  ]
                },
                "description": "Retrieve cikeTunnelHistEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistIndex"
                  ]
                },
                "description": "Retrieve cikeTunHistIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistTermReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistTermReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistTermReason"
                  ]
                },
                "description": "Retrieve cikeTunHistTermReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistActiveIndex"
                  ]
                },
                "description": "Retrieve cikeTunHistActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistPeerLocalType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistPeerLocalType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistPeerLocalType"
                  ]
                },
                "description": "Retrieve cikeTunHistPeerLocalType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistPeerLocalValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistPeerLocalValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistPeerLocalValue"
                  ]
                },
                "description": "Retrieve cikeTunHistPeerLocalValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistPeerIntIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistPeerIntIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistPeerIntIndex"
                  ]
                },
                "description": "Retrieve cikeTunHistPeerIntIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistPeerRemoteType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistPeerRemoteType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistPeerRemoteType"
                  ]
                },
                "description": "Retrieve cikeTunHistPeerRemoteType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistPeerRemoteValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistPeerRemoteValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistPeerRemoteValue"
                  ]
                },
                "description": "Retrieve cikeTunHistPeerRemoteValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistLocalAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistLocalAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistLocalAddr"
                  ]
                },
                "description": "Retrieve cikeTunHistLocalAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistLocalName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistLocalName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistLocalName"
                  ]
                },
                "description": "Retrieve cikeTunHistLocalName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistRemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistRemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistRemoteAddr"
                  ]
                },
                "description": "Retrieve cikeTunHistRemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistRemoteName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistRemoteName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistRemoteName"
                  ]
                },
                "description": "Retrieve cikeTunHistRemoteName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistNegoMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistNegoMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistNegoMode"
                  ]
                },
                "description": "Retrieve cikeTunHistNegoMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistDiffHellmanGrp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistDiffHellmanGrp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistDiffHellmanGrp"
                  ]
                },
                "description": "Retrieve cikeTunHistDiffHellmanGrp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistEncryptAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistEncryptAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistEncryptAlgo"
                  ]
                },
                "description": "Retrieve cikeTunHistEncryptAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistHashAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistHashAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistHashAlgo"
                  ]
                },
                "description": "Retrieve cikeTunHistHashAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistAuthMethod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistAuthMethod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistAuthMethod"
                  ]
                },
                "description": "Retrieve cikeTunHistAuthMethod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistLifeTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistLifeTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistLifeTime"
                  ]
                },
                "description": "Retrieve cikeTunHistLifeTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistStartTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistStartTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistStartTime"
                  ]
                },
                "description": "Retrieve cikeTunHistStartTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistActiveTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistActiveTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistActiveTime"
                  ]
                },
                "description": "Retrieve cikeTunHistActiveTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistTotalRefreshes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistTotalRefreshes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistTotalRefreshes"
                  ]
                },
                "description": "Retrieve cikeTunHistTotalRefreshes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistTotalSas",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistTotalSas",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistTotalSas"
                  ]
                },
                "description": "Retrieve cikeTunHistTotalSas from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistInOctets"
                  ]
                },
                "description": "Retrieve cikeTunHistInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistInPkts"
                  ]
                },
                "description": "Retrieve cikeTunHistInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistInDropPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistInDropPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistInDropPkts"
                  ]
                },
                "description": "Retrieve cikeTunHistInDropPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistInNotifys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistInNotifys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistInNotifys"
                  ]
                },
                "description": "Retrieve cikeTunHistInNotifys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistInP2Exchgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistInP2Exchgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistInP2Exchgs"
                  ]
                },
                "description": "Retrieve cikeTunHistInP2Exchgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistInP2ExchgInvalids",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistInP2ExchgInvalids",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistInP2ExchgInvalids"
                  ]
                },
                "description": "Retrieve cikeTunHistInP2ExchgInvalids from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistInP2ExchgRejects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistInP2ExchgRejects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistInP2ExchgRejects"
                  ]
                },
                "description": "Retrieve cikeTunHistInP2ExchgRejects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistInP2SaDelRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistInP2SaDelRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistInP2SaDelRequests"
                  ]
                },
                "description": "Retrieve cikeTunHistInP2SaDelRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistOutOctets"
                  ]
                },
                "description": "Retrieve cikeTunHistOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistOutPkts"
                  ]
                },
                "description": "Retrieve cikeTunHistOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistOutDropPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistOutDropPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistOutDropPkts"
                  ]
                },
                "description": "Retrieve cikeTunHistOutDropPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistOutNotifys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistOutNotifys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistOutNotifys"
                  ]
                },
                "description": "Retrieve cikeTunHistOutNotifys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistOutP2Exchgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistOutP2Exchgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistOutP2Exchgs"
                  ]
                },
                "description": "Retrieve cikeTunHistOutP2Exchgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistOutP2ExchgInvalids",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistOutP2ExchgInvalids",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistOutP2ExchgInvalids"
                  ]
                },
                "description": "Retrieve cikeTunHistOutP2ExchgInvalids from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistOutP2ExchgRejects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistOutP2ExchgRejects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistOutP2ExchgRejects"
                  ]
                },
                "description": "Retrieve cikeTunHistOutP2ExchgRejects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunHistOutP2SaDelRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeTunnelHistTable/cikeTunnelHistEntry/cikeTunHistOutP2SaDelRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeTunnelHistTable",
                    "cikeTunnelHistEntry",
                    "cikeTunHistOutP2SaDelRequests"
                  ]
                },
                "description": "Retrieve cikeTunHistOutP2SaDelRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunnelHistTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable"
                  ]
                },
                "description": "Retrieve cipSecTunnelHistTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunnelHistEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry"
                  ]
                },
                "description": "Retrieve cipSecTunnelHistEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistIndex"
                  ]
                },
                "description": "Retrieve cipSecTunHistIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistTermReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistTermReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistTermReason"
                  ]
                },
                "description": "Retrieve cipSecTunHistTermReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistActiveIndex"
                  ]
                },
                "description": "Retrieve cipSecTunHistActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistIkeTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistIkeTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistIkeTunnelIndex"
                  ]
                },
                "description": "Retrieve cipSecTunHistIkeTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistLocalAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistLocalAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistLocalAddr"
                  ]
                },
                "description": "Retrieve cipSecTunHistLocalAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistRemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistRemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistRemoteAddr"
                  ]
                },
                "description": "Retrieve cipSecTunHistRemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistKeyType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistKeyType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistKeyType"
                  ]
                },
                "description": "Retrieve cipSecTunHistKeyType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistEncapMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistEncapMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistEncapMode"
                  ]
                },
                "description": "Retrieve cipSecTunHistEncapMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistLifeSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistLifeSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistLifeSize"
                  ]
                },
                "description": "Retrieve cipSecTunHistLifeSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistLifeTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistLifeTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistLifeTime"
                  ]
                },
                "description": "Retrieve cipSecTunHistLifeTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistStartTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistStartTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistStartTime"
                  ]
                },
                "description": "Retrieve cipSecTunHistStartTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistActiveTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistActiveTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistActiveTime"
                  ]
                },
                "description": "Retrieve cipSecTunHistActiveTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistTotalRefreshes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistTotalRefreshes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistTotalRefreshes"
                  ]
                },
                "description": "Retrieve cipSecTunHistTotalRefreshes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistTotalSas",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistTotalSas",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistTotalSas"
                  ]
                },
                "description": "Retrieve cipSecTunHistTotalSas from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistInSaDiffHellmanGrp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistInSaDiffHellmanGrp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistInSaDiffHellmanGrp"
                  ]
                },
                "description": "Retrieve cipSecTunHistInSaDiffHellmanGrp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistInSaEncryptAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistInSaEncryptAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistInSaEncryptAlgo"
                  ]
                },
                "description": "Retrieve cipSecTunHistInSaEncryptAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistInSaAhAuthAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistInSaAhAuthAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistInSaAhAuthAlgo"
                  ]
                },
                "description": "Retrieve cipSecTunHistInSaAhAuthAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistInSaEspAuthAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistInSaEspAuthAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistInSaEspAuthAlgo"
                  ]
                },
                "description": "Retrieve cipSecTunHistInSaEspAuthAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistInSaDecompAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistInSaDecompAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistInSaDecompAlgo"
                  ]
                },
                "description": "Retrieve cipSecTunHistInSaDecompAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistOutSaDiffHellmanGrp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistOutSaDiffHellmanGrp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistOutSaDiffHellmanGrp"
                  ]
                },
                "description": "Retrieve cipSecTunHistOutSaDiffHellmanGrp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistOutSaEncryptAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistOutSaEncryptAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistOutSaEncryptAlgo"
                  ]
                },
                "description": "Retrieve cipSecTunHistOutSaEncryptAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistOutSaAhAuthAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistOutSaAhAuthAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistOutSaAhAuthAlgo"
                  ]
                },
                "description": "Retrieve cipSecTunHistOutSaAhAuthAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistOutSaEspAuthAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistOutSaEspAuthAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistOutSaEspAuthAlgo"
                  ]
                },
                "description": "Retrieve cipSecTunHistOutSaEspAuthAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistOutSaCompAlgo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistOutSaCompAlgo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistOutSaCompAlgo"
                  ]
                },
                "description": "Retrieve cipSecTunHistOutSaCompAlgo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistInOctets"
                  ]
                },
                "description": "Retrieve cipSecTunHistInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistHcInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistHcInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistHcInOctets"
                  ]
                },
                "description": "Retrieve cipSecTunHistHcInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistInOctWraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistInOctWraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistInOctWraps"
                  ]
                },
                "description": "Retrieve cipSecTunHistInOctWraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistInDecompOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistInDecompOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistInDecompOctets"
                  ]
                },
                "description": "Retrieve cipSecTunHistInDecompOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistHcInDecompOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistHcInDecompOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistHcInDecompOctets"
                  ]
                },
                "description": "Retrieve cipSecTunHistHcInDecompOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistInDecompOctWraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistInDecompOctWraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistInDecompOctWraps"
                  ]
                },
                "description": "Retrieve cipSecTunHistInDecompOctWraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistInPkts"
                  ]
                },
                "description": "Retrieve cipSecTunHistInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistInDropPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistInDropPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistInDropPkts"
                  ]
                },
                "description": "Retrieve cipSecTunHistInDropPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistInReplayDropPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistInReplayDropPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistInReplayDropPkts"
                  ]
                },
                "description": "Retrieve cipSecTunHistInReplayDropPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistInAuths",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistInAuths",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistInAuths"
                  ]
                },
                "description": "Retrieve cipSecTunHistInAuths from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistInAuthFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistInAuthFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistInAuthFails"
                  ]
                },
                "description": "Retrieve cipSecTunHistInAuthFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistInDecrypts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistInDecrypts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistInDecrypts"
                  ]
                },
                "description": "Retrieve cipSecTunHistInDecrypts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistInDecryptFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistInDecryptFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistInDecryptFails"
                  ]
                },
                "description": "Retrieve cipSecTunHistInDecryptFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistOutOctets"
                  ]
                },
                "description": "Retrieve cipSecTunHistOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistHcOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistHcOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistHcOutOctets"
                  ]
                },
                "description": "Retrieve cipSecTunHistHcOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistOutOctWraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistOutOctWraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistOutOctWraps"
                  ]
                },
                "description": "Retrieve cipSecTunHistOutOctWraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistOutUncompOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistOutUncompOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistOutUncompOctets"
                  ]
                },
                "description": "Retrieve cipSecTunHistOutUncompOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistHcOutUncompOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistHcOutUncompOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistHcOutUncompOctets"
                  ]
                },
                "description": "Retrieve cipSecTunHistHcOutUncompOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistOutUncompOctWraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistOutUncompOctWraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistOutUncompOctWraps"
                  ]
                },
                "description": "Retrieve cipSecTunHistOutUncompOctWraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistOutPkts"
                  ]
                },
                "description": "Retrieve cipSecTunHistOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistOutDropPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistOutDropPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistOutDropPkts"
                  ]
                },
                "description": "Retrieve cipSecTunHistOutDropPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistOutAuths",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistOutAuths",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistOutAuths"
                  ]
                },
                "description": "Retrieve cipSecTunHistOutAuths from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistOutAuthFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistOutAuthFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistOutAuthFails"
                  ]
                },
                "description": "Retrieve cipSecTunHistOutAuthFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistOutEncrypts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistOutEncrypts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistOutEncrypts"
                  ]
                },
                "description": "Retrieve cipSecTunHistOutEncrypts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunHistOutEncryptFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecTunnelHistTable/cipSecTunnelHistEntry/cipSecTunHistOutEncryptFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecTunnelHistTable",
                    "cipSecTunnelHistEntry",
                    "cipSecTunHistOutEncryptFails"
                  ]
                },
                "description": "Retrieve cipSecTunHistOutEncryptFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable/cipSecEndPtHistEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable",
                    "cipSecEndPtHistEntry"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable/cipSecEndPtHistEntry/cipSecEndPtHistIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable",
                    "cipSecEndPtHistEntry",
                    "cipSecEndPtHistIndex"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistTunIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable/cipSecEndPtHistEntry/cipSecEndPtHistTunIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable",
                    "cipSecEndPtHistEntry",
                    "cipSecEndPtHistTunIndex"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistTunIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable/cipSecEndPtHistEntry/cipSecEndPtHistActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable",
                    "cipSecEndPtHistEntry",
                    "cipSecEndPtHistActiveIndex"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistLocalName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable/cipSecEndPtHistEntry/cipSecEndPtHistLocalName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable",
                    "cipSecEndPtHistEntry",
                    "cipSecEndPtHistLocalName"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistLocalName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistLocalType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable/cipSecEndPtHistEntry/cipSecEndPtHistLocalType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable",
                    "cipSecEndPtHistEntry",
                    "cipSecEndPtHistLocalType"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistLocalType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistLocalAddr1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable/cipSecEndPtHistEntry/cipSecEndPtHistLocalAddr1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable",
                    "cipSecEndPtHistEntry",
                    "cipSecEndPtHistLocalAddr1"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistLocalAddr1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistLocalAddr2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable/cipSecEndPtHistEntry/cipSecEndPtHistLocalAddr2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable",
                    "cipSecEndPtHistEntry",
                    "cipSecEndPtHistLocalAddr2"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistLocalAddr2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistLocalProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable/cipSecEndPtHistEntry/cipSecEndPtHistLocalProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable",
                    "cipSecEndPtHistEntry",
                    "cipSecEndPtHistLocalProtocol"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistLocalProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistLocalPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable/cipSecEndPtHistEntry/cipSecEndPtHistLocalPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable",
                    "cipSecEndPtHistEntry",
                    "cipSecEndPtHistLocalPort"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistLocalPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistRemoteName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable/cipSecEndPtHistEntry/cipSecEndPtHistRemoteName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable",
                    "cipSecEndPtHistEntry",
                    "cipSecEndPtHistRemoteName"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistRemoteName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistRemoteType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable/cipSecEndPtHistEntry/cipSecEndPtHistRemoteType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable",
                    "cipSecEndPtHistEntry",
                    "cipSecEndPtHistRemoteType"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistRemoteType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistRemoteAddr1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable/cipSecEndPtHistEntry/cipSecEndPtHistRemoteAddr1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable",
                    "cipSecEndPtHistEntry",
                    "cipSecEndPtHistRemoteAddr1"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistRemoteAddr1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistRemoteAddr2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable/cipSecEndPtHistEntry/cipSecEndPtHistRemoteAddr2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable",
                    "cipSecEndPtHistEntry",
                    "cipSecEndPtHistRemoteAddr2"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistRemoteAddr2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistRemoteProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable/cipSecEndPtHistEntry/cipSecEndPtHistRemoteProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable",
                    "cipSecEndPtHistEntry",
                    "cipSecEndPtHistRemoteProtocol"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistRemoteProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecEndPtHistRemotePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecEndPtHistTable/cipSecEndPtHistEntry/cipSecEndPtHistRemotePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecEndPtHistTable",
                    "cipSecEndPtHistEntry",
                    "cipSecEndPtHistRemotePort"
                  ]
                },
                "description": "Retrieve cipSecEndPtHistRemotePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeFailTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeFailTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeFailTable"
                  ]
                },
                "description": "Retrieve cikeFailTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeFailEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeFailTable/cikeFailEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeFailTable",
                    "cikeFailEntry"
                  ]
                },
                "description": "Retrieve cikeFailEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeFailIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeFailTable/cikeFailEntry/cikeFailIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeFailTable",
                    "cikeFailEntry",
                    "cikeFailIndex"
                  ]
                },
                "description": "Retrieve cikeFailIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeFailReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeFailTable/cikeFailEntry/cikeFailReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeFailTable",
                    "cikeFailEntry",
                    "cikeFailReason"
                  ]
                },
                "description": "Retrieve cikeFailReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeFailTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeFailTable/cikeFailEntry/cikeFailTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeFailTable",
                    "cikeFailEntry",
                    "cikeFailTime"
                  ]
                },
                "description": "Retrieve cikeFailTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeFailLocalType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeFailTable/cikeFailEntry/cikeFailLocalType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeFailTable",
                    "cikeFailEntry",
                    "cikeFailLocalType"
                  ]
                },
                "description": "Retrieve cikeFailLocalType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeFailLocalValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeFailTable/cikeFailEntry/cikeFailLocalValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeFailTable",
                    "cikeFailEntry",
                    "cikeFailLocalValue"
                  ]
                },
                "description": "Retrieve cikeFailLocalValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeFailRemoteType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeFailTable/cikeFailEntry/cikeFailRemoteType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeFailTable",
                    "cikeFailEntry",
                    "cikeFailRemoteType"
                  ]
                },
                "description": "Retrieve cikeFailRemoteType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeFailRemoteValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeFailTable/cikeFailEntry/cikeFailRemoteValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeFailTable",
                    "cikeFailEntry",
                    "cikeFailRemoteValue"
                  ]
                },
                "description": "Retrieve cikeFailRemoteValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeFailLocalAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeFailTable/cikeFailEntry/cikeFailLocalAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeFailTable",
                    "cikeFailEntry",
                    "cikeFailLocalAddr"
                  ]
                },
                "description": "Retrieve cikeFailLocalAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeFailRemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cikeFailTable/cikeFailEntry/cikeFailRemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cikeFailTable",
                    "cikeFailEntry",
                    "cikeFailRemoteAddr"
                  ]
                },
                "description": "Retrieve cikeFailRemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecFailTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable"
                  ]
                },
                "description": "Retrieve cipSecFailTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecFailEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/cipSecFailEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "cipSecFailEntry"
                  ]
                },
                "description": "Retrieve cipSecFailEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecFailIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/cipSecFailEntry/cipSecFailIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "cipSecFailEntry",
                    "cipSecFailIndex"
                  ]
                },
                "description": "Retrieve cipSecFailIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecFailReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/cipSecFailEntry/cipSecFailReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "cipSecFailEntry",
                    "cipSecFailReason"
                  ]
                },
                "description": "Retrieve cipSecFailReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecFailTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/cipSecFailEntry/cipSecFailTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "cipSecFailEntry",
                    "cipSecFailTime"
                  ]
                },
                "description": "Retrieve cipSecFailTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecFailTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/cipSecFailEntry/cipSecFailTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "cipSecFailEntry",
                    "cipSecFailTunnelIndex"
                  ]
                },
                "description": "Retrieve cipSecFailTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecFailSaSpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/cipSecFailEntry/cipSecFailSaSpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "cipSecFailEntry",
                    "cipSecFailSaSpi"
                  ]
                },
                "description": "Retrieve cipSecFailSaSpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecFailPktSrcAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/cipSecFailEntry/cipSecFailPktSrcAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "cipSecFailEntry",
                    "cipSecFailPktSrcAddr"
                  ]
                },
                "description": "Retrieve cipSecFailPktSrcAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecFailPktDstAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/cipSecFailEntry/cipSecFailPktDstAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "cipSecFailEntry",
                    "cipSecFailPktDstAddr"
                  ]
                },
                "description": "Retrieve cipSecFailPktDstAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerLocalType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-1/cikePeerLocalType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-1",
                    "cikePeerLocalType"
                  ]
                },
                "description": "Retrieve cikePeerLocalType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerLocalValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-1/cikePeerLocalValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-1",
                    "cikePeerLocalValue"
                  ]
                },
                "description": "Retrieve cikePeerLocalValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerRemoteType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-1/cikePeerRemoteType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-1",
                    "cikePeerRemoteType"
                  ]
                },
                "description": "Retrieve cikePeerRemoteType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerRemoteValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-1/cikePeerRemoteValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-1",
                    "cikePeerRemoteValue"
                  ]
                },
                "description": "Retrieve cikePeerRemoteValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerIntIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-1/cikePeerIntIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-1",
                    "cikePeerIntIndex"
                  ]
                },
                "description": "Retrieve cikePeerIntIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerLocalAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-1/cikePeerLocalAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-1",
                    "cikePeerLocalAddr"
                  ]
                },
                "description": "Retrieve cikePeerLocalAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerLocalType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-2/cikePeerLocalType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-2",
                    "cikePeerLocalType"
                  ]
                },
                "description": "Retrieve cikePeerLocalType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerLocalValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-2/cikePeerLocalValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-2",
                    "cikePeerLocalValue"
                  ]
                },
                "description": "Retrieve cikePeerLocalValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerRemoteType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-2/cikePeerRemoteType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-2",
                    "cikePeerRemoteType"
                  ]
                },
                "description": "Retrieve cikePeerRemoteType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerRemoteValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-2/cikePeerRemoteValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-2",
                    "cikePeerRemoteValue"
                  ]
                },
                "description": "Retrieve cikePeerRemoteValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerIntIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-2/cikePeerIntIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-2",
                    "cikePeerIntIndex"
                  ]
                },
                "description": "Retrieve cikePeerIntIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikePeerRemoteAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-2/cikePeerRemoteAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-2",
                    "cikePeerRemoteAddr"
                  ]
                },
                "description": "Retrieve cikePeerRemoteAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-3/cikeTunIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-3",
                    "cikeTunIndex"
                  ]
                },
                "description": "Retrieve cikeTunIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunLifeTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-3/cikeTunLifeTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-3",
                    "cikeTunLifeTime"
                  ]
                },
                "description": "Retrieve cikeTunLifeTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cikeTunActiveTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-3/cikeTunActiveTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-3",
                    "cikeTunActiveTime"
                  ]
                },
                "description": "Retrieve cikeTunActiveTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-1/cipSecTunIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-1",
                    "cipSecTunIndex"
                  ]
                },
                "description": "Retrieve cipSecTunIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunLifeTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-1/cipSecTunLifeTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-1",
                    "cipSecTunLifeTime"
                  ]
                },
                "description": "Retrieve cipSecTunLifeTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-2/cipSecTunIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-2",
                    "cipSecTunIndex"
                  ]
                },
                "description": "Retrieve cipSecTunIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunLifeSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-2/cipSecTunLifeSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-2",
                    "cipSecTunLifeSize"
                  ]
                },
                "description": "Retrieve cipSecTunLifeSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunActiveTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-1/cipSecTunActiveTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-1",
                    "cipSecTunActiveTime"
                  ]
                },
                "description": "Retrieve cipSecTunActiveTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-3/cipSecTunIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-3",
                    "cipSecTunIndex"
                  ]
                },
                "description": "Retrieve cipSecTunIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunActiveTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-3/cipSecTunActiveTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-3",
                    "cipSecTunActiveTime"
                  ]
                },
                "description": "Retrieve cipSecTunActiveTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecTunIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-4/cipSecTunIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-4",
                    "cipSecTunIndex"
                  ]
                },
                "description": "Retrieve cipSecTunIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecSpiIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-4/cipSecSpiIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-4",
                    "cipSecSpiIndex"
                  ]
                },
                "description": "Retrieve cipSecSpiIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecSpiProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-4/cipSecSpiProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-4",
                    "cipSecSpiProtocol"
                  ]
                },
                "description": "Retrieve cipSecSpiProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecSpiIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-2/cipSecSpiIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-2",
                    "cipSecSpiIndex"
                  ]
                },
                "description": "Retrieve cipSecSpiIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipSecSpiProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB/cipSecFailTable/object-2/cipSecSpiProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-FLOW-MONITOR-MIB:CISCO-IPSEC-FLOW-MONITOR-MIB",
                    "cipSecFailTable",
                    "object-2",
                    "cipSecSpiProtocol"
                  ]
                },
                "description": "Retrieve cipSecSpiProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IPSEC-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IPSEC-MIB\n\nMIB data from `CISCO-IPSEC-MIB` module.\n\n**Root containers:** 1 (CISCO-IPSEC-MIB)\n**Paths:** 83 | **Descendants:** 96\n\nAll endpoints are read-only (GET).\n\nEndpoints: 83 | Operations: 83",
          "item": [
            {
              "name": "GET Get CISCO-IPSEC-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IPSEC-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsIsakmpGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIsakmpGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIsakmpGroup"
                  ]
                },
                "description": "Retrieve cipsIsakmpGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsIsakmpEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIsakmpGroup/cipsIsakmpEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIsakmpGroup",
                    "cipsIsakmpEnabled"
                  ]
                },
                "description": "Retrieve cipsIsakmpEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsIsakmpIdentity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIsakmpGroup/cipsIsakmpIdentity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIsakmpGroup",
                    "cipsIsakmpIdentity"
                  ]
                },
                "description": "Retrieve cipsIsakmpIdentity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsIsakmpKeepaliveInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIsakmpGroup/cipsIsakmpKeepaliveInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIsakmpGroup",
                    "cipsIsakmpKeepaliveInterval"
                  ]
                },
                "description": "Retrieve cipsIsakmpKeepaliveInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsNumIsakmpPolicies",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIsakmpGroup/cipsNumIsakmpPolicies",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIsakmpGroup",
                    "cipsNumIsakmpPolicies"
                  ]
                },
                "description": "Retrieve cipsNumIsakmpPolicies from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsIPsecGlobals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIPsecGlobals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIPsecGlobals"
                  ]
                },
                "description": "Retrieve cipsIPsecGlobals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsSALifetime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIPsecGlobals/cipsSALifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIPsecGlobals",
                    "cipsSALifetime"
                  ]
                },
                "description": "Retrieve cipsSALifetime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsSALifesize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIPsecGlobals/cipsSALifesize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIPsecGlobals",
                    "cipsSALifesize"
                  ]
                },
                "description": "Retrieve cipsSALifesize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsNumStaticCryptomapSets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIPsecGlobals/cipsNumStaticCryptomapSets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIPsecGlobals",
                    "cipsNumStaticCryptomapSets"
                  ]
                },
                "description": "Retrieve cipsNumStaticCryptomapSets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsNumCETCryptomapSets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIPsecGlobals/cipsNumCETCryptomapSets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIPsecGlobals",
                    "cipsNumCETCryptomapSets"
                  ]
                },
                "description": "Retrieve cipsNumCETCryptomapSets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsNumDynamicCryptomapSets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIPsecGlobals/cipsNumDynamicCryptomapSets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIPsecGlobals",
                    "cipsNumDynamicCryptomapSets"
                  ]
                },
                "description": "Retrieve cipsNumDynamicCryptomapSets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsNumTEDCryptomapSets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIPsecGlobals/cipsNumTEDCryptomapSets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIPsecGlobals",
                    "cipsNumTEDCryptomapSets"
                  ]
                },
                "description": "Retrieve cipsNumTEDCryptomapSets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsIPsecStatistics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIPsecStatistics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIPsecStatistics"
                  ]
                },
                "description": "Retrieve cipsIPsecStatistics from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsNumTEDProbesReceived",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIPsecStatistics/cipsNumTEDProbesReceived",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIPsecStatistics",
                    "cipsNumTEDProbesReceived"
                  ]
                },
                "description": "Retrieve cipsNumTEDProbesReceived from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsNumTEDProbesSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIPsecStatistics/cipsNumTEDProbesSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIPsecStatistics",
                    "cipsNumTEDProbesSent"
                  ]
                },
                "description": "Retrieve cipsNumTEDProbesSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsNumTEDFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIPsecStatistics/cipsNumTEDFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIPsecStatistics",
                    "cipsNumTEDFailures"
                  ]
                },
                "description": "Retrieve cipsNumTEDFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsSysCapacityGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsSysCapacityGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsSysCapacityGroup"
                  ]
                },
                "description": "Retrieve cipsSysCapacityGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsMaxSAs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsSysCapacityGroup/cipsMaxSAs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsSysCapacityGroup",
                    "cipsMaxSAs"
                  ]
                },
                "description": "Retrieve cipsMaxSAs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cips3DesCapable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsSysCapacityGroup/cips3DesCapable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsSysCapacityGroup",
                    "cips3DesCapable"
                  ]
                },
                "description": "Retrieve cips3DesCapable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsTrapCntlGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsTrapCntlGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsTrapCntlGroup"
                  ]
                },
                "description": "Retrieve cipsTrapCntlGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsCntlIsakmpPolicyAdded",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsTrapCntlGroup/cipsCntlIsakmpPolicyAdded",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsTrapCntlGroup",
                    "cipsCntlIsakmpPolicyAdded"
                  ]
                },
                "description": "Retrieve cipsCntlIsakmpPolicyAdded from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsCntlIsakmpPolicyDeleted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsTrapCntlGroup/cipsCntlIsakmpPolicyDeleted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsTrapCntlGroup",
                    "cipsCntlIsakmpPolicyDeleted"
                  ]
                },
                "description": "Retrieve cipsCntlIsakmpPolicyDeleted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsCntlCryptomapAdded",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsTrapCntlGroup/cipsCntlCryptomapAdded",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsTrapCntlGroup",
                    "cipsCntlCryptomapAdded"
                  ]
                },
                "description": "Retrieve cipsCntlCryptomapAdded from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsCntlCryptomapDeleted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsTrapCntlGroup/cipsCntlCryptomapDeleted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsTrapCntlGroup",
                    "cipsCntlCryptomapDeleted"
                  ]
                },
                "description": "Retrieve cipsCntlCryptomapDeleted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsCntlCryptomapSetAttached",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsTrapCntlGroup/cipsCntlCryptomapSetAttached",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsTrapCntlGroup",
                    "cipsCntlCryptomapSetAttached"
                  ]
                },
                "description": "Retrieve cipsCntlCryptomapSetAttached from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsCntlCryptomapSetDetached",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsTrapCntlGroup/cipsCntlCryptomapSetDetached",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsTrapCntlGroup",
                    "cipsCntlCryptomapSetDetached"
                  ]
                },
                "description": "Retrieve cipsCntlCryptomapSetDetached from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsCntlTooManySAs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsTrapCntlGroup/cipsCntlTooManySAs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsTrapCntlGroup",
                    "cipsCntlTooManySAs"
                  ]
                },
                "description": "Retrieve cipsCntlTooManySAs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsIsakmpPolicyTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIsakmpPolicyTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIsakmpPolicyTable"
                  ]
                },
                "description": "Retrieve cipsIsakmpPolicyTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsIsakmpPolicyEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIsakmpPolicyTable/cipsIsakmpPolicyEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIsakmpPolicyTable",
                    "cipsIsakmpPolicyEntry"
                  ]
                },
                "description": "Retrieve cipsIsakmpPolicyEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsIsakmpPolPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIsakmpPolicyTable/cipsIsakmpPolicyEntry/cipsIsakmpPolPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIsakmpPolicyTable",
                    "cipsIsakmpPolicyEntry",
                    "cipsIsakmpPolPriority"
                  ]
                },
                "description": "Retrieve cipsIsakmpPolPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsIsakmpPolEncr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIsakmpPolicyTable/cipsIsakmpPolicyEntry/cipsIsakmpPolEncr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIsakmpPolicyTable",
                    "cipsIsakmpPolicyEntry",
                    "cipsIsakmpPolEncr"
                  ]
                },
                "description": "Retrieve cipsIsakmpPolEncr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsIsakmpPolHash",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIsakmpPolicyTable/cipsIsakmpPolicyEntry/cipsIsakmpPolHash",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIsakmpPolicyTable",
                    "cipsIsakmpPolicyEntry",
                    "cipsIsakmpPolHash"
                  ]
                },
                "description": "Retrieve cipsIsakmpPolHash from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsIsakmpPolAuth",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIsakmpPolicyTable/cipsIsakmpPolicyEntry/cipsIsakmpPolAuth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIsakmpPolicyTable",
                    "cipsIsakmpPolicyEntry",
                    "cipsIsakmpPolAuth"
                  ]
                },
                "description": "Retrieve cipsIsakmpPolAuth from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsIsakmpPolGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIsakmpPolicyTable/cipsIsakmpPolicyEntry/cipsIsakmpPolGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIsakmpPolicyTable",
                    "cipsIsakmpPolicyEntry",
                    "cipsIsakmpPolGroup"
                  ]
                },
                "description": "Retrieve cipsIsakmpPolGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsIsakmpPolLifetime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsIsakmpPolicyTable/cipsIsakmpPolicyEntry/cipsIsakmpPolLifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsIsakmpPolicyTable",
                    "cipsIsakmpPolicyEntry",
                    "cipsIsakmpPolLifetime"
                  ]
                },
                "description": "Retrieve cipsIsakmpPolLifetime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapSetTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapSetTable"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapSetTable/cipsStaticCryptomapSetEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapSetTable",
                    "cipsStaticCryptomapSetEntry"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapSetTable/cipsStaticCryptomapSetEntry/cipsStaticCryptomapSetName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapSetTable",
                    "cipsStaticCryptomapSetEntry",
                    "cipsStaticCryptomapSetName"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapSetTable/cipsStaticCryptomapSetEntry/cipsStaticCryptomapSetSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapSetTable",
                    "cipsStaticCryptomapSetEntry",
                    "cipsStaticCryptomapSetSize"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetNumIsakmp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapSetTable/cipsStaticCryptomapSetEntry/cipsStaticCryptomapSetNumIsakmp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapSetTable",
                    "cipsStaticCryptomapSetEntry",
                    "cipsStaticCryptomapSetNumIsakmp"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetNumIsakmp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetNumManual",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapSetTable/cipsStaticCryptomapSetEntry/cipsStaticCryptomapSetNumManual",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapSetTable",
                    "cipsStaticCryptomapSetEntry",
                    "cipsStaticCryptomapSetNumManual"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetNumManual from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetNumCET",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapSetTable/cipsStaticCryptomapSetEntry/cipsStaticCryptomapSetNumCET",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapSetTable",
                    "cipsStaticCryptomapSetEntry",
                    "cipsStaticCryptomapSetNumCET"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetNumCET from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetNumDynamic",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapSetTable/cipsStaticCryptomapSetEntry/cipsStaticCryptomapSetNumDynamic",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapSetTable",
                    "cipsStaticCryptomapSetEntry",
                    "cipsStaticCryptomapSetNumDynamic"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetNumDynamic from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetNumDisc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapSetTable/cipsStaticCryptomapSetEntry/cipsStaticCryptomapSetNumDisc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapSetTable",
                    "cipsStaticCryptomapSetEntry",
                    "cipsStaticCryptomapSetNumDisc"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetNumDisc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetNumSAs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapSetTable/cipsStaticCryptomapSetEntry/cipsStaticCryptomapSetNumSAs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapSetTable",
                    "cipsStaticCryptomapSetEntry",
                    "cipsStaticCryptomapSetNumSAs"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetNumSAs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsDynamicCryptomapSetTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsDynamicCryptomapSetTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsDynamicCryptomapSetTable"
                  ]
                },
                "description": "Retrieve cipsDynamicCryptomapSetTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsDynamicCryptomapSetEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsDynamicCryptomapSetTable/cipsDynamicCryptomapSetEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsDynamicCryptomapSetTable",
                    "cipsDynamicCryptomapSetEntry"
                  ]
                },
                "description": "Retrieve cipsDynamicCryptomapSetEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsDynamicCryptomapSetName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsDynamicCryptomapSetTable/cipsDynamicCryptomapSetEntry/cipsDynamicCryptomapSetName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsDynamicCryptomapSetTable",
                    "cipsDynamicCryptomapSetEntry",
                    "cipsDynamicCryptomapSetName"
                  ]
                },
                "description": "Retrieve cipsDynamicCryptomapSetName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsDynamicCryptomapSetSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsDynamicCryptomapSetTable/cipsDynamicCryptomapSetEntry/cipsDynamicCryptomapSetSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsDynamicCryptomapSetTable",
                    "cipsDynamicCryptomapSetEntry",
                    "cipsDynamicCryptomapSetSize"
                  ]
                },
                "description": "Retrieve cipsDynamicCryptomapSetSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsDynamicCryptomapSetNumAssoc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsDynamicCryptomapSetTable/cipsDynamicCryptomapSetEntry/cipsDynamicCryptomapSetNumAssoc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsDynamicCryptomapSetTable",
                    "cipsDynamicCryptomapSetEntry",
                    "cipsDynamicCryptomapSetNumAssoc"
                  ]
                },
                "description": "Retrieve cipsDynamicCryptomapSetNumAssoc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapTable"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapTable/cipsStaticCryptomapEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapTable",
                    "cipsStaticCryptomapEntry"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapTable/cipsStaticCryptomapEntry/cipsStaticCryptomapSetName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapTable",
                    "cipsStaticCryptomapEntry",
                    "cipsStaticCryptomapSetName"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapTable/cipsStaticCryptomapEntry/cipsStaticCryptomapPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapTable",
                    "cipsStaticCryptomapEntry",
                    "cipsStaticCryptomapPriority"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapTable/cipsStaticCryptomapEntry/cipsStaticCryptomapType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapTable",
                    "cipsStaticCryptomapEntry",
                    "cipsStaticCryptomapType"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapTable/cipsStaticCryptomapEntry/cipsStaticCryptomapDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapTable",
                    "cipsStaticCryptomapEntry",
                    "cipsStaticCryptomapDescr"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapPeer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapTable/cipsStaticCryptomapEntry/cipsStaticCryptomapPeer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapTable",
                    "cipsStaticCryptomapEntry",
                    "cipsStaticCryptomapPeer"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapPeer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapNumPeers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapTable/cipsStaticCryptomapEntry/cipsStaticCryptomapNumPeers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapTable",
                    "cipsStaticCryptomapEntry",
                    "cipsStaticCryptomapNumPeers"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapNumPeers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapPfs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapTable/cipsStaticCryptomapEntry/cipsStaticCryptomapPfs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapTable",
                    "cipsStaticCryptomapEntry",
                    "cipsStaticCryptomapPfs"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapPfs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapLifetime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapTable/cipsStaticCryptomapEntry/cipsStaticCryptomapLifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapTable",
                    "cipsStaticCryptomapEntry",
                    "cipsStaticCryptomapLifetime"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapLifetime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapLifesize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapTable/cipsStaticCryptomapEntry/cipsStaticCryptomapLifesize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapTable",
                    "cipsStaticCryptomapEntry",
                    "cipsStaticCryptomapLifesize"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapLifesize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapLevelHost",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsStaticCryptomapTable/cipsStaticCryptomapEntry/cipsStaticCryptomapLevelHost",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsStaticCryptomapTable",
                    "cipsStaticCryptomapEntry",
                    "cipsStaticCryptomapLevelHost"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapLevelHost from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsCryptomapSetIfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable"
                  ]
                },
                "description": "Retrieve cipsCryptomapSetIfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsCryptomapSetIfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/cipsCryptomapSetIfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "cipsCryptomapSetIfEntry"
                  ]
                },
                "description": "Retrieve cipsCryptomapSetIfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/cipsCryptomapSetIfEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "cipsCryptomapSetIfEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/cipsCryptomapSetIfEntry/cipsStaticCryptomapSetName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "cipsCryptomapSetIfEntry",
                    "cipsStaticCryptomapSetName"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsCryptomapSetIfVirtual",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/cipsCryptomapSetIfEntry/cipsCryptomapSetIfVirtual",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "cipsCryptomapSetIfEntry",
                    "cipsCryptomapSetIfVirtual"
                  ]
                },
                "description": "Retrieve cipsCryptomapSetIfVirtual from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsCryptomapSetIfStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/cipsCryptomapSetIfEntry/cipsCryptomapSetIfStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "cipsCryptomapSetIfEntry",
                    "cipsCryptomapSetIfStatus"
                  ]
                },
                "description": "Retrieve cipsCryptomapSetIfStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsNumIsakmpPolicies",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/object-1/cipsNumIsakmpPolicies",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "object-1",
                    "cipsNumIsakmpPolicies"
                  ]
                },
                "description": "Retrieve cipsNumIsakmpPolicies from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/object-1/cipsStaticCryptomapSetName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "object-1",
                    "cipsStaticCryptomapSetName"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/object-1/cipsStaticCryptomapPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "object-1",
                    "cipsStaticCryptomapPriority"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/object-1/cipsStaticCryptomapType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "object-1",
                    "cipsStaticCryptomapType"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/object-2/cipsStaticCryptomapSetName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "object-2",
                    "cipsStaticCryptomapSetName"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/object-2/cipsStaticCryptomapSetSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "object-2",
                    "cipsStaticCryptomapSetSize"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/object-1/cipsStaticCryptomapSetSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "object-1",
                    "cipsStaticCryptomapSetSize"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetNumIsakmp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/object-2/cipsStaticCryptomapSetNumIsakmp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "object-2",
                    "cipsStaticCryptomapSetNumIsakmp"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetNumIsakmp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/object-3/cipsStaticCryptomapSetName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "object-3",
                    "cipsStaticCryptomapSetName"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsStaticCryptomapSetNumDynamic",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/object-3/cipsStaticCryptomapSetNumDynamic",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "object-3",
                    "cipsStaticCryptomapSetNumDynamic"
                  ]
                },
                "description": "Retrieve cipsStaticCryptomapSetNumDynamic from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipsMaxSAs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-MIB:CISCO-IPSEC-MIB/cipsCryptomapSetIfTable/object-1/cipsMaxSAs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-MIB:CISCO-IPSEC-MIB",
                    "cipsCryptomapSetIfTable",
                    "object-1",
                    "cipsMaxSAs"
                  ]
                },
                "description": "Retrieve cipsMaxSAs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IPSEC-POLICY-MAP-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IPSEC-POLICY-MAP-MIB\n\nMIB data from `CISCO-IPSEC-POLICY-MAP-MIB` module.\n\n**Root containers:** 1 (CISCO-IPSEC-POLICY-MAP-MIB)\n**Paths:** 12 | **Descendants:** 11\n\nAll endpoints are read-only (GET).\n\nEndpoints: 12 | Operations: 12",
          "item": [
            {
              "name": "GET Get CISCO-IPSEC-POLICY-MAP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IPSEC-POLICY-MAP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ikePolMapTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB/ikePolMapTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB",
                    "ikePolMapTable"
                  ]
                },
                "description": "Retrieve ikePolMapTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ikePolMapEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB/ikePolMapTable/ikePolMapEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB",
                    "ikePolMapTable",
                    "ikePolMapEntry"
                  ]
                },
                "description": "Retrieve ikePolMapEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ikePolMapTunIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB/ikePolMapTable/ikePolMapEntry/ikePolMapTunIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB",
                    "ikePolMapTable",
                    "ikePolMapEntry",
                    "ikePolMapTunIndex"
                  ]
                },
                "description": "Retrieve ikePolMapTunIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ikePolMapPolicyNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB/ikePolMapTable/ikePolMapEntry/ikePolMapPolicyNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB",
                    "ikePolMapTable",
                    "ikePolMapEntry",
                    "ikePolMapPolicyNum"
                  ]
                },
                "description": "Retrieve ikePolMapPolicyNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSecPolMapTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB/ipSecPolMapTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB",
                    "ipSecPolMapTable"
                  ]
                },
                "description": "Retrieve ipSecPolMapTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSecPolMapEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB/ipSecPolMapTable/ipSecPolMapEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB",
                    "ipSecPolMapTable",
                    "ipSecPolMapEntry"
                  ]
                },
                "description": "Retrieve ipSecPolMapEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSecPolMapTunIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB/ipSecPolMapTable/ipSecPolMapEntry/ipSecPolMapTunIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB",
                    "ipSecPolMapTable",
                    "ipSecPolMapEntry",
                    "ipSecPolMapTunIndex"
                  ]
                },
                "description": "Retrieve ipSecPolMapTunIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSecPolMapCryptoMapName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB/ipSecPolMapTable/ipSecPolMapEntry/ipSecPolMapCryptoMapName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB",
                    "ipSecPolMapTable",
                    "ipSecPolMapEntry",
                    "ipSecPolMapCryptoMapName"
                  ]
                },
                "description": "Retrieve ipSecPolMapCryptoMapName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSecPolMapCryptoMapNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB/ipSecPolMapTable/ipSecPolMapEntry/ipSecPolMapCryptoMapNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB",
                    "ipSecPolMapTable",
                    "ipSecPolMapEntry",
                    "ipSecPolMapCryptoMapNum"
                  ]
                },
                "description": "Retrieve ipSecPolMapCryptoMapNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSecPolMapAclString",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB/ipSecPolMapTable/ipSecPolMapEntry/ipSecPolMapAclString",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB",
                    "ipSecPolMapTable",
                    "ipSecPolMapEntry",
                    "ipSecPolMapAclString"
                  ]
                },
                "description": "Retrieve ipSecPolMapAclString from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSecPolMapAceString",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB/ipSecPolMapTable/ipSecPolMapEntry/ipSecPolMapAceString",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSEC-POLICY-MAP-MIB:CISCO-IPSEC-POLICY-MAP-MIB",
                    "ipSecPolMapTable",
                    "ipSecPolMapEntry",
                    "ipSecPolMapAceString"
                  ]
                },
                "description": "Retrieve ipSecPolMapAceString from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IPSLA-AUTOMEASURE-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IPSLA-AUTOMEASURE-MIB\n\nMIB data from `CISCO-IPSLA-AUTOMEASURE-MIB` module.\n\n**Root containers:** 1 (CISCO-IPSLA-AUTOMEASURE-MIB)\n**Paths:** 50 | **Descendants:** 49\n\nAll endpoints are read-only (GET).\n\nEndpoints: 50 | Operations: 50",
          "item": [
            {
              "name": "GET Get CISCO-IPSLA-AUTOMEASURE-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IPSLA-AUTOMEASURE-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupTable"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupTable/cipslaAutoGroupEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupTable",
                    "cipslaAutoGroupEntry"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupTable/cipslaAutoGroupEntry/cipslaAutoGroupName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupTable",
                    "cipslaAutoGroupEntry",
                    "cipslaAutoGroupName"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupTable/cipslaAutoGroupEntry/cipslaAutoGroupDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupTable",
                    "cipslaAutoGroupEntry",
                    "cipslaAutoGroupDescription"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupDestinationName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupTable/cipslaAutoGroupEntry/cipslaAutoGroupDestinationName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupTable",
                    "cipslaAutoGroupEntry",
                    "cipslaAutoGroupDestinationName"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupDestinationName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupADDestPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupTable/cipslaAutoGroupEntry/cipslaAutoGroupADDestPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupTable",
                    "cipslaAutoGroupEntry",
                    "cipslaAutoGroupADDestPort"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupADDestPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupOperTemplateName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupTable/cipslaAutoGroupEntry/cipslaAutoGroupOperTemplateName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupTable",
                    "cipslaAutoGroupEntry",
                    "cipslaAutoGroupOperTemplateName"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupOperTemplateName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupSchedulerId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupTable/cipslaAutoGroupEntry/cipslaAutoGroupSchedulerId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupTable",
                    "cipslaAutoGroupEntry",
                    "cipslaAutoGroupSchedulerId"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupSchedulerId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupQoSEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupTable/cipslaAutoGroupEntry/cipslaAutoGroupQoSEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupTable",
                    "cipslaAutoGroupEntry",
                    "cipslaAutoGroupQoSEnable"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupQoSEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupOperType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupTable/cipslaAutoGroupEntry/cipslaAutoGroupOperType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupTable",
                    "cipslaAutoGroupEntry",
                    "cipslaAutoGroupOperType"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupOperType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupDestIPADEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupTable/cipslaAutoGroupEntry/cipslaAutoGroupDestIPADEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupTable",
                    "cipslaAutoGroupEntry",
                    "cipslaAutoGroupDestIPADEnable"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupDestIPADEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupADMeasureRetry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupTable/cipslaAutoGroupEntry/cipslaAutoGroupADMeasureRetry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupTable",
                    "cipslaAutoGroupEntry",
                    "cipslaAutoGroupADMeasureRetry"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupADMeasureRetry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupADDestIPAgeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupTable/cipslaAutoGroupEntry/cipslaAutoGroupADDestIPAgeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupTable",
                    "cipslaAutoGroupEntry",
                    "cipslaAutoGroupADDestIPAgeout"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupADDestIPAgeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupTable/cipslaAutoGroupEntry/cipslaAutoGroupStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupTable",
                    "cipslaAutoGroupEntry",
                    "cipslaAutoGroupStorageType"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupTable/cipslaAutoGroupEntry/cipslaAutoGroupRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupTable",
                    "cipslaAutoGroupEntry",
                    "cipslaAutoGroupRowStatus"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupDestTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupDestTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupDestTable"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupDestTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupDestEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupDestTable/cipslaAutoGroupDestEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupDestTable",
                    "cipslaAutoGroupDestEntry"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupDestEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupDestName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupDestTable/cipslaAutoGroupDestEntry/cipslaAutoGroupDestName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupDestTable",
                    "cipslaAutoGroupDestEntry",
                    "cipslaAutoGroupDestName"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupDestName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupDestIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupDestTable/cipslaAutoGroupDestEntry/cipslaAutoGroupDestIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupDestTable",
                    "cipslaAutoGroupDestEntry",
                    "cipslaAutoGroupDestIpAddrType"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupDestIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupDestIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupDestTable/cipslaAutoGroupDestEntry/cipslaAutoGroupDestIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupDestTable",
                    "cipslaAutoGroupDestEntry",
                    "cipslaAutoGroupDestIpAddr"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupDestIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupDestPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupDestTable/cipslaAutoGroupDestEntry/cipslaAutoGroupDestPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupDestTable",
                    "cipslaAutoGroupDestEntry",
                    "cipslaAutoGroupDestPort"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupDestPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupDestStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupDestTable/cipslaAutoGroupDestEntry/cipslaAutoGroupDestStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupDestTable",
                    "cipslaAutoGroupDestEntry",
                    "cipslaAutoGroupDestStorageType"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupDestStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupDestRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupDestTable/cipslaAutoGroupDestEntry/cipslaAutoGroupDestRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupDestTable",
                    "cipslaAutoGroupDestEntry",
                    "cipslaAutoGroupDestRowStatus"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupDestRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaReactTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaReactTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaReactTable"
                  ]
                },
                "description": "Retrieve cipslaReactTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaReactEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaReactTable/cipslaReactEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaReactTable",
                    "cipslaReactEntry"
                  ]
                },
                "description": "Retrieve cipslaReactEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupOperType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaReactTable/cipslaReactEntry/cipslaAutoGroupOperType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaReactTable",
                    "cipslaReactEntry",
                    "cipslaAutoGroupOperType"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupOperType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupOperTemplateName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaReactTable/cipslaReactEntry/cipslaAutoGroupOperTemplateName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaReactTable",
                    "cipslaReactEntry",
                    "cipslaAutoGroupOperTemplateName"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupOperTemplateName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaReactConfigIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaReactTable/cipslaReactEntry/cipslaReactConfigIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaReactTable",
                    "cipslaReactEntry",
                    "cipslaReactConfigIndex"
                  ]
                },
                "description": "Retrieve cipslaReactConfigIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaReactVar",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaReactTable/cipslaReactEntry/cipslaReactVar",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaReactTable",
                    "cipslaReactEntry",
                    "cipslaReactVar"
                  ]
                },
                "description": "Retrieve cipslaReactVar from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaReactThresholdType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaReactTable/cipslaReactEntry/cipslaReactThresholdType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaReactTable",
                    "cipslaReactEntry",
                    "cipslaReactThresholdType"
                  ]
                },
                "description": "Retrieve cipslaReactThresholdType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaReactActionType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaReactTable/cipslaReactEntry/cipslaReactActionType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaReactTable",
                    "cipslaReactEntry",
                    "cipslaReactActionType"
                  ]
                },
                "description": "Retrieve cipslaReactActionType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaReactThresholdRising",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaReactTable/cipslaReactEntry/cipslaReactThresholdRising",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaReactTable",
                    "cipslaReactEntry",
                    "cipslaReactThresholdRising"
                  ]
                },
                "description": "Retrieve cipslaReactThresholdRising from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaReactThresholdFalling",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaReactTable/cipslaReactEntry/cipslaReactThresholdFalling",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaReactTable",
                    "cipslaReactEntry",
                    "cipslaReactThresholdFalling"
                  ]
                },
                "description": "Retrieve cipslaReactThresholdFalling from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaReactThresholdCountX",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaReactTable/cipslaReactEntry/cipslaReactThresholdCountX",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaReactTable",
                    "cipslaReactEntry",
                    "cipslaReactThresholdCountX"
                  ]
                },
                "description": "Retrieve cipslaReactThresholdCountX from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaReactThresholdCountY",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaReactTable/cipslaReactEntry/cipslaReactThresholdCountY",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaReactTable",
                    "cipslaReactEntry",
                    "cipslaReactThresholdCountY"
                  ]
                },
                "description": "Retrieve cipslaReactThresholdCountY from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaReactStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaReactTable/cipslaReactEntry/cipslaReactStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaReactTable",
                    "cipslaReactEntry",
                    "cipslaReactStorageType"
                  ]
                },
                "description": "Retrieve cipslaReactStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaReactRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaReactTable/cipslaReactEntry/cipslaReactRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaReactTable",
                    "cipslaReactEntry",
                    "cipslaReactRowStatus"
                  ]
                },
                "description": "Retrieve cipslaReactRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupSchedTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupSchedTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupSchedTable"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupSchedTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupSchedEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupSchedTable/cipslaAutoGroupSchedEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupSchedTable",
                    "cipslaAutoGroupSchedEntry"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupSchedEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupSchedId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupSchedTable/cipslaAutoGroupSchedEntry/cipslaAutoGroupSchedId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupSchedTable",
                    "cipslaAutoGroupSchedEntry",
                    "cipslaAutoGroupSchedId"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupSchedId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupSchedPeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupSchedTable/cipslaAutoGroupSchedEntry/cipslaAutoGroupSchedPeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupSchedTable",
                    "cipslaAutoGroupSchedEntry",
                    "cipslaAutoGroupSchedPeriod"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupSchedPeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupSchedInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupSchedTable/cipslaAutoGroupSchedEntry/cipslaAutoGroupSchedInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupSchedTable",
                    "cipslaAutoGroupSchedEntry",
                    "cipslaAutoGroupSchedInterval"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupSchedInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupSchedLife",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupSchedTable/cipslaAutoGroupSchedEntry/cipslaAutoGroupSchedLife",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupSchedTable",
                    "cipslaAutoGroupSchedEntry",
                    "cipslaAutoGroupSchedLife"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupSchedLife from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupSchedAgeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupSchedTable/cipslaAutoGroupSchedEntry/cipslaAutoGroupSchedAgeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupSchedTable",
                    "cipslaAutoGroupSchedEntry",
                    "cipslaAutoGroupSchedAgeout"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupSchedAgeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupSchedMaxInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupSchedTable/cipslaAutoGroupSchedEntry/cipslaAutoGroupSchedMaxInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupSchedTable",
                    "cipslaAutoGroupSchedEntry",
                    "cipslaAutoGroupSchedMaxInterval"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupSchedMaxInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupSchedMinInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupSchedTable/cipslaAutoGroupSchedEntry/cipslaAutoGroupSchedMinInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupSchedTable",
                    "cipslaAutoGroupSchedEntry",
                    "cipslaAutoGroupSchedMinInterval"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupSchedMinInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupSchedStartTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupSchedTable/cipslaAutoGroupSchedEntry/cipslaAutoGroupSchedStartTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupSchedTable",
                    "cipslaAutoGroupSchedEntry",
                    "cipslaAutoGroupSchedStartTime"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupSchedStartTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupSchedStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupSchedTable/cipslaAutoGroupSchedEntry/cipslaAutoGroupSchedStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupSchedTable",
                    "cipslaAutoGroupSchedEntry",
                    "cipslaAutoGroupSchedStorageType"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupSchedStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaAutoGroupSchedRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB/cipslaAutoGroupSchedTable/cipslaAutoGroupSchedEntry/cipslaAutoGroupSchedRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-AUTOMEASURE-MIB:CISCO-IPSLA-AUTOMEASURE-MIB",
                    "cipslaAutoGroupSchedTable",
                    "cipslaAutoGroupSchedEntry",
                    "cipslaAutoGroupSchedRowStatus"
                  ]
                },
                "description": "Retrieve cipslaAutoGroupSchedRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IPSLA-ECHO-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IPSLA-ECHO-MIB\n\nMIB data from `CISCO-IPSLA-ECHO-MIB` module.\n\n**Root containers:** 1 (CISCO-IPSLA-ECHO-MIB)\n**Paths:** 63 | **Descendants:** 62\n\nAll endpoints are read-only (GET).\n\nEndpoints: 63 | Operations: 63",
          "item": [
            {
              "name": "GET Get CISCO-IPSLA-ECHO-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IPSLA-ECHO-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplName"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplDescription"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplSrcAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplSrcAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplSrcAddrType"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplSrcAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplSrcAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplSrcAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplSrcAddr"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplSrcAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplTimeOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplTimeOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplTimeOut"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplTimeOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplVerifyData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplVerifyData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplVerifyData"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplVerifyData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplReqDataSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplReqDataSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplReqDataSize"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplReqDataSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplTOS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplTOS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplTOS"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplTOS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplVrfName"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplThreshold"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplHistLives",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplHistLives",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplHistLives"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplHistLives from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplHistBuckets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplHistBuckets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplHistBuckets"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplHistBuckets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplHistFilter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplHistFilter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplHistFilter"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplHistFilter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplStatsHours",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplStatsHours",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplStatsHours"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplStatsHours from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplDistBuckets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplDistBuckets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplDistBuckets"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplDistBuckets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplDistInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplDistInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplDistInterval"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplDistInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplStorageType"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpEchoTmplRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaIcmpEchoTmplTable/cipslaIcmpEchoTmplEntry/cipslaIcmpEchoTmplRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaIcmpEchoTmplTable",
                    "cipslaIcmpEchoTmplEntry",
                    "cipslaIcmpEchoTmplRowStatus"
                  ]
                },
                "description": "Retrieve cipslaIcmpEchoTmplRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplName"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplDescription"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplControlEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplControlEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplControlEnable"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplControlEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplSrcAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplSrcAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplSrcAddrType"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplSrcAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplSrcAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplSrcAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplSrcAddr"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplSrcAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplSrcPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplSrcPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplSrcPort"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplSrcPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplTimeOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplTimeOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplTimeOut"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplTimeOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplVerifyData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplVerifyData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplVerifyData"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplVerifyData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplReqDataSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplReqDataSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplReqDataSize"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplReqDataSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplTOS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplTOS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplTOS"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplTOS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplVrfName"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplThreshold"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplHistLives",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplHistLives",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplHistLives"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplHistLives from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplHistBuckets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplHistBuckets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplHistBuckets"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplHistBuckets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplHistFilter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplHistFilter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplHistFilter"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplHistFilter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplStatsHours",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplStatsHours",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplStatsHours"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplStatsHours from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplDistBuckets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplDistBuckets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplDistBuckets"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplDistBuckets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplDistInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplDistInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplDistInterval"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplDistInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplStorageType"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpEchoTmplRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaUdpEchoTmplTable/cipslaUdpEchoTmplEntry/cipslaUdpEchoTmplRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaUdpEchoTmplTable",
                    "cipslaUdpEchoTmplEntry",
                    "cipslaUdpEchoTmplRowStatus"
                  ]
                },
                "description": "Retrieve cipslaUdpEchoTmplRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplName"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplDescription"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplControlEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplControlEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplControlEnable"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplControlEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplSrcAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplSrcAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplSrcAddrType"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplSrcAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplSrcAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplSrcAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplSrcAddr"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplSrcAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplSrcPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplSrcPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplSrcPort"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplSrcPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplTimeOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplTimeOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplTimeOut"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplTimeOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplVerifyData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplVerifyData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplVerifyData"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplVerifyData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplTOS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplTOS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplTOS"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplTOS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplThreshold"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplHistLives",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplHistLives",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplHistLives"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplHistLives from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplHistBuckets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplHistBuckets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplHistBuckets"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplHistBuckets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplHistFilter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplHistFilter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplHistFilter"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplHistFilter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplStatsHours",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplStatsHours",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplStatsHours"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplStatsHours from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplDistBuckets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplDistBuckets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplDistBuckets"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplDistBuckets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplDistInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplDistInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplDistInterval"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplDistInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplStorageType"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaTcpConnTmplRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB/cipslaTcpConnTmplTable/cipslaTcpConnTmplEntry/cipslaTcpConnTmplRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-ECHO-MIB:CISCO-IPSLA-ECHO-MIB",
                    "cipslaTcpConnTmplTable",
                    "cipslaTcpConnTmplEntry",
                    "cipslaTcpConnTmplRowStatus"
                  ]
                },
                "description": "Retrieve cipslaTcpConnTmplRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-IPSLA-JITTER-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-IPSLA-JITTER-MIB\n\nMIB data from `CISCO-IPSLA-JITTER-MIB` module.\n\n**Root containers:** 1 (CISCO-IPSLA-JITTER-MIB)\n**Paths:** 50 | **Descendants:** 49\n\nAll endpoints are read-only (GET).\n\nEndpoints: 50 | Operations: 50",
          "item": [
            {
              "name": "GET Get CISCO-IPSLA-JITTER-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB"
                  ]
                },
                "description": "Retrieve CISCO-IPSLA-JITTER-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplName"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplDescription"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplControlEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplControlEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplControlEnable"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplControlEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplTimeOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplTimeOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplTimeOut"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplTimeOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplVerifyData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplVerifyData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplVerifyData"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplVerifyData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplCodecType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplCodecType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplCodecType"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplCodecType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplCodecInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplCodecInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplCodecInterval"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplCodecInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplCodecPayload",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplCodecPayload",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplCodecPayload"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplCodecPayload from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplCodecNumPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplCodecNumPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplCodecNumPkts"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplCodecNumPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplInterval"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplNumPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplNumPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplNumPkts"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplNumPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplSrcAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplSrcAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplSrcAddrType"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplSrcAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplSrcAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplSrcAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplSrcAddr"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplSrcAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplSrcPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplSrcPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplSrcPort"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplSrcPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplPrecision",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplPrecision",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplPrecision"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplPrecision from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplReqDataSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplReqDataSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplReqDataSize"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplReqDataSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplPktPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplPktPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplPktPriority"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplPktPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplTOS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplTOS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplTOS"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplTOS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplVrfName"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplThreshold"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplNTPTolAbs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplNTPTolAbs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplNTPTolAbs"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplNTPTolAbs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplNTPTolPct",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplNTPTolPct",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplNTPTolPct"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplNTPTolPct from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplNTPTolType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplNTPTolType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplNTPTolType"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplNTPTolType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplIcpifFactor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplIcpifFactor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplIcpifFactor"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplIcpifFactor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplStatsHours",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplStatsHours",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplStatsHours"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplStatsHours from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplDistBuckets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplDistBuckets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplDistBuckets"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplDistBuckets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplDistInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplDistInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplDistInterval"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplDistInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplStorageType"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaUdpJitterTmplRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaUdpJitterTmplTable/cipslaUdpJitterTmplEntry/cipslaUdpJitterTmplRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaUdpJitterTmplTable",
                    "cipslaUdpJitterTmplEntry",
                    "cipslaUdpJitterTmplRowStatus"
                  ]
                },
                "description": "Retrieve cipslaUdpJitterTmplRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry/cipslaIcmpJitterTmplName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry",
                    "cipslaIcmpJitterTmplName"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry/cipslaIcmpJitterTmplDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry",
                    "cipslaIcmpJitterTmplDescription"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplTimeOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry/cipslaIcmpJitterTmplTimeOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry",
                    "cipslaIcmpJitterTmplTimeOut"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplTimeOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplVerifyData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry/cipslaIcmpJitterTmplVerifyData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry",
                    "cipslaIcmpJitterTmplVerifyData"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplVerifyData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplNumPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry/cipslaIcmpJitterTmplNumPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry",
                    "cipslaIcmpJitterTmplNumPkts"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplNumPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry/cipslaIcmpJitterTmplInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry",
                    "cipslaIcmpJitterTmplInterval"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplSrcAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry/cipslaIcmpJitterTmplSrcAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry",
                    "cipslaIcmpJitterTmplSrcAddrType"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplSrcAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplSrcAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry/cipslaIcmpJitterTmplSrcAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry",
                    "cipslaIcmpJitterTmplSrcAddr"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplSrcAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplTOS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry/cipslaIcmpJitterTmplTOS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry",
                    "cipslaIcmpJitterTmplTOS"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplTOS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry/cipslaIcmpJitterTmplVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry",
                    "cipslaIcmpJitterTmplVrfName"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry/cipslaIcmpJitterTmplThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry",
                    "cipslaIcmpJitterTmplThreshold"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplStatsHours",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry/cipslaIcmpJitterTmplStatsHours",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry",
                    "cipslaIcmpJitterTmplStatsHours"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplStatsHours from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplDistBuckets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry/cipslaIcmpJitterTmplDistBuckets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry",
                    "cipslaIcmpJitterTmplDistBuckets"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplDistBuckets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplDistInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry/cipslaIcmpJitterTmplDistInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry",
                    "cipslaIcmpJitterTmplDistInterval"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplDistInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry/cipslaIcmpJitterTmplStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry",
                    "cipslaIcmpJitterTmplStorageType"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cipslaIcmpJitterTmplRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB/cipslaIcmpJitterTmplTable/cipslaIcmpJitterTmplEntry/cipslaIcmpJitterTmplRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-IPSLA-JITTER-MIB:CISCO-IPSLA-JITTER-MIB",
                    "cipslaIcmpJitterTmplTable",
                    "cipslaIcmpJitterTmplEntry",
                    "cipslaIcmpJitterTmplRowStatus"
                  ]
                },
                "description": "Retrieve cipslaIcmpJitterTmplRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-LICENSE-MGMT-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-LICENSE-MGMT-MIB\n\nMIB data from `CISCO-LICENSE-MGMT-MIB` module.\n\n**Root containers:** 1 (CISCO-LICENSE-MGMT-MIB)\n**Paths:** 139 | **Descendants:** 300\n\nAll endpoints are read-only (GET).\n\nEndpoints: 139 | Operations: 139",
          "item": [
            {
              "name": "GET Get CISCO-LICENSE-MGMT-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB"
                  ]
                },
                "description": "Retrieve CISCO-LICENSE-MGMT-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseConfiguration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseConfiguration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseConfiguration"
                  ]
                },
                "description": "Retrieve clmgmtLicenseConfiguration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtNextFreeLicenseActionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseConfiguration/clmgmtNextFreeLicenseActionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseConfiguration",
                    "clmgmtNextFreeLicenseActionIndex"
                  ]
                },
                "description": "Retrieve clmgmtNextFreeLicenseActionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseDeviceInformation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseDeviceInformation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseDeviceInformation"
                  ]
                },
                "description": "Retrieve clmgmtLicenseDeviceInformation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtNextFreeDevCredExportActionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseDeviceInformation/clmgmtNextFreeDevCredExportActionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseDeviceInformation",
                    "clmgmtNextFreeDevCredExportActionIndex"
                  ]
                },
                "description": "Retrieve clmgmtNextFreeDevCredExportActionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseNotifObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseNotifObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseNotifObjects"
                  ]
                },
                "description": "Retrieve clmgmtLicenseNotifObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseUsageNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseNotifObjects/clmgmtLicenseUsageNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseNotifObjects",
                    "clmgmtLicenseUsageNotifEnable"
                  ]
                },
                "description": "Retrieve clmgmtLicenseUsageNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseDeploymentNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseNotifObjects/clmgmtLicenseDeploymentNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseNotifObjects",
                    "clmgmtLicenseDeploymentNotifEnable"
                  ]
                },
                "description": "Retrieve clmgmtLicenseDeploymentNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseErrorNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseNotifObjects/clmgmtLicenseErrorNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseNotifObjects",
                    "clmgmtLicenseErrorNotifEnable"
                  ]
                },
                "description": "Retrieve clmgmtLicenseErrorNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseActionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable"
                  ]
                },
                "description": "Retrieve clmgmtLicenseActionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseActionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry"
                  ]
                },
                "description": "Retrieve clmgmtLicenseActionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseActionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseActionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseActionIndex"
                  ]
                },
                "description": "Retrieve clmgmtLicenseActionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseActionEntPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseActionEntPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseActionEntPhysicalIndex"
                  ]
                },
                "description": "Retrieve clmgmtLicenseActionEntPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseActionTransferProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseActionTransferProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseActionTransferProtocol"
                  ]
                },
                "description": "Retrieve clmgmtLicenseActionTransferProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseServerAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseServerAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseServerAddressType"
                  ]
                },
                "description": "Retrieve clmgmtLicenseServerAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseServerAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseServerAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseServerAddress"
                  ]
                },
                "description": "Retrieve clmgmtLicenseServerAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseServerUsername",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseServerUsername",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseServerUsername"
                  ]
                },
                "description": "Retrieve clmgmtLicenseServerUsername from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseServerPassword",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseServerPassword",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseServerPassword"
                  ]
                },
                "description": "Retrieve clmgmtLicenseServerPassword from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseFile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseFile"
                  ]
                },
                "description": "Retrieve clmgmtLicenseFile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStore",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseStore",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseStore"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStore from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseActionLicenseIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseActionLicenseIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseActionLicenseIndex"
                  ]
                },
                "description": "Retrieve clmgmtLicenseActionLicenseIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicensePermissionTicketFile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicensePermissionTicketFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicensePermissionTicketFile"
                  ]
                },
                "description": "Retrieve clmgmtLicensePermissionTicketFile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseRehostTicketFile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseRehostTicketFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseRehostTicketFile"
                  ]
                },
                "description": "Retrieve clmgmtLicenseRehostTicketFile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseBackupFile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseBackupFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseBackupFile"
                  ]
                },
                "description": "Retrieve clmgmtLicenseBackupFile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStopOnFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseStopOnFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseStopOnFailure"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStopOnFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseAction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseAction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseAction"
                  ]
                },
                "description": "Retrieve clmgmtLicenseAction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseActionState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseActionState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseActionState"
                  ]
                },
                "description": "Retrieve clmgmtLicenseActionState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseJobQPosition",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseJobQPosition",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseJobQPosition"
                  ]
                },
                "description": "Retrieve clmgmtLicenseJobQPosition from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseActionFailCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseActionFailCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseActionFailCause"
                  ]
                },
                "description": "Retrieve clmgmtLicenseActionFailCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseActionStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseActionStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseActionStorageType"
                  ]
                },
                "description": "Retrieve clmgmtLicenseActionStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseActionRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseActionRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseActionRowStatus"
                  ]
                },
                "description": "Retrieve clmgmtLicenseActionRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseAcceptEULA",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseAcceptEULA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseAcceptEULA"
                  ]
                },
                "description": "Retrieve clmgmtLicenseAcceptEULA from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseEULAFile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionTable/clmgmtLicenseActionEntry/clmgmtLicenseEULAFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionTable",
                    "clmgmtLicenseActionEntry",
                    "clmgmtLicenseEULAFile"
                  ]
                },
                "description": "Retrieve clmgmtLicenseEULAFile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseActionResultTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionResultTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionResultTable"
                  ]
                },
                "description": "Retrieve clmgmtLicenseActionResultTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseActionResultEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionResultTable/clmgmtLicenseActionResultEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionResultTable",
                    "clmgmtLicenseActionResultEntry"
                  ]
                },
                "description": "Retrieve clmgmtLicenseActionResultEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseActionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionResultTable/clmgmtLicenseActionResultEntry/clmgmtLicenseActionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionResultTable",
                    "clmgmtLicenseActionResultEntry",
                    "clmgmtLicenseActionIndex"
                  ]
                },
                "description": "Retrieve clmgmtLicenseActionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionResultTable/clmgmtLicenseActionResultEntry/clmgmtLicenseNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionResultTable",
                    "clmgmtLicenseActionResultEntry",
                    "clmgmtLicenseNumber"
                  ]
                },
                "description": "Retrieve clmgmtLicenseNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseIndivActionState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionResultTable/clmgmtLicenseActionResultEntry/clmgmtLicenseIndivActionState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionResultTable",
                    "clmgmtLicenseActionResultEntry",
                    "clmgmtLicenseIndivActionState"
                  ]
                },
                "description": "Retrieve clmgmtLicenseIndivActionState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseIndivActionFailCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseActionResultTable/clmgmtLicenseActionResultEntry/clmgmtLicenseIndivActionFailCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseActionResultTable",
                    "clmgmtLicenseActionResultEntry",
                    "clmgmtLicenseIndivActionFailCause"
                  ]
                },
                "description": "Retrieve clmgmtLicenseIndivActionFailCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStoreInfoTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseStoreInfoTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseStoreInfoTable"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStoreInfoTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStoreInfoEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseStoreInfoTable/clmgmtLicenseStoreInfoEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseStoreInfoTable",
                    "clmgmtLicenseStoreInfoEntry"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStoreInfoEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseStoreInfoTable/clmgmtLicenseStoreInfoEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseStoreInfoTable",
                    "clmgmtLicenseStoreInfoEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStoreIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseStoreInfoTable/clmgmtLicenseStoreInfoEntry/clmgmtLicenseStoreIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseStoreInfoTable",
                    "clmgmtLicenseStoreInfoEntry",
                    "clmgmtLicenseStoreIndex"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStoreIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStoreName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseStoreInfoTable/clmgmtLicenseStoreInfoEntry/clmgmtLicenseStoreName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseStoreInfoTable",
                    "clmgmtLicenseStoreInfoEntry",
                    "clmgmtLicenseStoreName"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStoreName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStoreTotalSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseStoreInfoTable/clmgmtLicenseStoreInfoEntry/clmgmtLicenseStoreTotalSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseStoreInfoTable",
                    "clmgmtLicenseStoreInfoEntry",
                    "clmgmtLicenseStoreTotalSize"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStoreTotalSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStoreSizeRemaining",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseStoreInfoTable/clmgmtLicenseStoreInfoEntry/clmgmtLicenseStoreSizeRemaining",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseStoreInfoTable",
                    "clmgmtLicenseStoreInfoEntry",
                    "clmgmtLicenseStoreSizeRemaining"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStoreSizeRemaining from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseDeviceInfoTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseDeviceInfoTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseDeviceInfoTable"
                  ]
                },
                "description": "Retrieve clmgmtLicenseDeviceInfoTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseDeviceInfoEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseDeviceInfoTable/clmgmtLicenseDeviceInfoEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseDeviceInfoTable",
                    "clmgmtLicenseDeviceInfoEntry"
                  ]
                },
                "description": "Retrieve clmgmtLicenseDeviceInfoEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseDeviceInfoTable/clmgmtLicenseDeviceInfoEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseDeviceInfoTable",
                    "clmgmtLicenseDeviceInfoEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtDefaultLicenseStore",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseDeviceInfoTable/clmgmtLicenseDeviceInfoEntry/clmgmtDefaultLicenseStore",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseDeviceInfoTable",
                    "clmgmtLicenseDeviceInfoEntry",
                    "clmgmtDefaultLicenseStore"
                  ]
                },
                "description": "Retrieve clmgmtDefaultLicenseStore from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseInfoTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable"
                  ]
                },
                "description": "Retrieve clmgmtLicenseInfoTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseInfoEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry"
                  ]
                },
                "description": "Retrieve clmgmtLicenseInfoEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStoreUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicenseStoreUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicenseStoreUsed"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStoreUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicenseIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicenseIndex"
                  ]
                },
                "description": "Retrieve clmgmtLicenseIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseFeatureName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicenseFeatureName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicenseFeatureName"
                  ]
                },
                "description": "Retrieve clmgmtLicenseFeatureName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseFeatureVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicenseFeatureVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicenseFeatureVersion"
                  ]
                },
                "description": "Retrieve clmgmtLicenseFeatureVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicenseType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicenseType"
                  ]
                },
                "description": "Retrieve clmgmtLicenseType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseCounted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicenseCounted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicenseCounted"
                  ]
                },
                "description": "Retrieve clmgmtLicenseCounted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseValidityPeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicenseValidityPeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicenseValidityPeriod"
                  ]
                },
                "description": "Retrieve clmgmtLicenseValidityPeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseValidityPeriodRemaining",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicenseValidityPeriodRemaining",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicenseValidityPeriodRemaining"
                  ]
                },
                "description": "Retrieve clmgmtLicenseValidityPeriodRemaining from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseExpiredPeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicenseExpiredPeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicenseExpiredPeriod"
                  ]
                },
                "description": "Retrieve clmgmtLicenseExpiredPeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseMaxUsageCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicenseMaxUsageCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicenseMaxUsageCount"
                  ]
                },
                "description": "Retrieve clmgmtLicenseMaxUsageCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseUsageCountRemaining",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicenseUsageCountRemaining",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicenseUsageCountRemaining"
                  ]
                },
                "description": "Retrieve clmgmtLicenseUsageCountRemaining from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseEULAStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicenseEULAStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicenseEULAStatus"
                  ]
                },
                "description": "Retrieve clmgmtLicenseEULAStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseComments",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicenseComments",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicenseComments"
                  ]
                },
                "description": "Retrieve clmgmtLicenseComments from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicenseStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicenseStatus"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStartDate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicenseStartDate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicenseStartDate"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStartDate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseEndDate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicenseEndDate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicenseEndDate"
                  ]
                },
                "description": "Retrieve clmgmtLicenseEndDate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicensePeriodUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicenseInfoTable/clmgmtLicenseInfoEntry/clmgmtLicensePeriodUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicenseInfoTable",
                    "clmgmtLicenseInfoEntry",
                    "clmgmtLicensePeriodUsed"
                  ]
                },
                "description": "Retrieve clmgmtLicensePeriodUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicensableFeatureTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicensableFeatureTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicensableFeatureTable"
                  ]
                },
                "description": "Retrieve clmgmtLicensableFeatureTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicensableFeatureEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicensableFeatureTable/clmgmtLicensableFeatureEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicensableFeatureTable",
                    "clmgmtLicensableFeatureEntry"
                  ]
                },
                "description": "Retrieve clmgmtLicensableFeatureEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicensableFeatureTable/clmgmtLicensableFeatureEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicensableFeatureTable",
                    "clmgmtLicensableFeatureEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicensableFeatureTable/clmgmtLicensableFeatureEntry/clmgmtFeatureIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicensableFeatureTable",
                    "clmgmtLicensableFeatureEntry",
                    "clmgmtFeatureIndex"
                  ]
                },
                "description": "Retrieve clmgmtFeatureIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicensableFeatureTable/clmgmtLicensableFeatureEntry/clmgmtFeatureName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicensableFeatureTable",
                    "clmgmtLicensableFeatureEntry",
                    "clmgmtFeatureName"
                  ]
                },
                "description": "Retrieve clmgmtFeatureName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicensableFeatureTable/clmgmtLicensableFeatureEntry/clmgmtFeatureVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicensableFeatureTable",
                    "clmgmtLicensableFeatureEntry",
                    "clmgmtFeatureVersion"
                  ]
                },
                "description": "Retrieve clmgmtFeatureVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureValidityPeriodRemaining",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicensableFeatureTable/clmgmtLicensableFeatureEntry/clmgmtFeatureValidityPeriodRemaining",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicensableFeatureTable",
                    "clmgmtLicensableFeatureEntry",
                    "clmgmtFeatureValidityPeriodRemaining"
                  ]
                },
                "description": "Retrieve clmgmtFeatureValidityPeriodRemaining from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureWhatIsCounted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicensableFeatureTable/clmgmtLicensableFeatureEntry/clmgmtFeatureWhatIsCounted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicensableFeatureTable",
                    "clmgmtLicensableFeatureEntry",
                    "clmgmtFeatureWhatIsCounted"
                  ]
                },
                "description": "Retrieve clmgmtFeatureWhatIsCounted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureStartDate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicensableFeatureTable/clmgmtLicensableFeatureEntry/clmgmtFeatureStartDate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicensableFeatureTable",
                    "clmgmtLicensableFeatureEntry",
                    "clmgmtFeatureStartDate"
                  ]
                },
                "description": "Retrieve clmgmtFeatureStartDate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureEndDate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicensableFeatureTable/clmgmtLicensableFeatureEntry/clmgmtFeatureEndDate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicensableFeatureTable",
                    "clmgmtLicensableFeatureEntry",
                    "clmgmtFeatureEndDate"
                  ]
                },
                "description": "Retrieve clmgmtFeatureEndDate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeaturePeriodUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtLicensableFeatureTable/clmgmtLicensableFeatureEntry/clmgmtFeaturePeriodUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtLicensableFeatureTable",
                    "clmgmtLicensableFeatureEntry",
                    "clmgmtFeaturePeriodUsed"
                  ]
                },
                "description": "Retrieve clmgmtFeaturePeriodUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtDevCredExportActionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable"
                  ]
                },
                "description": "Retrieve clmgmtDevCredExportActionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtDevCredExportActionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/clmgmtDevCredExportActionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "clmgmtDevCredExportActionEntry"
                  ]
                },
                "description": "Retrieve clmgmtDevCredExportActionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtDevCredExportActionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/clmgmtDevCredExportActionEntry/clmgmtDevCredExportActionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "clmgmtDevCredExportActionEntry",
                    "clmgmtDevCredExportActionIndex"
                  ]
                },
                "description": "Retrieve clmgmtDevCredExportActionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtDevCredEntPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/clmgmtDevCredExportActionEntry/clmgmtDevCredEntPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "clmgmtDevCredExportActionEntry",
                    "clmgmtDevCredEntPhysicalIndex"
                  ]
                },
                "description": "Retrieve clmgmtDevCredEntPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtDevCredTransferProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/clmgmtDevCredExportActionEntry/clmgmtDevCredTransferProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "clmgmtDevCredExportActionEntry",
                    "clmgmtDevCredTransferProtocol"
                  ]
                },
                "description": "Retrieve clmgmtDevCredTransferProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtDevCredServerAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/clmgmtDevCredExportActionEntry/clmgmtDevCredServerAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "clmgmtDevCredExportActionEntry",
                    "clmgmtDevCredServerAddressType"
                  ]
                },
                "description": "Retrieve clmgmtDevCredServerAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtDevCredServerAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/clmgmtDevCredExportActionEntry/clmgmtDevCredServerAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "clmgmtDevCredExportActionEntry",
                    "clmgmtDevCredServerAddress"
                  ]
                },
                "description": "Retrieve clmgmtDevCredServerAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtDevCredServerUsername",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/clmgmtDevCredExportActionEntry/clmgmtDevCredServerUsername",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "clmgmtDevCredExportActionEntry",
                    "clmgmtDevCredServerUsername"
                  ]
                },
                "description": "Retrieve clmgmtDevCredServerUsername from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtDevCredServerPassword",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/clmgmtDevCredExportActionEntry/clmgmtDevCredServerPassword",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "clmgmtDevCredExportActionEntry",
                    "clmgmtDevCredServerPassword"
                  ]
                },
                "description": "Retrieve clmgmtDevCredServerPassword from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtDevCredExportFile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/clmgmtDevCredExportActionEntry/clmgmtDevCredExportFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "clmgmtDevCredExportActionEntry",
                    "clmgmtDevCredExportFile"
                  ]
                },
                "description": "Retrieve clmgmtDevCredExportFile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtDevCredCommand",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/clmgmtDevCredExportActionEntry/clmgmtDevCredCommand",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "clmgmtDevCredExportActionEntry",
                    "clmgmtDevCredCommand"
                  ]
                },
                "description": "Retrieve clmgmtDevCredCommand from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtDevCredCommandState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/clmgmtDevCredExportActionEntry/clmgmtDevCredCommandState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "clmgmtDevCredExportActionEntry",
                    "clmgmtDevCredCommandState"
                  ]
                },
                "description": "Retrieve clmgmtDevCredCommandState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtDevCredCommandFailCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/clmgmtDevCredExportActionEntry/clmgmtDevCredCommandFailCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "clmgmtDevCredExportActionEntry",
                    "clmgmtDevCredCommandFailCause"
                  ]
                },
                "description": "Retrieve clmgmtDevCredCommandFailCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtDevCredStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/clmgmtDevCredExportActionEntry/clmgmtDevCredStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "clmgmtDevCredExportActionEntry",
                    "clmgmtDevCredStorageType"
                  ]
                },
                "description": "Retrieve clmgmtDevCredStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtDevCredRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/clmgmtDevCredExportActionEntry/clmgmtDevCredRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "clmgmtDevCredExportActionEntry",
                    "clmgmtDevCredRowStatus"
                  ]
                },
                "description": "Retrieve clmgmtDevCredRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-1/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-1",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-1/clmgmtFeatureIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-1",
                    "clmgmtFeatureIndex"
                  ]
                },
                "description": "Retrieve clmgmtFeatureIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-1/clmgmtFeatureName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-1",
                    "clmgmtFeatureName"
                  ]
                },
                "description": "Retrieve clmgmtFeatureName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-2/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-2",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-2/clmgmtFeatureIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-2",
                    "clmgmtFeatureIndex"
                  ]
                },
                "description": "Retrieve clmgmtFeatureIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-2/clmgmtFeatureVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-2",
                    "clmgmtFeatureVersion"
                  ]
                },
                "description": "Retrieve clmgmtFeatureVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-3/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-3",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-3/clmgmtFeatureIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-3",
                    "clmgmtFeatureIndex"
                  ]
                },
                "description": "Retrieve clmgmtFeatureIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureValidityPeriodRemaining",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-3/clmgmtFeatureValidityPeriodRemaining",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-3",
                    "clmgmtFeatureValidityPeriodRemaining"
                  ]
                },
                "description": "Retrieve clmgmtFeatureValidityPeriodRemaining from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStoreUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-1/clmgmtLicenseStoreUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-1",
                    "clmgmtLicenseStoreUsed"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStoreUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-1/clmgmtLicenseIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-1",
                    "clmgmtLicenseIndex"
                  ]
                },
                "description": "Retrieve clmgmtLicenseIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseFeatureName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-1/clmgmtLicenseFeatureName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-1",
                    "clmgmtLicenseFeatureName"
                  ]
                },
                "description": "Retrieve clmgmtLicenseFeatureName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStoreUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-2/clmgmtLicenseStoreUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-2",
                    "clmgmtLicenseStoreUsed"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStoreUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-2/clmgmtLicenseIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-2",
                    "clmgmtLicenseIndex"
                  ]
                },
                "description": "Retrieve clmgmtLicenseIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseFeatureVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-2/clmgmtLicenseFeatureVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-2",
                    "clmgmtLicenseFeatureVersion"
                  ]
                },
                "description": "Retrieve clmgmtLicenseFeatureVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStoreUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-3/clmgmtLicenseStoreUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-3",
                    "clmgmtLicenseStoreUsed"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStoreUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-3/clmgmtLicenseIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-3",
                    "clmgmtLicenseIndex"
                  ]
                },
                "description": "Retrieve clmgmtLicenseIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseMaxUsageCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-3/clmgmtLicenseMaxUsageCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-3",
                    "clmgmtLicenseMaxUsageCount"
                  ]
                },
                "description": "Retrieve clmgmtLicenseMaxUsageCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-4/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-4",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-4/clmgmtFeatureIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-4",
                    "clmgmtFeatureIndex"
                  ]
                },
                "description": "Retrieve clmgmtFeatureIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureWhatIsCounted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-4/clmgmtFeatureWhatIsCounted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-4",
                    "clmgmtFeatureWhatIsCounted"
                  ]
                },
                "description": "Retrieve clmgmtFeatureWhatIsCounted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-5/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-5",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStoreUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-5/clmgmtLicenseStoreUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-5",
                    "clmgmtLicenseStoreUsed"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStoreUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-5/clmgmtLicenseIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-5",
                    "clmgmtLicenseIndex"
                  ]
                },
                "description": "Retrieve clmgmtLicenseIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseComments",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-5/clmgmtLicenseComments",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-5",
                    "clmgmtLicenseComments"
                  ]
                },
                "description": "Retrieve clmgmtLicenseComments from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStoreUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-4/clmgmtLicenseStoreUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-4",
                    "clmgmtLicenseStoreUsed"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStoreUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-4/clmgmtLicenseIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-4",
                    "clmgmtLicenseIndex"
                  ]
                },
                "description": "Retrieve clmgmtLicenseIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseUsageCountRemaining",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-4/clmgmtLicenseUsageCountRemaining",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-4",
                    "clmgmtLicenseUsageCountRemaining"
                  ]
                },
                "description": "Retrieve clmgmtLicenseUsageCountRemaining from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-5/clmgmtFeatureIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-5",
                    "clmgmtFeatureIndex"
                  ]
                },
                "description": "Retrieve clmgmtFeatureIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureWhatIsCounted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-5/clmgmtFeatureWhatIsCounted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-5",
                    "clmgmtFeatureWhatIsCounted"
                  ]
                },
                "description": "Retrieve clmgmtFeatureWhatIsCounted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-6"
                  ]
                },
                "description": "Retrieve object-6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-6/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-6",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseStoreUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-6/clmgmtLicenseStoreUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-6",
                    "clmgmtLicenseStoreUsed"
                  ]
                },
                "description": "Retrieve clmgmtLicenseStoreUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-6/clmgmtLicenseIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-6",
                    "clmgmtLicenseIndex"
                  ]
                },
                "description": "Retrieve clmgmtLicenseIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseComments",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-6/clmgmtLicenseComments",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-6",
                    "clmgmtLicenseComments"
                  ]
                },
                "description": "Retrieve clmgmtLicenseComments from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-3/clmgmtLicenseType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-3",
                    "clmgmtLicenseType"
                  ]
                },
                "description": "Retrieve clmgmtLicenseType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtLicenseComments",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-4/clmgmtLicenseComments",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-4",
                    "clmgmtLicenseComments"
                  ]
                },
                "description": "Retrieve clmgmtLicenseComments from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clmgmtFeatureEndDate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB/clmgmtDevCredExportActionTable/object-3/clmgmtFeatureEndDate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-LICENSE-MGMT-MIB:CISCO-LICENSE-MGMT-MIB",
                    "clmgmtDevCredExportActionTable",
                    "object-3",
                    "clmgmtFeatureEndDate"
                  ]
                },
                "description": "Retrieve clmgmtFeatureEndDate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-MEDIA-GATEWAY-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-MEDIA-GATEWAY-MIB\n\nMIB data from `CISCO-MEDIA-GATEWAY-MIB` module.\n\n**Root containers:** 1 (CISCO-MEDIA-GATEWAY-MIB)\n**Paths:** 86 | **Descendants:** 85\n\nAll endpoints are read-only (GET).\n\nEndpoints: 86 | Operations: 86",
          "item": [
            {
              "name": "GET Get CISCO-MEDIA-GATEWAY-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB"
                  ]
                },
                "description": "Retrieve CISCO-MEDIA-GATEWAY-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwTable"
                  ]
                },
                "description": "Retrieve cMediaGwTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwTable/cMediaGwEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwTable",
                    "cMediaGwEntry"
                  ]
                },
                "description": "Retrieve cMediaGwEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwTable/cMediaGwEntry/cmgwIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwTable",
                    "cMediaGwEntry",
                    "cmgwIndex"
                  ]
                },
                "description": "Retrieve cmgwIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwDomainName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwTable/cMediaGwEntry/cmgwDomainName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwTable",
                    "cMediaGwEntry",
                    "cmgwDomainName"
                  ]
                },
                "description": "Retrieve cmgwDomainName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwTable/cMediaGwEntry/cmgwPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwTable",
                    "cMediaGwEntry",
                    "cmgwPhysicalIndex"
                  ]
                },
                "description": "Retrieve cmgwPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwServiceState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwTable/cMediaGwEntry/cmgwServiceState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwTable",
                    "cMediaGwEntry",
                    "cmgwServiceState"
                  ]
                },
                "description": "Retrieve cmgwServiceState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwAdminState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwTable/cMediaGwEntry/cmgwAdminState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwTable",
                    "cMediaGwEntry",
                    "cmgwAdminState"
                  ]
                },
                "description": "Retrieve cmgwAdminState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwGraceTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwTable/cMediaGwEntry/cmgwGraceTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwTable",
                    "cMediaGwEntry",
                    "cmgwGraceTime"
                  ]
                },
                "description": "Retrieve cmgwGraceTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwVtMappingMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwTable/cMediaGwEntry/cmgwVtMappingMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwTable",
                    "cMediaGwEntry",
                    "cmgwVtMappingMode"
                  ]
                },
                "description": "Retrieve cmgwVtMappingMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwSrcFilterEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwTable/cMediaGwEntry/cmgwSrcFilterEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwTable",
                    "cMediaGwEntry",
                    "cmgwSrcFilterEnabled"
                  ]
                },
                "description": "Retrieve cmgwSrcFilterEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwLawInterceptEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwTable/cMediaGwEntry/cmgwLawInterceptEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwTable",
                    "cMediaGwEntry",
                    "cmgwLawInterceptEnabled"
                  ]
                },
                "description": "Retrieve cmgwLawInterceptEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwV23Enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwTable/cMediaGwEntry/cmgwV23Enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwTable",
                    "cMediaGwEntry",
                    "cmgwV23Enabled"
                  ]
                },
                "description": "Retrieve cmgwV23Enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwSignalProtocolTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cmgwSignalProtocolTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cmgwSignalProtocolTable"
                  ]
                },
                "description": "Retrieve cmgwSignalProtocolTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwSignalProtocolEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cmgwSignalProtocolTable/cmgwSignalProtocolEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cmgwSignalProtocolTable",
                    "cmgwSignalProtocolEntry"
                  ]
                },
                "description": "Retrieve cmgwSignalProtocolEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cmgwSignalProtocolTable/cmgwSignalProtocolEntry/cmgwIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cmgwSignalProtocolTable",
                    "cmgwSignalProtocolEntry",
                    "cmgwIndex"
                  ]
                },
                "description": "Retrieve cmgwIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwSignalProtocolIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cmgwSignalProtocolTable/cmgwSignalProtocolEntry/cmgwSignalProtocolIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cmgwSignalProtocolTable",
                    "cmgwSignalProtocolEntry",
                    "cmgwSignalProtocolIndex"
                  ]
                },
                "description": "Retrieve cmgwSignalProtocolIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwSignalProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cmgwSignalProtocolTable/cmgwSignalProtocolEntry/cmgwSignalProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cmgwSignalProtocolTable",
                    "cmgwSignalProtocolEntry",
                    "cmgwSignalProtocol"
                  ]
                },
                "description": "Retrieve cmgwSignalProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwSignalProtocolVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cmgwSignalProtocolTable/cmgwSignalProtocolEntry/cmgwSignalProtocolVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cmgwSignalProtocolTable",
                    "cmgwSignalProtocolEntry",
                    "cmgwSignalProtocolVersion"
                  ]
                },
                "description": "Retrieve cmgwSignalProtocolVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwSignalProtocolPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cmgwSignalProtocolTable/cmgwSignalProtocolEntry/cmgwSignalProtocolPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cmgwSignalProtocolTable",
                    "cmgwSignalProtocolEntry",
                    "cmgwSignalProtocolPort"
                  ]
                },
                "description": "Retrieve cmgwSignalProtocolPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwSignalMgcProtocolPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cmgwSignalProtocolTable/cmgwSignalProtocolEntry/cmgwSignalMgcProtocolPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cmgwSignalProtocolTable",
                    "cmgwSignalProtocolEntry",
                    "cmgwSignalMgcProtocolPort"
                  ]
                },
                "description": "Retrieve cmgwSignalMgcProtocolPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwSignalProtocolPreference",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cmgwSignalProtocolTable/cmgwSignalProtocolEntry/cmgwSignalProtocolPreference",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cmgwSignalProtocolTable",
                    "cmgwSignalProtocolEntry",
                    "cmgwSignalProtocolPreference"
                  ]
                },
                "description": "Retrieve cmgwSignalProtocolPreference from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwSignalProtocolConfigVer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cmgwSignalProtocolTable/cmgwSignalProtocolEntry/cmgwSignalProtocolConfigVer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cmgwSignalProtocolTable",
                    "cmgwSignalProtocolEntry",
                    "cmgwSignalProtocolConfigVer"
                  ]
                },
                "description": "Retrieve cmgwSignalProtocolConfigVer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwIpConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwIpConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwIpConfigTable"
                  ]
                },
                "description": "Retrieve cMediaGwIpConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwIpConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwIpConfigTable/cMediaGwIpConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwIpConfigTable",
                    "cMediaGwIpConfigEntry"
                  ]
                },
                "description": "Retrieve cMediaGwIpConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwIpConfigTable/cMediaGwIpConfigEntry/cmgwIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwIpConfigTable",
                    "cMediaGwIpConfigEntry",
                    "cmgwIndex"
                  ]
                },
                "description": "Retrieve cmgwIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIpConfigIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwIpConfigTable/cMediaGwIpConfigEntry/cmgwIpConfigIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwIpConfigTable",
                    "cMediaGwIpConfigEntry",
                    "cmgwIpConfigIndex"
                  ]
                },
                "description": "Retrieve cmgwIpConfigIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIpConfigIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwIpConfigTable/cMediaGwIpConfigEntry/cmgwIpConfigIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwIpConfigTable",
                    "cMediaGwIpConfigEntry",
                    "cmgwIpConfigIfIndex"
                  ]
                },
                "description": "Retrieve cmgwIpConfigIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIpConfigVpi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwIpConfigTable/cMediaGwIpConfigEntry/cmgwIpConfigVpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwIpConfigTable",
                    "cMediaGwIpConfigEntry",
                    "cmgwIpConfigVpi"
                  ]
                },
                "description": "Retrieve cmgwIpConfigVpi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIpConfigVci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwIpConfigTable/cMediaGwIpConfigEntry/cmgwIpConfigVci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwIpConfigTable",
                    "cMediaGwIpConfigEntry",
                    "cmgwIpConfigVci"
                  ]
                },
                "description": "Retrieve cmgwIpConfigVci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIpConfigAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwIpConfigTable/cMediaGwIpConfigEntry/cmgwIpConfigAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwIpConfigTable",
                    "cMediaGwIpConfigEntry",
                    "cmgwIpConfigAddrType"
                  ]
                },
                "description": "Retrieve cmgwIpConfigAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIpConfigAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwIpConfigTable/cMediaGwIpConfigEntry/cmgwIpConfigAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwIpConfigTable",
                    "cMediaGwIpConfigEntry",
                    "cmgwIpConfigAddress"
                  ]
                },
                "description": "Retrieve cmgwIpConfigAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIpConfigSubnetMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwIpConfigTable/cMediaGwIpConfigEntry/cmgwIpConfigSubnetMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwIpConfigTable",
                    "cMediaGwIpConfigEntry",
                    "cmgwIpConfigSubnetMask"
                  ]
                },
                "description": "Retrieve cmgwIpConfigSubnetMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIpConfigDefaultGwIp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwIpConfigTable/cMediaGwIpConfigEntry/cmgwIpConfigDefaultGwIp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwIpConfigTable",
                    "cMediaGwIpConfigEntry",
                    "cmgwIpConfigDefaultGwIp"
                  ]
                },
                "description": "Retrieve cmgwIpConfigDefaultGwIp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIpConfigForRemoteMapping",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwIpConfigTable/cMediaGwIpConfigEntry/cmgwIpConfigForRemoteMapping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwIpConfigTable",
                    "cMediaGwIpConfigEntry",
                    "cmgwIpConfigForRemoteMapping"
                  ]
                },
                "description": "Retrieve cmgwIpConfigForRemoteMapping from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIpConfigRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwIpConfigTable/cMediaGwIpConfigEntry/cmgwIpConfigRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwIpConfigTable",
                    "cMediaGwIpConfigEntry",
                    "cmgwIpConfigRowStatus"
                  ]
                },
                "description": "Retrieve cmgwIpConfigRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwDomainNameConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwDomainNameConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwDomainNameConfigTable"
                  ]
                },
                "description": "Retrieve cMediaGwDomainNameConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwDomainNameConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwDomainNameConfigTable/cMediaGwDomainNameConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwDomainNameConfigTable",
                    "cMediaGwDomainNameConfigEntry"
                  ]
                },
                "description": "Retrieve cMediaGwDomainNameConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwDomainNameConfigTable/cMediaGwDomainNameConfigEntry/cmgwIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwDomainNameConfigTable",
                    "cMediaGwDomainNameConfigEntry",
                    "cmgwIndex"
                  ]
                },
                "description": "Retrieve cmgwIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwConfigDomainNameIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwDomainNameConfigTable/cMediaGwDomainNameConfigEntry/cmgwConfigDomainNameIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwDomainNameConfigTable",
                    "cMediaGwDomainNameConfigEntry",
                    "cmgwConfigDomainNameIndex"
                  ]
                },
                "description": "Retrieve cmgwConfigDomainNameIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwConfigDomainNameEntity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwDomainNameConfigTable/cMediaGwDomainNameConfigEntry/cmgwConfigDomainNameEntity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwDomainNameConfigTable",
                    "cMediaGwDomainNameConfigEntry",
                    "cmgwConfigDomainNameEntity"
                  ]
                },
                "description": "Retrieve cmgwConfigDomainNameEntity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwConfigDomainName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwDomainNameConfigTable/cMediaGwDomainNameConfigEntry/cmgwConfigDomainName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwDomainNameConfigTable",
                    "cMediaGwDomainNameConfigEntry",
                    "cmgwConfigDomainName"
                  ]
                },
                "description": "Retrieve cmgwConfigDomainName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwConfigDomainNameRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwDomainNameConfigTable/cMediaGwDomainNameConfigEntry/cmgwConfigDomainNameRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwDomainNameConfigTable",
                    "cMediaGwDomainNameConfigEntry",
                    "cmgwConfigDomainNameRowStatus"
                  ]
                },
                "description": "Retrieve cmgwConfigDomainNameRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwDnsIpConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwDnsIpConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwDnsIpConfigTable"
                  ]
                },
                "description": "Retrieve cMediaGwDnsIpConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwDnsIpConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwDnsIpConfigTable/cMediaGwDnsIpConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwDnsIpConfigTable",
                    "cMediaGwDnsIpConfigEntry"
                  ]
                },
                "description": "Retrieve cMediaGwDnsIpConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwDnsIpConfigTable/cMediaGwDnsIpConfigEntry/cmgwIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwDnsIpConfigTable",
                    "cMediaGwDnsIpConfigEntry",
                    "cmgwIndex"
                  ]
                },
                "description": "Retrieve cmgwIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwDnsIpIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwDnsIpConfigTable/cMediaGwDnsIpConfigEntry/cmgwDnsIpIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwDnsIpConfigTable",
                    "cMediaGwDnsIpConfigEntry",
                    "cmgwDnsIpIndex"
                  ]
                },
                "description": "Retrieve cmgwDnsIpIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwDnsDomainName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwDnsIpConfigTable/cMediaGwDnsIpConfigEntry/cmgwDnsDomainName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwDnsIpConfigTable",
                    "cMediaGwDnsIpConfigEntry",
                    "cmgwDnsDomainName"
                  ]
                },
                "description": "Retrieve cmgwDnsDomainName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwDnsIpType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwDnsIpConfigTable/cMediaGwDnsIpConfigEntry/cmgwDnsIpType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwDnsIpConfigTable",
                    "cMediaGwDnsIpConfigEntry",
                    "cmgwDnsIpType"
                  ]
                },
                "description": "Retrieve cmgwDnsIpType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwDnsIp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwDnsIpConfigTable/cMediaGwDnsIpConfigEntry/cmgwDnsIp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwDnsIpConfigTable",
                    "cMediaGwDnsIpConfigEntry",
                    "cmgwDnsIp"
                  ]
                },
                "description": "Retrieve cmgwDnsIp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwDnsIpRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwDnsIpConfigTable/cMediaGwDnsIpConfigEntry/cmgwDnsIpRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwDnsIpConfigTable",
                    "cMediaGwDnsIpConfigEntry",
                    "cmgwDnsIpRowStatus"
                  ]
                },
                "description": "Retrieve cmgwDnsIpRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwLifTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cmgwLifTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cmgwLifTable"
                  ]
                },
                "description": "Retrieve cmgwLifTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwLifEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cmgwLifTable/cmgwLifEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cmgwLifTable",
                    "cmgwLifEntry"
                  ]
                },
                "description": "Retrieve cmgwLifEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cmgwLifTable/cmgwLifEntry/cmgwIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cmgwLifTable",
                    "cmgwLifEntry",
                    "cmgwIndex"
                  ]
                },
                "description": "Retrieve cmgwIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwLifNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cmgwLifTable/cmgwLifEntry/cmgwLifNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cmgwLifTable",
                    "cmgwLifEntry",
                    "cmgwLifNumber"
                  ]
                },
                "description": "Retrieve cmgwLifNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwLifPvcCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cmgwLifTable/cmgwLifEntry/cmgwLifPvcCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cmgwLifTable",
                    "cmgwLifEntry",
                    "cmgwLifPvcCount"
                  ]
                },
                "description": "Retrieve cmgwLifPvcCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwLifVoiceIfCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cmgwLifTable/cmgwLifEntry/cmgwLifVoiceIfCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cmgwLifTable",
                    "cmgwLifEntry",
                    "cmgwLifVoiceIfCount"
                  ]
                },
                "description": "Retrieve cmgwLifVoiceIfCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCallControlConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable"
                  ]
                },
                "description": "Retrieve cMediaGwCallControlConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCallControlConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry"
                  ]
                },
                "description": "Retrieve cMediaGwCallControlConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cmgwIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cmgwIndex"
                  ]
                },
                "description": "Retrieve cmgwIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgControlTos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgControlTos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgControlTos"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgControlTos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgBearerTos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgBearerTos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgBearerTos"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgBearerTos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgNtePayload",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgNtePayload",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgNtePayload"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgNtePayload from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgNsePayload",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgNsePayload",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgNsePayload"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgNsePayload from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgNseRespTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgNseRespTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgNseRespTimer"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgNseRespTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgVbdJitterDelayMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgVbdJitterDelayMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgVbdJitterDelayMode"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgVbdJitterDelayMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgVbdJitterMaxDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgVbdJitterMaxDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgVbdJitterMaxDelay"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgVbdJitterMaxDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgVbdJitterNomDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgVbdJitterNomDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgVbdJitterNomDelay"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgVbdJitterNomDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgVbdJitterMinDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgVbdJitterMinDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgVbdJitterMinDelay"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgVbdJitterMinDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgDefaultTonePlanId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgDefaultTonePlanId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgDefaultTonePlanId"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgDefaultTonePlanId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgDescrInfoEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgDescrInfoEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgDescrInfoEnabled"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgDescrInfoEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgDsNamePrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgDsNamePrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgDsNamePrefix"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgDsNamePrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgRtpNamePrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgRtpNamePrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgRtpNamePrefix"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgRtpNamePrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgAal1SvcNamePrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgAal1SvcNamePrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgAal1SvcNamePrefix"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgAal1SvcNamePrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgAal2SvcNamePrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgAal2SvcNamePrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgAal2SvcNamePrefix"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgAal2SvcNamePrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgClusterEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgClusterEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgClusterEnabled"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgClusterEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgDefBearerTraffic",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgDefBearerTraffic",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgDefBearerTraffic"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgDefBearerTraffic from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwCcCfgDefRtpNamePrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwCallControlConfigTable/cMediaGwCallControlConfigEntry/cMediaGwCcCfgDefRtpNamePrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwCallControlConfigTable",
                    "cMediaGwCallControlConfigEntry",
                    "cMediaGwCcCfgDefRtpNamePrefix"
                  ]
                },
                "description": "Retrieve cMediaGwCcCfgDefRtpNamePrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwRscStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwRscStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwRscStatsTable"
                  ]
                },
                "description": "Retrieve cMediaGwRscStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cMediaGwRscStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwRscStatsTable/cMediaGwRscStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwRscStatsTable",
                    "cMediaGwRscStatsEntry"
                  ]
                },
                "description": "Retrieve cMediaGwRscStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwRscStatsTable/cMediaGwRscStatsEntry/cmgwIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwRscStatsTable",
                    "cMediaGwRscStatsEntry",
                    "cmgwIndex"
                  ]
                },
                "description": "Retrieve cmgwIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwRscStatsIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwRscStatsTable/cMediaGwRscStatsEntry/cmgwRscStatsIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwRscStatsTable",
                    "cMediaGwRscStatsEntry",
                    "cmgwRscStatsIndex"
                  ]
                },
                "description": "Retrieve cmgwRscStatsIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwRscMaximumUtilization",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwRscStatsTable/cMediaGwRscStatsEntry/cmgwRscMaximumUtilization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwRscStatsTable",
                    "cMediaGwRscStatsEntry",
                    "cmgwRscMaximumUtilization"
                  ]
                },
                "description": "Retrieve cmgwRscMaximumUtilization from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwRscMinimumUtilization",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwRscStatsTable/cMediaGwRscStatsEntry/cmgwRscMinimumUtilization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwRscStatsTable",
                    "cMediaGwRscStatsEntry",
                    "cmgwRscMinimumUtilization"
                  ]
                },
                "description": "Retrieve cmgwRscMinimumUtilization from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwRscAverageUtilization",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwRscStatsTable/cMediaGwRscStatsEntry/cmgwRscAverageUtilization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwRscStatsTable",
                    "cMediaGwRscStatsEntry",
                    "cmgwRscAverageUtilization"
                  ]
                },
                "description": "Retrieve cmgwRscAverageUtilization from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmgwRscSinceLastReset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB/cMediaGwRscStatsTable/cMediaGwRscStatsEntry/cmgwRscSinceLastReset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MEDIA-GATEWAY-MIB:CISCO-MEDIA-GATEWAY-MIB",
                    "cMediaGwRscStatsTable",
                    "cMediaGwRscStatsEntry",
                    "cmgwRscSinceLastReset"
                  ]
                },
                "description": "Retrieve cmgwRscSinceLastReset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-MPLS-LSR-EXT-STD-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-MPLS-LSR-EXT-STD-MIB\n\nMIB data from `CISCO-MPLS-LSR-EXT-STD-MIB` module.\n\n**Root containers:** 1 (CISCO-MPLS-LSR-EXT-STD-MIB)\n**Paths:** 8 | **Descendants:** 7\n\nAll endpoints are read-only (GET).\n\nEndpoints: 8 | Operations: 8",
          "item": [
            {
              "name": "GET Get CISCO-MPLS-LSR-EXT-STD-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MPLS-LSR-EXT-STD-MIB:CISCO-MPLS-LSR-EXT-STD-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MPLS-LSR-EXT-STD-MIB:CISCO-MPLS-LSR-EXT-STD-MIB"
                  ]
                },
                "description": "Retrieve CISCO-MPLS-LSR-EXT-STD-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsXCExtTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MPLS-LSR-EXT-STD-MIB:CISCO-MPLS-LSR-EXT-STD-MIB/cmplsXCExtTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MPLS-LSR-EXT-STD-MIB:CISCO-MPLS-LSR-EXT-STD-MIB",
                    "cmplsXCExtTable"
                  ]
                },
                "description": "Retrieve cmplsXCExtTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsXCExtEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MPLS-LSR-EXT-STD-MIB:CISCO-MPLS-LSR-EXT-STD-MIB/cmplsXCExtTable/cmplsXCExtEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MPLS-LSR-EXT-STD-MIB:CISCO-MPLS-LSR-EXT-STD-MIB",
                    "cmplsXCExtTable",
                    "cmplsXCExtEntry"
                  ]
                },
                "description": "Retrieve cmplsXCExtEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MPLS-LSR-EXT-STD-MIB:CISCO-MPLS-LSR-EXT-STD-MIB/cmplsXCExtTable/cmplsXCExtEntry/mplsXCIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MPLS-LSR-EXT-STD-MIB:CISCO-MPLS-LSR-EXT-STD-MIB",
                    "cmplsXCExtTable",
                    "cmplsXCExtEntry",
                    "mplsXCIndex"
                  ]
                },
                "description": "Retrieve mplsXCIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCInSegmentIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MPLS-LSR-EXT-STD-MIB:CISCO-MPLS-LSR-EXT-STD-MIB/cmplsXCExtTable/cmplsXCExtEntry/mplsXCInSegmentIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MPLS-LSR-EXT-STD-MIB:CISCO-MPLS-LSR-EXT-STD-MIB",
                    "cmplsXCExtTable",
                    "cmplsXCExtEntry",
                    "mplsXCInSegmentIndex"
                  ]
                },
                "description": "Retrieve mplsXCInSegmentIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCOutSegmentIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MPLS-LSR-EXT-STD-MIB:CISCO-MPLS-LSR-EXT-STD-MIB/cmplsXCExtTable/cmplsXCExtEntry/mplsXCOutSegmentIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MPLS-LSR-EXT-STD-MIB:CISCO-MPLS-LSR-EXT-STD-MIB",
                    "cmplsXCExtTable",
                    "cmplsXCExtEntry",
                    "mplsXCOutSegmentIndex"
                  ]
                },
                "description": "Retrieve mplsXCOutSegmentIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsXCExtTunnelPointer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MPLS-LSR-EXT-STD-MIB:CISCO-MPLS-LSR-EXT-STD-MIB/cmplsXCExtTable/cmplsXCExtEntry/cmplsXCExtTunnelPointer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MPLS-LSR-EXT-STD-MIB:CISCO-MPLS-LSR-EXT-STD-MIB",
                    "cmplsXCExtTable",
                    "cmplsXCExtEntry",
                    "cmplsXCExtTunnelPointer"
                  ]
                },
                "description": "Retrieve cmplsXCExtTunnelPointer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmplsXCOppositeDirXCPtr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-MPLS-LSR-EXT-STD-MIB:CISCO-MPLS-LSR-EXT-STD-MIB/cmplsXCExtTable/cmplsXCExtEntry/cmplsXCOppositeDirXCPtr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-MPLS-LSR-EXT-STD-MIB:CISCO-MPLS-LSR-EXT-STD-MIB",
                    "cmplsXCExtTable",
                    "cmplsXCExtEntry",
                    "cmplsXCOppositeDirXCPtr"
                  ]
                },
                "description": "Retrieve cmplsXCOppositeDirXCPtr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-NBAR-PROTOCOL-DISCOVERY-MIB\n\nMIB data from `CISCO-NBAR-PROTOCOL-DISCOVERY-MIB` module.\n\n**Root containers:** 1 (CISCO-NBAR-PROTOCOL-DISCOVERY-MIB)\n**Paths:** 85 | **Descendants:** 101\n\nAll endpoints are read-only (GET).\n\nEndpoints: 85 | Operations: 85",
          "item": [
            {
              "name": "GET Get CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB"
                  ]
                },
                "description": "Retrieve CISCO-NBAR-PROTOCOL-DISCOVERY-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdNotificationsConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdNotificationsConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdNotificationsConfig"
                  ]
                },
                "description": "Retrieve cnpdNotificationsConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdNotificationsEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdNotificationsConfig/cnpdNotificationsEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdNotificationsConfig",
                    "cnpdNotificationsEnable"
                  ]
                },
                "description": "Retrieve cnpdNotificationsEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdStatusTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdStatusTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdStatusTable"
                  ]
                },
                "description": "Retrieve cnpdStatusTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdStatusEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdStatusTable/cnpdStatusEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdStatusTable",
                    "cnpdStatusEntry"
                  ]
                },
                "description": "Retrieve cnpdStatusEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdStatusTable/cnpdStatusEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdStatusTable",
                    "cnpdStatusEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdStatusPdEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdStatusTable/cnpdStatusEntry/cnpdStatusPdEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdStatusTable",
                    "cnpdStatusEntry",
                    "cnpdStatusPdEnable"
                  ]
                },
                "description": "Retrieve cnpdStatusPdEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdStatusLastUpdateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdStatusTable/cnpdStatusEntry/cnpdStatusLastUpdateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdStatusTable",
                    "cnpdStatusEntry",
                    "cnpdStatusLastUpdateTime"
                  ]
                },
                "description": "Retrieve cnpdStatusLastUpdateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdAllStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdAllStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdAllStatsTable"
                  ]
                },
                "description": "Retrieve cnpdAllStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdAllStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdAllStatsTable/cnpdAllStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdAllStatsTable",
                    "cnpdAllStatsEntry"
                  ]
                },
                "description": "Retrieve cnpdAllStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdAllStatsTable/cnpdAllStatsEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdAllStatsTable",
                    "cnpdAllStatsEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdAllStatsProtocolsIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdAllStatsTable/cnpdAllStatsEntry/cnpdAllStatsProtocolsIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdAllStatsTable",
                    "cnpdAllStatsEntry",
                    "cnpdAllStatsProtocolsIndex"
                  ]
                },
                "description": "Retrieve cnpdAllStatsProtocolsIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdAllStatsProtocolName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdAllStatsTable/cnpdAllStatsEntry/cnpdAllStatsProtocolName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdAllStatsTable",
                    "cnpdAllStatsEntry",
                    "cnpdAllStatsProtocolName"
                  ]
                },
                "description": "Retrieve cnpdAllStatsProtocolName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdAllStatsInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdAllStatsTable/cnpdAllStatsEntry/cnpdAllStatsInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdAllStatsTable",
                    "cnpdAllStatsEntry",
                    "cnpdAllStatsInPkts"
                  ]
                },
                "description": "Retrieve cnpdAllStatsInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdAllStatsOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdAllStatsTable/cnpdAllStatsEntry/cnpdAllStatsOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdAllStatsTable",
                    "cnpdAllStatsEntry",
                    "cnpdAllStatsOutPkts"
                  ]
                },
                "description": "Retrieve cnpdAllStatsOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdAllStatsInBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdAllStatsTable/cnpdAllStatsEntry/cnpdAllStatsInBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdAllStatsTable",
                    "cnpdAllStatsEntry",
                    "cnpdAllStatsInBytes"
                  ]
                },
                "description": "Retrieve cnpdAllStatsInBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdAllStatsOutBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdAllStatsTable/cnpdAllStatsEntry/cnpdAllStatsOutBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdAllStatsTable",
                    "cnpdAllStatsEntry",
                    "cnpdAllStatsOutBytes"
                  ]
                },
                "description": "Retrieve cnpdAllStatsOutBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdAllStatsHCInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdAllStatsTable/cnpdAllStatsEntry/cnpdAllStatsHCInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdAllStatsTable",
                    "cnpdAllStatsEntry",
                    "cnpdAllStatsHCInPkts"
                  ]
                },
                "description": "Retrieve cnpdAllStatsHCInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdAllStatsHCOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdAllStatsTable/cnpdAllStatsEntry/cnpdAllStatsHCOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdAllStatsTable",
                    "cnpdAllStatsEntry",
                    "cnpdAllStatsHCOutPkts"
                  ]
                },
                "description": "Retrieve cnpdAllStatsHCOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdAllStatsHCInBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdAllStatsTable/cnpdAllStatsEntry/cnpdAllStatsHCInBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdAllStatsTable",
                    "cnpdAllStatsEntry",
                    "cnpdAllStatsHCInBytes"
                  ]
                },
                "description": "Retrieve cnpdAllStatsHCInBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdAllStatsHCOutBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdAllStatsTable/cnpdAllStatsEntry/cnpdAllStatsHCOutBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdAllStatsTable",
                    "cnpdAllStatsEntry",
                    "cnpdAllStatsHCOutBytes"
                  ]
                },
                "description": "Retrieve cnpdAllStatsHCOutBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdAllStatsInBitRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdAllStatsTable/cnpdAllStatsEntry/cnpdAllStatsInBitRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdAllStatsTable",
                    "cnpdAllStatsEntry",
                    "cnpdAllStatsInBitRate"
                  ]
                },
                "description": "Retrieve cnpdAllStatsInBitRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdAllStatsOutBitRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdAllStatsTable/cnpdAllStatsEntry/cnpdAllStatsOutBitRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdAllStatsTable",
                    "cnpdAllStatsEntry",
                    "cnpdAllStatsOutBitRate"
                  ]
                },
                "description": "Retrieve cnpdAllStatsOutBitRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNConfigTable"
                  ]
                },
                "description": "Retrieve cnpdTopNConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNConfigTable/cnpdTopNConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNConfigTable",
                    "cnpdTopNConfigEntry"
                  ]
                },
                "description": "Retrieve cnpdTopNConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNConfigIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNConfigTable/cnpdTopNConfigEntry/cnpdTopNConfigIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNConfigTable",
                    "cnpdTopNConfigEntry",
                    "cnpdTopNConfigIndex"
                  ]
                },
                "description": "Retrieve cnpdTopNConfigIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNConfigIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNConfigTable/cnpdTopNConfigEntry/cnpdTopNConfigIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNConfigTable",
                    "cnpdTopNConfigEntry",
                    "cnpdTopNConfigIfIndex"
                  ]
                },
                "description": "Retrieve cnpdTopNConfigIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNConfigStatsSelect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNConfigTable/cnpdTopNConfigEntry/cnpdTopNConfigStatsSelect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNConfigTable",
                    "cnpdTopNConfigEntry",
                    "cnpdTopNConfigStatsSelect"
                  ]
                },
                "description": "Retrieve cnpdTopNConfigStatsSelect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNConfigSampleTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNConfigTable/cnpdTopNConfigEntry/cnpdTopNConfigSampleTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNConfigTable",
                    "cnpdTopNConfigEntry",
                    "cnpdTopNConfigSampleTime"
                  ]
                },
                "description": "Retrieve cnpdTopNConfigSampleTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNConfigRequestedSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNConfigTable/cnpdTopNConfigEntry/cnpdTopNConfigRequestedSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNConfigTable",
                    "cnpdTopNConfigEntry",
                    "cnpdTopNConfigRequestedSize"
                  ]
                },
                "description": "Retrieve cnpdTopNConfigRequestedSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNConfigGrantedSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNConfigTable/cnpdTopNConfigEntry/cnpdTopNConfigGrantedSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNConfigTable",
                    "cnpdTopNConfigEntry",
                    "cnpdTopNConfigGrantedSize"
                  ]
                },
                "description": "Retrieve cnpdTopNConfigGrantedSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNConfigTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNConfigTable/cnpdTopNConfigEntry/cnpdTopNConfigTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNConfigTable",
                    "cnpdTopNConfigEntry",
                    "cnpdTopNConfigTime"
                  ]
                },
                "description": "Retrieve cnpdTopNConfigTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNConfigStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNConfigTable/cnpdTopNConfigEntry/cnpdTopNConfigStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNConfigTable",
                    "cnpdTopNConfigEntry",
                    "cnpdTopNConfigStatus"
                  ]
                },
                "description": "Retrieve cnpdTopNConfigStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNStatsTable"
                  ]
                },
                "description": "Retrieve cnpdTopNStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNStatsTable/cnpdTopNStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNStatsTable",
                    "cnpdTopNStatsEntry"
                  ]
                },
                "description": "Retrieve cnpdTopNStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNConfigIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNStatsTable/cnpdTopNStatsEntry/cnpdTopNConfigIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNStatsTable",
                    "cnpdTopNStatsEntry",
                    "cnpdTopNConfigIndex"
                  ]
                },
                "description": "Retrieve cnpdTopNConfigIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNStatsIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNStatsTable/cnpdTopNStatsEntry/cnpdTopNStatsIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNStatsTable",
                    "cnpdTopNStatsEntry",
                    "cnpdTopNStatsIndex"
                  ]
                },
                "description": "Retrieve cnpdTopNStatsIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNStatsProtocolName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNStatsTable/cnpdTopNStatsEntry/cnpdTopNStatsProtocolName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNStatsTable",
                    "cnpdTopNStatsEntry",
                    "cnpdTopNStatsProtocolName"
                  ]
                },
                "description": "Retrieve cnpdTopNStatsProtocolName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNStatsRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNStatsTable/cnpdTopNStatsEntry/cnpdTopNStatsRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNStatsTable",
                    "cnpdTopNStatsEntry",
                    "cnpdTopNStatsRate"
                  ]
                },
                "description": "Retrieve cnpdTopNStatsRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdTopNStatsHCRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdTopNStatsTable/cnpdTopNStatsEntry/cnpdTopNStatsHCRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdTopNStatsTable",
                    "cnpdTopNStatsEntry",
                    "cnpdTopNStatsHCRate"
                  ]
                },
                "description": "Retrieve cnpdTopNStatsHCRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdConfigTable"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdConfigTable/cnpdThresholdConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdConfigTable",
                    "cnpdThresholdConfigEntry"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdConfigTable/cnpdThresholdConfigEntry/cnpdThresholdConfigIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdConfigTable",
                    "cnpdThresholdConfigEntry",
                    "cnpdThresholdConfigIndex"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdConfigTable/cnpdThresholdConfigEntry/cnpdThresholdConfigIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdConfigTable",
                    "cnpdThresholdConfigEntry",
                    "cnpdThresholdConfigIfIndex"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdConfigTable/cnpdThresholdConfigEntry/cnpdThresholdConfigInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdConfigTable",
                    "cnpdThresholdConfigEntry",
                    "cnpdThresholdConfigInterval"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigSampleType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdConfigTable/cnpdThresholdConfigEntry/cnpdThresholdConfigSampleType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdConfigTable",
                    "cnpdThresholdConfigEntry",
                    "cnpdThresholdConfigSampleType"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigSampleType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdConfigTable/cnpdThresholdConfigEntry/cnpdThresholdConfigProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdConfigTable",
                    "cnpdThresholdConfigEntry",
                    "cnpdThresholdConfigProtocol"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigProtocolAny",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdConfigTable/cnpdThresholdConfigEntry/cnpdThresholdConfigProtocolAny",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdConfigTable",
                    "cnpdThresholdConfigEntry",
                    "cnpdThresholdConfigProtocolAny"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigProtocolAny from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigStatsSelect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdConfigTable/cnpdThresholdConfigEntry/cnpdThresholdConfigStatsSelect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdConfigTable",
                    "cnpdThresholdConfigEntry",
                    "cnpdThresholdConfigStatsSelect"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigStatsSelect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigStartup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdConfigTable/cnpdThresholdConfigEntry/cnpdThresholdConfigStartup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdConfigTable",
                    "cnpdThresholdConfigEntry",
                    "cnpdThresholdConfigStartup"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigStartup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigRising",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdConfigTable/cnpdThresholdConfigEntry/cnpdThresholdConfigRising",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdConfigTable",
                    "cnpdThresholdConfigEntry",
                    "cnpdThresholdConfigRising"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigRising from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigFalling",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdConfigTable/cnpdThresholdConfigEntry/cnpdThresholdConfigFalling",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdConfigTable",
                    "cnpdThresholdConfigEntry",
                    "cnpdThresholdConfigFalling"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigFalling from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdConfigTable/cnpdThresholdConfigEntry/cnpdThresholdConfigStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdConfigTable",
                    "cnpdThresholdConfigEntry",
                    "cnpdThresholdConfigStatus"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdHistoryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdHistoryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdHistoryTable"
                  ]
                },
                "description": "Retrieve cnpdThresholdHistoryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdHistoryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdHistoryTable/cnpdThresholdHistoryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdHistoryTable",
                    "cnpdThresholdHistoryEntry"
                  ]
                },
                "description": "Retrieve cnpdThresholdHistoryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdHistoryTable/cnpdThresholdHistoryEntry/cnpdThresholdHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdHistoryTable",
                    "cnpdThresholdHistoryEntry",
                    "cnpdThresholdHistoryIndex"
                  ]
                },
                "description": "Retrieve cnpdThresholdHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdHistoryConfigIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdHistoryTable/cnpdThresholdHistoryEntry/cnpdThresholdHistoryConfigIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdHistoryTable",
                    "cnpdThresholdHistoryEntry",
                    "cnpdThresholdHistoryConfigIndex"
                  ]
                },
                "description": "Retrieve cnpdThresholdHistoryConfigIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdHistoryValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdHistoryTable/cnpdThresholdHistoryEntry/cnpdThresholdHistoryValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdHistoryTable",
                    "cnpdThresholdHistoryEntry",
                    "cnpdThresholdHistoryValue"
                  ]
                },
                "description": "Retrieve cnpdThresholdHistoryValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdHistoryType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdHistoryTable/cnpdThresholdHistoryEntry/cnpdThresholdHistoryType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdHistoryTable",
                    "cnpdThresholdHistoryEntry",
                    "cnpdThresholdHistoryType"
                  ]
                },
                "description": "Retrieve cnpdThresholdHistoryType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdHistoryTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdHistoryTable/cnpdThresholdHistoryEntry/cnpdThresholdHistoryTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdHistoryTable",
                    "cnpdThresholdHistoryEntry",
                    "cnpdThresholdHistoryTime"
                  ]
                },
                "description": "Retrieve cnpdThresholdHistoryTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdHistoryProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdHistoryTable/cnpdThresholdHistoryEntry/cnpdThresholdHistoryProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdHistoryTable",
                    "cnpdThresholdHistoryEntry",
                    "cnpdThresholdHistoryProtocol"
                  ]
                },
                "description": "Retrieve cnpdThresholdHistoryProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdHistoryStatsSelect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdThresholdHistoryTable/cnpdThresholdHistoryEntry/cnpdThresholdHistoryStatsSelect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdThresholdHistoryTable",
                    "cnpdThresholdHistoryEntry",
                    "cnpdThresholdHistoryStatsSelect"
                  ]
                },
                "description": "Retrieve cnpdThresholdHistoryStatsSelect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdSupportedProtocolsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable"
                  ]
                },
                "description": "Retrieve cnpdSupportedProtocolsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdSupportedProtocolsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/cnpdSupportedProtocolsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "cnpdSupportedProtocolsEntry"
                  ]
                },
                "description": "Retrieve cnpdSupportedProtocolsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdSupportedProtocolsIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/cnpdSupportedProtocolsEntry/cnpdSupportedProtocolsIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "cnpdSupportedProtocolsEntry",
                    "cnpdSupportedProtocolsIndex"
                  ]
                },
                "description": "Retrieve cnpdSupportedProtocolsIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdSupportedProtocolsName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/cnpdSupportedProtocolsEntry/cnpdSupportedProtocolsName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "cnpdSupportedProtocolsEntry",
                    "cnpdSupportedProtocolsName"
                  ]
                },
                "description": "Retrieve cnpdSupportedProtocolsName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-1/cnpdThresholdConfigIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-1",
                    "cnpdThresholdConfigIndex"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-1/cnpdThresholdConfigIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-1",
                    "cnpdThresholdConfigIfIndex"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-2/cnpdThresholdConfigIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-2",
                    "cnpdThresholdConfigIndex"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigStatsSelect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-2/cnpdThresholdConfigStatsSelect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-2",
                    "cnpdThresholdConfigStatsSelect"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigStatsSelect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-3/cnpdThresholdHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-3",
                    "cnpdThresholdHistoryIndex"
                  ]
                },
                "description": "Retrieve cnpdThresholdHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdHistoryValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-3/cnpdThresholdHistoryValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-3",
                    "cnpdThresholdHistoryValue"
                  ]
                },
                "description": "Retrieve cnpdThresholdHistoryValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-4/cnpdThresholdConfigIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-4",
                    "cnpdThresholdConfigIndex"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigRising",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-4/cnpdThresholdConfigRising",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-4",
                    "cnpdThresholdConfigRising"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigRising from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-5/cnpdThresholdConfigIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-5",
                    "cnpdThresholdConfigIndex"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-5/cnpdThresholdConfigProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-5",
                    "cnpdThresholdConfigProtocol"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-6"
                  ]
                },
                "description": "Retrieve object-6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-6/cnpdThresholdHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-6",
                    "cnpdThresholdHistoryIndex"
                  ]
                },
                "description": "Retrieve cnpdThresholdHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdHistoryTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-6/cnpdThresholdHistoryTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-6",
                    "cnpdThresholdHistoryTime"
                  ]
                },
                "description": "Retrieve cnpdThresholdHistoryTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnpdThresholdConfigFalling",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB/cnpdSupportedProtocolsTable/object-4/cnpdThresholdConfigFalling",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NBAR-PROTOCOL-DISCOVERY-MIB:CISCO-NBAR-PROTOCOL-DISCOVERY-MIB",
                    "cnpdSupportedProtocolsTable",
                    "object-4",
                    "cnpdThresholdConfigFalling"
                  ]
                },
                "description": "Retrieve cnpdThresholdConfigFalling from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-NETSYNC-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-NETSYNC-MIB\n\nMIB data from `CISCO-NETSYNC-MIB` module.\n\n**Root containers:** 1 (CISCO-NETSYNC-MIB)\n**Paths:** 117 | **Descendants:** 131\n\nAll endpoints are read-only (GET).\n\nEndpoints: 117 | Operations: 117",
          "item": [
            {
              "name": "GET Get CISCO-NETSYNC-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB"
                  ]
                },
                "description": "Retrieve CISCO-NETSYNC-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoNetsyncMIBNotifControl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/ciscoNetsyncMIBNotifControl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "ciscoNetsyncMIBNotifControl"
                  ]
                },
                "description": "Retrieve ciscoNetsyncMIBNotifControl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsMIBEnableStatusNotification",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/ciscoNetsyncMIBNotifControl/cnsMIBEnableStatusNotification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "ciscoNetsyncMIBNotifControl",
                    "cnsMIBEnableStatusNotification"
                  ]
                },
                "description": "Retrieve cnsMIBEnableStatusNotification from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsClkSelGlobalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsClkSelGlobalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsClkSelGlobalTable"
                  ]
                },
                "description": "Retrieve cnsClkSelGlobalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsClkSelGlobalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsClkSelGlobalTable/cnsClkSelGlobalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsClkSelGlobalTable",
                    "cnsClkSelGlobalEntry"
                  ]
                },
                "description": "Retrieve cnsClkSelGlobalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsClkSelGloProcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsClkSelGlobalTable/cnsClkSelGlobalEntry/cnsClkSelGloProcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsClkSelGlobalTable",
                    "cnsClkSelGlobalEntry",
                    "cnsClkSelGloProcIndex"
                  ]
                },
                "description": "Retrieve cnsClkSelGloProcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsClkSelGlobProcessMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsClkSelGlobalTable/cnsClkSelGlobalEntry/cnsClkSelGlobProcessMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsClkSelGlobalTable",
                    "cnsClkSelGlobalEntry",
                    "cnsClkSelGlobProcessMode"
                  ]
                },
                "description": "Retrieve cnsClkSelGlobProcessMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsClkSelGlobClockMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsClkSelGlobalTable/cnsClkSelGlobalEntry/cnsClkSelGlobClockMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsClkSelGlobalTable",
                    "cnsClkSelGlobalEntry",
                    "cnsClkSelGlobClockMode"
                  ]
                },
                "description": "Retrieve cnsClkSelGlobClockMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsClkSelGlobNetsyncEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsClkSelGlobalTable/cnsClkSelGlobalEntry/cnsClkSelGlobNetsyncEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsClkSelGlobalTable",
                    "cnsClkSelGlobalEntry",
                    "cnsClkSelGlobNetsyncEnable"
                  ]
                },
                "description": "Retrieve cnsClkSelGlobNetsyncEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsClkSelGlobRevertiveMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsClkSelGlobalTable/cnsClkSelGlobalEntry/cnsClkSelGlobRevertiveMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsClkSelGlobalTable",
                    "cnsClkSelGlobalEntry",
                    "cnsClkSelGlobRevertiveMode"
                  ]
                },
                "description": "Retrieve cnsClkSelGlobRevertiveMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsClkSelGlobESMCMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsClkSelGlobalTable/cnsClkSelGlobalEntry/cnsClkSelGlobESMCMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsClkSelGlobalTable",
                    "cnsClkSelGlobalEntry",
                    "cnsClkSelGlobESMCMode"
                  ]
                },
                "description": "Retrieve cnsClkSelGlobESMCMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsClkSelGlobEECOption",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsClkSelGlobalTable/cnsClkSelGlobalEntry/cnsClkSelGlobEECOption",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsClkSelGlobalTable",
                    "cnsClkSelGlobalEntry",
                    "cnsClkSelGlobEECOption"
                  ]
                },
                "description": "Retrieve cnsClkSelGlobEECOption from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsClkSelGlobNetworkOption",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsClkSelGlobalTable/cnsClkSelGlobalEntry/cnsClkSelGlobNetworkOption",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsClkSelGlobalTable",
                    "cnsClkSelGlobalEntry",
                    "cnsClkSelGlobNetworkOption"
                  ]
                },
                "description": "Retrieve cnsClkSelGlobNetworkOption from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsClkSelGlobHoldoffTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsClkSelGlobalTable/cnsClkSelGlobalEntry/cnsClkSelGlobHoldoffTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsClkSelGlobalTable",
                    "cnsClkSelGlobalEntry",
                    "cnsClkSelGlobHoldoffTime"
                  ]
                },
                "description": "Retrieve cnsClkSelGlobHoldoffTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsClkSelGlobWtrTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsClkSelGlobalTable/cnsClkSelGlobalEntry/cnsClkSelGlobWtrTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsClkSelGlobalTable",
                    "cnsClkSelGlobalEntry",
                    "cnsClkSelGlobWtrTime"
                  ]
                },
                "description": "Retrieve cnsClkSelGlobWtrTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsClkSelGlobNofSources",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsClkSelGlobalTable/cnsClkSelGlobalEntry/cnsClkSelGlobNofSources",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsClkSelGlobalTable",
                    "cnsClkSelGlobalEntry",
                    "cnsClkSelGlobNofSources"
                  ]
                },
                "description": "Retrieve cnsClkSelGlobNofSources from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsClkSelGlobLastHoldoverSeconds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsClkSelGlobalTable/cnsClkSelGlobalEntry/cnsClkSelGlobLastHoldoverSeconds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsClkSelGlobalTable",
                    "cnsClkSelGlobalEntry",
                    "cnsClkSelGlobLastHoldoverSeconds"
                  ]
                },
                "description": "Retrieve cnsClkSelGlobLastHoldoverSeconds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsClkSelGlobCurrHoldoverSeconds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsClkSelGlobalTable/cnsClkSelGlobalEntry/cnsClkSelGlobCurrHoldoverSeconds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsClkSelGlobalTable",
                    "cnsClkSelGlobalEntry",
                    "cnsClkSelGlobCurrHoldoverSeconds"
                  ]
                },
                "description": "Retrieve cnsClkSelGlobCurrHoldoverSeconds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelectedInputSourceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsSelectedInputSourceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsSelectedInputSourceTable"
                  ]
                },
                "description": "Retrieve cnsSelectedInputSourceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelectedInputSourceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsSelectedInputSourceTable/cnsSelectedInputSourceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsSelectedInputSourceTable",
                    "cnsSelectedInputSourceEntry"
                  ]
                },
                "description": "Retrieve cnsSelectedInputSourceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelInpSrcNetsyncIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsSelectedInputSourceTable/cnsSelectedInputSourceEntry/cnsSelInpSrcNetsyncIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsSelectedInputSourceTable",
                    "cnsSelectedInputSourceEntry",
                    "cnsSelInpSrcNetsyncIndex"
                  ]
                },
                "description": "Retrieve cnsSelInpSrcNetsyncIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelInpSrcName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsSelectedInputSourceTable/cnsSelectedInputSourceEntry/cnsSelInpSrcName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsSelectedInputSourceTable",
                    "cnsSelectedInputSourceEntry",
                    "cnsSelInpSrcName"
                  ]
                },
                "description": "Retrieve cnsSelInpSrcName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelInpSrcIntfType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsSelectedInputSourceTable/cnsSelectedInputSourceEntry/cnsSelInpSrcIntfType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsSelectedInputSourceTable",
                    "cnsSelectedInputSourceEntry",
                    "cnsSelInpSrcIntfType"
                  ]
                },
                "description": "Retrieve cnsSelInpSrcIntfType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelInpSrcQualityLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsSelectedInputSourceTable/cnsSelectedInputSourceEntry/cnsSelInpSrcQualityLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsSelectedInputSourceTable",
                    "cnsSelectedInputSourceEntry",
                    "cnsSelInpSrcQualityLevel"
                  ]
                },
                "description": "Retrieve cnsSelInpSrcQualityLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelInpSrcPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsSelectedInputSourceTable/cnsSelectedInputSourceEntry/cnsSelInpSrcPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsSelectedInputSourceTable",
                    "cnsSelectedInputSourceEntry",
                    "cnsSelInpSrcPriority"
                  ]
                },
                "description": "Retrieve cnsSelInpSrcPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelInpSrcTimestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsSelectedInputSourceTable/cnsSelectedInputSourceEntry/cnsSelInpSrcTimestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsSelectedInputSourceTable",
                    "cnsSelectedInputSourceEntry",
                    "cnsSelInpSrcTimestamp"
                  ]
                },
                "description": "Retrieve cnsSelInpSrcTimestamp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelInpSrcFSW",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsSelectedInputSourceTable/cnsSelectedInputSourceEntry/cnsSelInpSrcFSW",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsSelectedInputSourceTable",
                    "cnsSelectedInputSourceEntry",
                    "cnsSelInpSrcFSW"
                  ]
                },
                "description": "Retrieve cnsSelInpSrcFSW from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelInpSrcMSW",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsSelectedInputSourceTable/cnsSelectedInputSourceEntry/cnsSelInpSrcMSW",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsSelectedInputSourceTable",
                    "cnsSelectedInputSourceEntry",
                    "cnsSelInpSrcMSW"
                  ]
                },
                "description": "Retrieve cnsSelInpSrcMSW from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInputSourceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable"
                  ]
                },
                "description": "Retrieve cnsInputSourceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInputSourceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry"
                  ]
                },
                "description": "Retrieve cnsInputSourceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcNetsyncIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcNetsyncIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcNetsyncIndex"
                  ]
                },
                "description": "Retrieve cnsInpSrcNetsyncIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcName"
                  ]
                },
                "description": "Retrieve cnsInpSrcName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcIntfType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcIntfType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcIntfType"
                  ]
                },
                "description": "Retrieve cnsInpSrcIntfType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcPriority"
                  ]
                },
                "description": "Retrieve cnsInpSrcPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcESMCCap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcESMCCap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcESMCCap"
                  ]
                },
                "description": "Retrieve cnsInpSrcESMCCap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcSSMCap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcSSMCap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcSSMCap"
                  ]
                },
                "description": "Retrieve cnsInpSrcSSMCap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcQualityLevelTxCfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcQualityLevelTxCfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcQualityLevelTxCfg"
                  ]
                },
                "description": "Retrieve cnsInpSrcQualityLevelTxCfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcQualityLevelRxCfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcQualityLevelRxCfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcQualityLevelRxCfg"
                  ]
                },
                "description": "Retrieve cnsInpSrcQualityLevelRxCfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcQualityLevelTx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcQualityLevelTx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcQualityLevelTx"
                  ]
                },
                "description": "Retrieve cnsInpSrcQualityLevelTx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcQualityLevelRx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcQualityLevelRx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcQualityLevelRx"
                  ]
                },
                "description": "Retrieve cnsInpSrcQualityLevelRx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcQualityLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcQualityLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcQualityLevel"
                  ]
                },
                "description": "Retrieve cnsInpSrcQualityLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcHoldoffTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcHoldoffTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcHoldoffTime"
                  ]
                },
                "description": "Retrieve cnsInpSrcHoldoffTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcWtrTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcWtrTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcWtrTime"
                  ]
                },
                "description": "Retrieve cnsInpSrcWtrTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcLockout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcLockout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcLockout"
                  ]
                },
                "description": "Retrieve cnsInpSrcLockout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcSignalFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcSignalFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcSignalFailure"
                  ]
                },
                "description": "Retrieve cnsInpSrcSignalFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcAlarm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcAlarm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcAlarm"
                  ]
                },
                "description": "Retrieve cnsInpSrcAlarm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcAlarmInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcAlarmInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcAlarmInfo"
                  ]
                },
                "description": "Retrieve cnsInpSrcAlarmInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcFSW",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcFSW",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcFSW"
                  ]
                },
                "description": "Retrieve cnsInpSrcFSW from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcMSW",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsInputSourceTable/cnsInputSourceEntry/cnsInpSrcMSW",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsInputSourceTable",
                    "cnsInputSourceEntry",
                    "cnsInpSrcMSW"
                  ]
                },
                "description": "Retrieve cnsInpSrcMSW from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutputTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsExtOutputTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsExtOutputTable"
                  ]
                },
                "description": "Retrieve cnsExtOutputTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutputEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsExtOutputTable/cnsExtOutputEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsExtOutputTable",
                    "cnsExtOutputEntry"
                  ]
                },
                "description": "Retrieve cnsExtOutputEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutListIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsExtOutputTable/cnsExtOutputEntry/cnsExtOutListIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsExtOutputTable",
                    "cnsExtOutputEntry",
                    "cnsExtOutListIndex"
                  ]
                },
                "description": "Retrieve cnsExtOutListIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutSelNetsyncIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsExtOutputTable/cnsExtOutputEntry/cnsExtOutSelNetsyncIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsExtOutputTable",
                    "cnsExtOutputEntry",
                    "cnsExtOutSelNetsyncIndex"
                  ]
                },
                "description": "Retrieve cnsExtOutSelNetsyncIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsExtOutputTable/cnsExtOutputEntry/cnsExtOutName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsExtOutputTable",
                    "cnsExtOutputEntry",
                    "cnsExtOutName"
                  ]
                },
                "description": "Retrieve cnsExtOutName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutIntfType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsExtOutputTable/cnsExtOutputEntry/cnsExtOutIntfType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsExtOutputTable",
                    "cnsExtOutputEntry",
                    "cnsExtOutIntfType"
                  ]
                },
                "description": "Retrieve cnsExtOutIntfType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutQualityLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsExtOutputTable/cnsExtOutputEntry/cnsExtOutQualityLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsExtOutputTable",
                    "cnsExtOutputEntry",
                    "cnsExtOutQualityLevel"
                  ]
                },
                "description": "Retrieve cnsExtOutQualityLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsExtOutputTable/cnsExtOutputEntry/cnsExtOutPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsExtOutputTable",
                    "cnsExtOutputEntry",
                    "cnsExtOutPriority"
                  ]
                },
                "description": "Retrieve cnsExtOutPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutFSW",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsExtOutputTable/cnsExtOutputEntry/cnsExtOutFSW",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsExtOutputTable",
                    "cnsExtOutputEntry",
                    "cnsExtOutFSW"
                  ]
                },
                "description": "Retrieve cnsExtOutFSW from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutMSW",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsExtOutputTable/cnsExtOutputEntry/cnsExtOutMSW",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsExtOutputTable",
                    "cnsExtOutputEntry",
                    "cnsExtOutMSW"
                  ]
                },
                "description": "Retrieve cnsExtOutMSW from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutSquelch",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsExtOutputTable/cnsExtOutputEntry/cnsExtOutSquelch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsExtOutputTable",
                    "cnsExtOutputEntry",
                    "cnsExtOutSquelch"
                  ]
                },
                "description": "Retrieve cnsExtOutSquelch from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClockSourceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable"
                  ]
                },
                "description": "Retrieve cnsT4ClockSourceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClockSourceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry"
                  ]
                },
                "description": "Retrieve cnsT4ClockSourceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutListIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsExtOutListIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsExtOutListIndex"
                  ]
                },
                "description": "Retrieve cnsExtOutListIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcNetsyncIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcNetsyncIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcNetsyncIndex"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcNetsyncIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcName"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcIntfType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcIntfType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcIntfType"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcIntfType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcPriority"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcESMCCap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcESMCCap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcESMCCap"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcESMCCap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcSSMCap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcSSMCap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcSSMCap"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcSSMCap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcQualityLevelTxCfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcQualityLevelTxCfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcQualityLevelTxCfg"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcQualityLevelTxCfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcQualityLevelRxCfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcQualityLevelRxCfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcQualityLevelRxCfg"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcQualityLevelRxCfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcQualityLevelTx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcQualityLevelTx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcQualityLevelTx"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcQualityLevelTx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcQualityLevelRx",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcQualityLevelRx",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcQualityLevelRx"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcQualityLevelRx from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcQualityLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcQualityLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcQualityLevel"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcQualityLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcHoldoffTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcHoldoffTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcHoldoffTime"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcHoldoffTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcWtrTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcWtrTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcWtrTime"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcWtrTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcLockout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcLockout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcLockout"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcLockout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcSignalFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcSignalFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcSignalFailure"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcSignalFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcAlarm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcAlarm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcAlarm"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcAlarm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcAlarmInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcAlarmInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcAlarmInfo"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcAlarmInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcFSW",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcFSW",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcFSW"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcFSW from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcMSW",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/cnsT4ClockSourceEntry/cnsT4ClkSrcMSW",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "cnsT4ClockSourceEntry",
                    "cnsT4ClkSrcMSW"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcMSW from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelInpSrcNetsyncIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-1/cnsSelInpSrcNetsyncIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-1",
                    "cnsSelInpSrcNetsyncIndex"
                  ]
                },
                "description": "Retrieve cnsSelInpSrcNetsyncIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelInpSrcName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-1/cnsSelInpSrcName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-1",
                    "cnsSelInpSrcName"
                  ]
                },
                "description": "Retrieve cnsSelInpSrcName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelInpSrcNetsyncIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-2/cnsSelInpSrcNetsyncIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-2",
                    "cnsSelInpSrcNetsyncIndex"
                  ]
                },
                "description": "Retrieve cnsSelInpSrcNetsyncIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelInpSrcIntfType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-2/cnsSelInpSrcIntfType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-2",
                    "cnsSelInpSrcIntfType"
                  ]
                },
                "description": "Retrieve cnsSelInpSrcIntfType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelInpSrcNetsyncIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-3/cnsSelInpSrcNetsyncIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-3",
                    "cnsSelInpSrcNetsyncIndex"
                  ]
                },
                "description": "Retrieve cnsSelInpSrcNetsyncIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelInpSrcQualityLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-3/cnsSelInpSrcQualityLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-3",
                    "cnsSelInpSrcQualityLevel"
                  ]
                },
                "description": "Retrieve cnsSelInpSrcQualityLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelInpSrcNetsyncIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-4/cnsSelInpSrcNetsyncIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-4",
                    "cnsSelInpSrcNetsyncIndex"
                  ]
                },
                "description": "Retrieve cnsSelInpSrcNetsyncIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsSelInpSrcPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-4/cnsSelInpSrcPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-4",
                    "cnsSelInpSrcPriority"
                  ]
                },
                "description": "Retrieve cnsSelInpSrcPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutListIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-1/cnsExtOutListIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-1",
                    "cnsExtOutListIndex"
                  ]
                },
                "description": "Retrieve cnsExtOutListIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-1/cnsExtOutName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-1",
                    "cnsExtOutName"
                  ]
                },
                "description": "Retrieve cnsExtOutName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutListIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-2/cnsExtOutListIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-2",
                    "cnsExtOutListIndex"
                  ]
                },
                "description": "Retrieve cnsExtOutListIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcNetsyncIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-2/cnsT4ClkSrcNetsyncIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-2",
                    "cnsT4ClkSrcNetsyncIndex"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcNetsyncIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-2/cnsT4ClkSrcName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-2",
                    "cnsT4ClkSrcName"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutListIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-3/cnsExtOutListIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-3",
                    "cnsExtOutListIndex"
                  ]
                },
                "description": "Retrieve cnsExtOutListIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcNetsyncIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-3/cnsT4ClkSrcNetsyncIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-3",
                    "cnsT4ClkSrcNetsyncIndex"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcNetsyncIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcIntfType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-3/cnsT4ClkSrcIntfType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-3",
                    "cnsT4ClkSrcIntfType"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcIntfType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutListIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-4/cnsExtOutListIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-4",
                    "cnsExtOutListIndex"
                  ]
                },
                "description": "Retrieve cnsExtOutListIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcNetsyncIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-4/cnsT4ClkSrcNetsyncIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-4",
                    "cnsT4ClkSrcNetsyncIndex"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcNetsyncIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcQualityLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-4/cnsT4ClkSrcQualityLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-4",
                    "cnsT4ClkSrcQualityLevel"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcQualityLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsExtOutListIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-5/cnsExtOutListIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-5",
                    "cnsExtOutListIndex"
                  ]
                },
                "description": "Retrieve cnsExtOutListIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcNetsyncIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-5/cnsT4ClkSrcNetsyncIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-5",
                    "cnsT4ClkSrcNetsyncIndex"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcNetsyncIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsT4ClkSrcPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-5/cnsT4ClkSrcPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-5",
                    "cnsT4ClkSrcPriority"
                  ]
                },
                "description": "Retrieve cnsT4ClkSrcPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcNetsyncIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-1/cnsInpSrcNetsyncIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-1",
                    "cnsInpSrcNetsyncIndex"
                  ]
                },
                "description": "Retrieve cnsInpSrcNetsyncIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-1/cnsInpSrcName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-1",
                    "cnsInpSrcName"
                  ]
                },
                "description": "Retrieve cnsInpSrcName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcNetsyncIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-2/cnsInpSrcNetsyncIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-2",
                    "cnsInpSrcNetsyncIndex"
                  ]
                },
                "description": "Retrieve cnsInpSrcNetsyncIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcIntfType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-2/cnsInpSrcIntfType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-2",
                    "cnsInpSrcIntfType"
                  ]
                },
                "description": "Retrieve cnsInpSrcIntfType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcFailClear",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-3/cnsInpSrcFailClear",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-3",
                    "cnsInpSrcFailClear"
                  ]
                },
                "description": "Retrieve cnsInpSrcFailClear from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcNetsyncIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-3/cnsInpSrcNetsyncIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-3",
                    "cnsInpSrcNetsyncIndex"
                  ]
                },
                "description": "Retrieve cnsInpSrcNetsyncIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcAlarmInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-3/cnsInpSrcAlarmInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-3",
                    "cnsInpSrcAlarmInfo"
                  ]
                },
                "description": "Retrieve cnsInpSrcAlarmInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cnsInpSrcAlarmClear",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB/cnsT4ClockSourceTable/object-4/cnsInpSrcAlarmClear",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NETSYNC-MIB:CISCO-NETSYNC-MIB",
                    "cnsT4ClockSourceTable",
                    "object-4",
                    "cnsInpSrcAlarmClear"
                  ]
                },
                "description": "Retrieve cnsInpSrcAlarmClear from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-NTP-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-NTP-MIB\n\nMIB data from `CISCO-NTP-MIB` module.\n\n**Root containers:** 1 (CISCO-NTP-MIB)\n**Paths:** 56 | **Descendants:** 62\n\nAll endpoints are read-only (GET).\n\nEndpoints: 56 | Operations: 56",
          "item": [
            {
              "name": "GET Get CISCO-NTP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB"
                  ]
                },
                "description": "Retrieve CISCO-NTP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpSystem",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpSystem",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpSystem"
                  ]
                },
                "description": "Retrieve cntpSystem from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpSysLeap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpSystem/cntpSysLeap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpSystem",
                    "cntpSysLeap"
                  ]
                },
                "description": "Retrieve cntpSysLeap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpSysStratum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpSystem/cntpSysStratum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpSystem",
                    "cntpSysStratum"
                  ]
                },
                "description": "Retrieve cntpSysStratum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpSysPrecision",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpSystem/cntpSysPrecision",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpSystem",
                    "cntpSysPrecision"
                  ]
                },
                "description": "Retrieve cntpSysPrecision from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpSysRootDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpSystem/cntpSysRootDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpSystem",
                    "cntpSysRootDelay"
                  ]
                },
                "description": "Retrieve cntpSysRootDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpSysRootDispersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpSystem/cntpSysRootDispersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpSystem",
                    "cntpSysRootDispersion"
                  ]
                },
                "description": "Retrieve cntpSysRootDispersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpSysRefId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpSystem/cntpSysRefId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpSystem",
                    "cntpSysRefId"
                  ]
                },
                "description": "Retrieve cntpSysRefId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpSysRefTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpSystem/cntpSysRefTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpSystem",
                    "cntpSysRefTime"
                  ]
                },
                "description": "Retrieve cntpSysRefTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpSysPoll",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpSystem/cntpSysPoll",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpSystem",
                    "cntpSysPoll"
                  ]
                },
                "description": "Retrieve cntpSysPoll from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpSysPeer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpSystem/cntpSysPeer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpSystem",
                    "cntpSysPeer"
                  ]
                },
                "description": "Retrieve cntpSysPeer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpSysClock",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpSystem/cntpSysClock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpSystem",
                    "cntpSysClock"
                  ]
                },
                "description": "Retrieve cntpSysClock from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpSysSrvStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpSystem/cntpSysSrvStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpSystem",
                    "cntpSysSrvStatus"
                  ]
                },
                "description": "Retrieve cntpSysSrvStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersVarTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable"
                  ]
                },
                "description": "Retrieve cntpPeersVarTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersVarEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry"
                  ]
                },
                "description": "Retrieve cntpPeersVarEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersAssocId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersAssocId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersAssocId"
                  ]
                },
                "description": "Retrieve cntpPeersAssocId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersConfigured",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersConfigured",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersConfigured"
                  ]
                },
                "description": "Retrieve cntpPeersConfigured from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersPeerAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersPeerAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersPeerAddress"
                  ]
                },
                "description": "Retrieve cntpPeersPeerAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersPeerPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersPeerPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersPeerPort"
                  ]
                },
                "description": "Retrieve cntpPeersPeerPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersHostAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersHostAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersHostAddress"
                  ]
                },
                "description": "Retrieve cntpPeersHostAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersHostPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersHostPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersHostPort"
                  ]
                },
                "description": "Retrieve cntpPeersHostPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersLeap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersLeap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersLeap"
                  ]
                },
                "description": "Retrieve cntpPeersLeap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersMode"
                  ]
                },
                "description": "Retrieve cntpPeersMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersStratum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersStratum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersStratum"
                  ]
                },
                "description": "Retrieve cntpPeersStratum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersPeerPoll",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersPeerPoll",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersPeerPoll"
                  ]
                },
                "description": "Retrieve cntpPeersPeerPoll from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersHostPoll",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersHostPoll",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersHostPoll"
                  ]
                },
                "description": "Retrieve cntpPeersHostPoll from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersPrecision",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersPrecision",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersPrecision"
                  ]
                },
                "description": "Retrieve cntpPeersPrecision from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersRootDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersRootDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersRootDelay"
                  ]
                },
                "description": "Retrieve cntpPeersRootDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersRootDispersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersRootDispersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersRootDispersion"
                  ]
                },
                "description": "Retrieve cntpPeersRootDispersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersRefId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersRefId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersRefId"
                  ]
                },
                "description": "Retrieve cntpPeersRefId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersRefTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersRefTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersRefTime"
                  ]
                },
                "description": "Retrieve cntpPeersRefTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersOrgTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersOrgTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersOrgTime"
                  ]
                },
                "description": "Retrieve cntpPeersOrgTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersReceiveTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersReceiveTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersReceiveTime"
                  ]
                },
                "description": "Retrieve cntpPeersReceiveTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersTransmitTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersTransmitTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersTransmitTime"
                  ]
                },
                "description": "Retrieve cntpPeersTransmitTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersReach",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersReach",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersReach"
                  ]
                },
                "description": "Retrieve cntpPeersReach from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersTimer"
                  ]
                },
                "description": "Retrieve cntpPeersTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersOffset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersOffset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersOffset"
                  ]
                },
                "description": "Retrieve cntpPeersOffset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersDelay"
                  ]
                },
                "description": "Retrieve cntpPeersDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersDispersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersDispersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersDispersion"
                  ]
                },
                "description": "Retrieve cntpPeersDispersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersFilterValidEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersFilterValidEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersFilterValidEntries"
                  ]
                },
                "description": "Retrieve cntpPeersFilterValidEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersEntryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersEntryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersEntryStatus"
                  ]
                },
                "description": "Retrieve cntpPeersEntryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersUpdateTimeRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersUpdateTimeRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersUpdateTimeRev1"
                  ]
                },
                "description": "Retrieve cntpPeersUpdateTimeRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersPrefPeer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersPrefPeer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersPrefPeer"
                  ]
                },
                "description": "Retrieve cntpPeersPrefPeer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersPeerType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersPeerType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersPeerType"
                  ]
                },
                "description": "Retrieve cntpPeersPeerType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersPeerName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpPeersVarTable/cntpPeersVarEntry/cntpPeersPeerName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpPeersVarTable",
                    "cntpPeersVarEntry",
                    "cntpPeersPeerName"
                  ]
                },
                "description": "Retrieve cntpPeersPeerName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpFilterRegisterTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpFilterRegisterTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpFilterRegisterTable"
                  ]
                },
                "description": "Retrieve cntpFilterRegisterTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpFilterRegisterEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpFilterRegisterTable/cntpFilterRegisterEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpFilterRegisterTable",
                    "cntpFilterRegisterEntry"
                  ]
                },
                "description": "Retrieve cntpFilterRegisterEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersAssocId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpFilterRegisterTable/cntpFilterRegisterEntry/cntpPeersAssocId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpFilterRegisterTable",
                    "cntpFilterRegisterEntry",
                    "cntpPeersAssocId"
                  ]
                },
                "description": "Retrieve cntpPeersAssocId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpFilterIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpFilterRegisterTable/cntpFilterRegisterEntry/cntpFilterIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpFilterRegisterTable",
                    "cntpFilterRegisterEntry",
                    "cntpFilterIndex"
                  ]
                },
                "description": "Retrieve cntpFilterIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpFilterPeersOffset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpFilterRegisterTable/cntpFilterRegisterEntry/cntpFilterPeersOffset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpFilterRegisterTable",
                    "cntpFilterRegisterEntry",
                    "cntpFilterPeersOffset"
                  ]
                },
                "description": "Retrieve cntpFilterPeersOffset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpFilterPeersDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpFilterRegisterTable/cntpFilterRegisterEntry/cntpFilterPeersDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpFilterRegisterTable",
                    "cntpFilterRegisterEntry",
                    "cntpFilterPeersDelay"
                  ]
                },
                "description": "Retrieve cntpFilterPeersDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpFilterPeersDispersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpFilterRegisterTable/cntpFilterRegisterEntry/cntpFilterPeersDispersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpFilterRegisterTable",
                    "cntpFilterRegisterEntry",
                    "cntpFilterPeersDispersion"
                  ]
                },
                "description": "Retrieve cntpFilterPeersDispersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpFilterRegisterTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpFilterRegisterTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpSysSrvStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpFilterRegisterTable/object-1/cntpSysSrvStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpFilterRegisterTable",
                    "object-1",
                    "cntpSysSrvStatus"
                  ]
                },
                "description": "Retrieve cntpSysSrvStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersAssocId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpFilterRegisterTable/object-1/cntpPeersAssocId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpFilterRegisterTable",
                    "object-1",
                    "cntpPeersAssocId"
                  ]
                },
                "description": "Retrieve cntpPeersAssocId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cntpPeersPeerAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-NTP-MIB:CISCO-NTP-MIB/cntpFilterRegisterTable/object-1/cntpPeersPeerAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-NTP-MIB:CISCO-NTP-MIB",
                    "cntpFilterRegisterTable",
                    "object-1",
                    "cntpPeersPeerAddress"
                  ]
                },
                "description": "Retrieve cntpPeersPeerAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-OSPF-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-OSPF-MIB\n\nMIB data from `CISCO-OSPF-MIB` module.\n\n**Root containers:** 1 (CISCO-OSPF-MIB)\n**Paths:** 74 | **Descendants:** 73\n\nAll endpoints are read-only (GET).\n\nEndpoints: 74 | Operations: 74",
          "item": [
            {
              "name": "GET Get CISCO-OSPF-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB"
                  ]
                },
                "description": "Retrieve CISCO-OSPF-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfGeneralGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfGeneralGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfGeneralGroup"
                  ]
                },
                "description": "Retrieve cospfGeneralGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfRFC1583Compatibility",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfGeneralGroup/cospfRFC1583Compatibility",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfGeneralGroup",
                    "cospfRFC1583Compatibility"
                  ]
                },
                "description": "Retrieve cospfRFC1583Compatibility from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfOpaqueLsaSupport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfGeneralGroup/cospfOpaqueLsaSupport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfGeneralGroup",
                    "cospfOpaqueLsaSupport"
                  ]
                },
                "description": "Retrieve cospfOpaqueLsaSupport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfTrafficEngineeringSupport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfGeneralGroup/cospfTrafficEngineeringSupport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfGeneralGroup",
                    "cospfTrafficEngineeringSupport"
                  ]
                },
                "description": "Retrieve cospfTrafficEngineeringSupport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfOpaqueASLsaCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfGeneralGroup/cospfOpaqueASLsaCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfGeneralGroup",
                    "cospfOpaqueASLsaCount"
                  ]
                },
                "description": "Retrieve cospfOpaqueASLsaCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfOpaqueASLsaCksumSum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfGeneralGroup/cospfOpaqueASLsaCksumSum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfGeneralGroup",
                    "cospfOpaqueASLsaCksumSum"
                  ]
                },
                "description": "Retrieve cospfOpaqueASLsaCksumSum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLsdbTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLsdbTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLsdbTable"
                  ]
                },
                "description": "Retrieve cospfLsdbTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLsdbEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLsdbTable/cospfLsdbEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLsdbTable",
                    "cospfLsdbEntry"
                  ]
                },
                "description": "Retrieve cospfLsdbEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLsdbTable/cospfLsdbEntry/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLsdbTable",
                    "cospfLsdbEntry",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLsdbTable/cospfLsdbEntry/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLsdbTable",
                    "cospfLsdbEntry",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLsdbTable/cospfLsdbEntry/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLsdbTable",
                    "cospfLsdbEntry",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLsdbTable/cospfLsdbEntry/cospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLsdbTable",
                    "cospfLsdbEntry",
                    "cospfLsdbType"
                  ]
                },
                "description": "Retrieve cospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLsdbSequence",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLsdbTable/cospfLsdbEntry/cospfLsdbSequence",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLsdbTable",
                    "cospfLsdbEntry",
                    "cospfLsdbSequence"
                  ]
                },
                "description": "Retrieve cospfLsdbSequence from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLsdbAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLsdbTable/cospfLsdbEntry/cospfLsdbAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLsdbTable",
                    "cospfLsdbEntry",
                    "cospfLsdbAge"
                  ]
                },
                "description": "Retrieve cospfLsdbAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLsdbChecksum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLsdbTable/cospfLsdbEntry/cospfLsdbChecksum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLsdbTable",
                    "cospfLsdbEntry",
                    "cospfLsdbChecksum"
                  ]
                },
                "description": "Retrieve cospfLsdbChecksum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLsdbAdvertisement",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLsdbTable/cospfLsdbEntry/cospfLsdbAdvertisement",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLsdbTable",
                    "cospfLsdbEntry",
                    "cospfLsdbAdvertisement"
                  ]
                },
                "description": "Retrieve cospfLsdbAdvertisement from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLocalLsdbTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLocalLsdbTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLocalLsdbTable"
                  ]
                },
                "description": "Retrieve cospfLocalLsdbTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLocalLsdbEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLocalLsdbTable/cospfLocalLsdbEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLocalLsdbTable",
                    "cospfLocalLsdbEntry"
                  ]
                },
                "description": "Retrieve cospfLocalLsdbEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLocalLsdbIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLocalLsdbTable/cospfLocalLsdbEntry/cospfLocalLsdbIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLocalLsdbTable",
                    "cospfLocalLsdbEntry",
                    "cospfLocalLsdbIpAddress"
                  ]
                },
                "description": "Retrieve cospfLocalLsdbIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLocalLsdbAddressLessIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLocalLsdbTable/cospfLocalLsdbEntry/cospfLocalLsdbAddressLessIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLocalLsdbTable",
                    "cospfLocalLsdbEntry",
                    "cospfLocalLsdbAddressLessIf"
                  ]
                },
                "description": "Retrieve cospfLocalLsdbAddressLessIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLocalLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLocalLsdbTable/cospfLocalLsdbEntry/cospfLocalLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLocalLsdbTable",
                    "cospfLocalLsdbEntry",
                    "cospfLocalLsdbType"
                  ]
                },
                "description": "Retrieve cospfLocalLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLocalLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLocalLsdbTable/cospfLocalLsdbEntry/cospfLocalLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLocalLsdbTable",
                    "cospfLocalLsdbEntry",
                    "cospfLocalLsdbLsid"
                  ]
                },
                "description": "Retrieve cospfLocalLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLocalLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLocalLsdbTable/cospfLocalLsdbEntry/cospfLocalLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLocalLsdbTable",
                    "cospfLocalLsdbEntry",
                    "cospfLocalLsdbRouterId"
                  ]
                },
                "description": "Retrieve cospfLocalLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLocalLsdbSequence",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLocalLsdbTable/cospfLocalLsdbEntry/cospfLocalLsdbSequence",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLocalLsdbTable",
                    "cospfLocalLsdbEntry",
                    "cospfLocalLsdbSequence"
                  ]
                },
                "description": "Retrieve cospfLocalLsdbSequence from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLocalLsdbAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLocalLsdbTable/cospfLocalLsdbEntry/cospfLocalLsdbAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLocalLsdbTable",
                    "cospfLocalLsdbEntry",
                    "cospfLocalLsdbAge"
                  ]
                },
                "description": "Retrieve cospfLocalLsdbAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLocalLsdbChecksum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLocalLsdbTable/cospfLocalLsdbEntry/cospfLocalLsdbChecksum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLocalLsdbTable",
                    "cospfLocalLsdbEntry",
                    "cospfLocalLsdbChecksum"
                  ]
                },
                "description": "Retrieve cospfLocalLsdbChecksum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLocalLsdbAdvertisement",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfLocalLsdbTable/cospfLocalLsdbEntry/cospfLocalLsdbAdvertisement",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfLocalLsdbTable",
                    "cospfLocalLsdbEntry",
                    "cospfLocalLsdbAdvertisement"
                  ]
                },
                "description": "Retrieve cospfLocalLsdbAdvertisement from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfVirtLocalLsdbTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfVirtLocalLsdbTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfVirtLocalLsdbTable"
                  ]
                },
                "description": "Retrieve cospfVirtLocalLsdbTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfVirtLocalLsdbEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfVirtLocalLsdbTable/cospfVirtLocalLsdbEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfVirtLocalLsdbTable",
                    "cospfVirtLocalLsdbEntry"
                  ]
                },
                "description": "Retrieve cospfVirtLocalLsdbEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfVirtLocalLsdbTransitArea",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfVirtLocalLsdbTable/cospfVirtLocalLsdbEntry/cospfVirtLocalLsdbTransitArea",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfVirtLocalLsdbTable",
                    "cospfVirtLocalLsdbEntry",
                    "cospfVirtLocalLsdbTransitArea"
                  ]
                },
                "description": "Retrieve cospfVirtLocalLsdbTransitArea from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfVirtLocalLsdbNeighbor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfVirtLocalLsdbTable/cospfVirtLocalLsdbEntry/cospfVirtLocalLsdbNeighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfVirtLocalLsdbTable",
                    "cospfVirtLocalLsdbEntry",
                    "cospfVirtLocalLsdbNeighbor"
                  ]
                },
                "description": "Retrieve cospfVirtLocalLsdbNeighbor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfVirtLocalLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfVirtLocalLsdbTable/cospfVirtLocalLsdbEntry/cospfVirtLocalLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfVirtLocalLsdbTable",
                    "cospfVirtLocalLsdbEntry",
                    "cospfVirtLocalLsdbType"
                  ]
                },
                "description": "Retrieve cospfVirtLocalLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfVirtLocalLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfVirtLocalLsdbTable/cospfVirtLocalLsdbEntry/cospfVirtLocalLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfVirtLocalLsdbTable",
                    "cospfVirtLocalLsdbEntry",
                    "cospfVirtLocalLsdbLsid"
                  ]
                },
                "description": "Retrieve cospfVirtLocalLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfVirtLocalLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfVirtLocalLsdbTable/cospfVirtLocalLsdbEntry/cospfVirtLocalLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfVirtLocalLsdbTable",
                    "cospfVirtLocalLsdbEntry",
                    "cospfVirtLocalLsdbRouterId"
                  ]
                },
                "description": "Retrieve cospfVirtLocalLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfVirtLocalLsdbSequence",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfVirtLocalLsdbTable/cospfVirtLocalLsdbEntry/cospfVirtLocalLsdbSequence",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfVirtLocalLsdbTable",
                    "cospfVirtLocalLsdbEntry",
                    "cospfVirtLocalLsdbSequence"
                  ]
                },
                "description": "Retrieve cospfVirtLocalLsdbSequence from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfVirtLocalLsdbAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfVirtLocalLsdbTable/cospfVirtLocalLsdbEntry/cospfVirtLocalLsdbAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfVirtLocalLsdbTable",
                    "cospfVirtLocalLsdbEntry",
                    "cospfVirtLocalLsdbAge"
                  ]
                },
                "description": "Retrieve cospfVirtLocalLsdbAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfVirtLocalLsdbChecksum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfVirtLocalLsdbTable/cospfVirtLocalLsdbEntry/cospfVirtLocalLsdbChecksum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfVirtLocalLsdbTable",
                    "cospfVirtLocalLsdbEntry",
                    "cospfVirtLocalLsdbChecksum"
                  ]
                },
                "description": "Retrieve cospfVirtLocalLsdbChecksum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfVirtLocalLsdbAdvertisement",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfVirtLocalLsdbTable/cospfVirtLocalLsdbEntry/cospfVirtLocalLsdbAdvertisement",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfVirtLocalLsdbTable",
                    "cospfVirtLocalLsdbEntry",
                    "cospfVirtLocalLsdbAdvertisement"
                  ]
                },
                "description": "Retrieve cospfVirtLocalLsdbAdvertisement from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinkNbrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinkNbrTable"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinkNbrTable/cospfShamLinkNbrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinkNbrTable",
                    "cospfShamLinkNbrEntry"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinkNbrTable/cospfShamLinkNbrEntry/cospfShamLinksLocalIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinkNbrTable",
                    "cospfShamLinkNbrEntry",
                    "cospfShamLinksLocalIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinkNbrTable/cospfShamLinkNbrEntry/cospfShamLinksLocalIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinkNbrTable",
                    "cospfShamLinkNbrEntry",
                    "cospfShamLinksLocalIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrArea",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinkNbrTable/cospfShamLinkNbrEntry/cospfShamLinkNbrArea",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinkNbrTable",
                    "cospfShamLinkNbrEntry",
                    "cospfShamLinkNbrArea"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrArea from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinkNbrTable/cospfShamLinkNbrEntry/cospfShamLinkNbrIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinkNbrTable",
                    "cospfShamLinkNbrEntry",
                    "cospfShamLinkNbrIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinkNbrTable/cospfShamLinkNbrEntry/cospfShamLinkNbrIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinkNbrTable",
                    "cospfShamLinkNbrEntry",
                    "cospfShamLinkNbrIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrRtrId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinkNbrTable/cospfShamLinkNbrEntry/cospfShamLinkNbrRtrId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinkNbrTable",
                    "cospfShamLinkNbrEntry",
                    "cospfShamLinkNbrRtrId"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrRtrId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrOptions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinkNbrTable/cospfShamLinkNbrEntry/cospfShamLinkNbrOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinkNbrTable",
                    "cospfShamLinkNbrEntry",
                    "cospfShamLinkNbrOptions"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrOptions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinkNbrTable/cospfShamLinkNbrEntry/cospfShamLinkNbrState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinkNbrTable",
                    "cospfShamLinkNbrEntry",
                    "cospfShamLinkNbrState"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinkNbrTable/cospfShamLinkNbrEntry/cospfShamLinkNbrEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinkNbrTable",
                    "cospfShamLinkNbrEntry",
                    "cospfShamLinkNbrEvents"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrLsRetransQLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinkNbrTable/cospfShamLinkNbrEntry/cospfShamLinkNbrLsRetransQLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinkNbrTable",
                    "cospfShamLinkNbrEntry",
                    "cospfShamLinkNbrLsRetransQLen"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrLsRetransQLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrHelloSuppressed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinkNbrTable/cospfShamLinkNbrEntry/cospfShamLinkNbrHelloSuppressed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinkNbrTable",
                    "cospfShamLinkNbrEntry",
                    "cospfShamLinkNbrHelloSuppressed"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrHelloSuppressed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinksTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinksTable"
                  ]
                },
                "description": "Retrieve cospfShamLinksTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinksTable/cospfShamLinksEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinksTable",
                    "cospfShamLinksEntry"
                  ]
                },
                "description": "Retrieve cospfShamLinksEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinksTable/cospfShamLinksEntry/cospfShamLinksAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinksTable",
                    "cospfShamLinksEntry",
                    "cospfShamLinksAreaId"
                  ]
                },
                "description": "Retrieve cospfShamLinksAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinksTable/cospfShamLinksEntry/cospfShamLinksLocalIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinksTable",
                    "cospfShamLinksEntry",
                    "cospfShamLinksLocalIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinksTable/cospfShamLinksEntry/cospfShamLinksLocalIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinksTable",
                    "cospfShamLinksEntry",
                    "cospfShamLinksLocalIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksRemoteIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinksTable/cospfShamLinksEntry/cospfShamLinksRemoteIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinksTable",
                    "cospfShamLinksEntry",
                    "cospfShamLinksRemoteIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinksRemoteIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksRemoteIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinksTable/cospfShamLinksEntry/cospfShamLinksRemoteIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinksTable",
                    "cospfShamLinksEntry",
                    "cospfShamLinksRemoteIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinksRemoteIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksRetransInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinksTable/cospfShamLinksEntry/cospfShamLinksRetransInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinksTable",
                    "cospfShamLinksEntry",
                    "cospfShamLinksRetransInterval"
                  ]
                },
                "description": "Retrieve cospfShamLinksRetransInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksHelloInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinksTable/cospfShamLinksEntry/cospfShamLinksHelloInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinksTable",
                    "cospfShamLinksEntry",
                    "cospfShamLinksHelloInterval"
                  ]
                },
                "description": "Retrieve cospfShamLinksHelloInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksRtrDeadInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinksTable/cospfShamLinksEntry/cospfShamLinksRtrDeadInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinksTable",
                    "cospfShamLinksEntry",
                    "cospfShamLinksRtrDeadInterval"
                  ]
                },
                "description": "Retrieve cospfShamLinksRtrDeadInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinksTable/cospfShamLinksEntry/cospfShamLinksState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinksTable",
                    "cospfShamLinksEntry",
                    "cospfShamLinksState"
                  ]
                },
                "description": "Retrieve cospfShamLinksState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinksTable/cospfShamLinksEntry/cospfShamLinksEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinksTable",
                    "cospfShamLinksEntry",
                    "cospfShamLinksEvents"
                  ]
                },
                "description": "Retrieve cospfShamLinksEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksMetric",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfShamLinksTable/cospfShamLinksEntry/cospfShamLinksMetric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfShamLinksTable",
                    "cospfShamLinksEntry",
                    "cospfShamLinksMetric"
                  ]
                },
                "description": "Retrieve cospfShamLinksMetric from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfOpaqueAreaLsaCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfOpaqueAreaLsaCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfOpaqueAreaLsaCount"
                  ]
                },
                "description": "Retrieve cospfOpaqueAreaLsaCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfOpaqueAreaLsaCksumSum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfOpaqueAreaLsaCksumSum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfOpaqueAreaLsaCksumSum"
                  ]
                },
                "description": "Retrieve cospfOpaqueAreaLsaCksumSum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfAreaNssaTranslatorRole",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfAreaNssaTranslatorRole",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfAreaNssaTranslatorRole"
                  ]
                },
                "description": "Retrieve cospfAreaNssaTranslatorRole from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfAreaNssaTranslatorState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfAreaNssaTranslatorState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfAreaNssaTranslatorState"
                  ]
                },
                "description": "Retrieve cospfAreaNssaTranslatorState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfAreaNssaTranslatorEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfAreaNssaTranslatorEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfAreaNssaTranslatorEvents"
                  ]
                },
                "description": "Retrieve cospfAreaNssaTranslatorEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfIfLsaCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfIfLsaCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfIfLsaCount"
                  ]
                },
                "description": "Retrieve cospfIfLsaCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfIfLsaCksumSum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfIfLsaCksumSum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfIfLsaCksumSum"
                  ]
                },
                "description": "Retrieve cospfIfLsaCksumSum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfVirtIfLsaCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfVirtIfLsaCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfVirtIfLsaCount"
                  ]
                },
                "description": "Retrieve cospfVirtIfLsaCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfVirtIfLsaCksumSum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-MIB:CISCO-OSPF-MIB/cospfVirtIfLsaCksumSum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-MIB:CISCO-OSPF-MIB",
                    "cospfVirtIfLsaCksumSum"
                  ]
                },
                "description": "Retrieve cospfVirtIfLsaCksumSum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-OSPF-TRAP-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-OSPF-TRAP-MIB\n\nMIB data from `CISCO-OSPF-TRAP-MIB` module.\n\n**Root containers:** 1 (CISCO-OSPF-TRAP-MIB)\n**Paths:** 129 | **Descendants:** 387\n\nAll endpoints are read-only (GET).\n\nEndpoints: 129 | Operations: 129",
          "item": [
            {
              "name": "GET Get CISCO-OSPF-TRAP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB"
                  ]
                },
                "description": "Retrieve CISCO-OSPF-TRAP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfTrapControl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl"
                  ]
                },
                "description": "Retrieve cospfTrapControl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfSetTrap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/cospfSetTrap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "cospfSetTrap"
                  ]
                },
                "description": "Retrieve cospfSetTrap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfConfigErrorType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/cospfConfigErrorType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "cospfConfigErrorType"
                  ]
                },
                "description": "Retrieve cospfConfigErrorType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfPacketType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/cospfPacketType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "cospfPacketType"
                  ]
                },
                "description": "Retrieve cospfPacketType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfPacketSrc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/cospfPacketSrc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "cospfPacketSrc"
                  ]
                },
                "description": "Retrieve cospfPacketSrc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-1/ospfRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-1",
                    "ospfRouterId"
                  ]
                },
                "description": "Retrieve ospfRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAddressLessIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/ospfAddressLessIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "ospfAddressLessIf"
                  ]
                },
                "description": "Retrieve ospfAddressLessIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/ospfIfIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "ospfIfIpAddress"
                  ]
                },
                "description": "Retrieve ospfIfIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-3/ospfIfIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-3",
                    "ospfIfIpAddress"
                  ]
                },
                "description": "Retrieve ospfIfIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAddressLessIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-3/ospfAddressLessIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-3",
                    "ospfAddressLessIf"
                  ]
                },
                "description": "Retrieve ospfAddressLessIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfPacketSrc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-4/cospfPacketSrc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-4",
                    "cospfPacketSrc"
                  ]
                },
                "description": "Retrieve cospfPacketSrc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfConfigErrorType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-5/cospfConfigErrorType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-5",
                    "cospfConfigErrorType"
                  ]
                },
                "description": "Retrieve cospfConfigErrorType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-6"
                  ]
                },
                "description": "Retrieve object-6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfPacketType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-6/cospfPacketType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-6",
                    "cospfPacketType"
                  ]
                },
                "description": "Retrieve cospfPacketType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfNeighbor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/ospfVirtIfNeighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "ospfVirtIfNeighbor"
                  ]
                },
                "description": "Retrieve ospfVirtIfNeighbor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/ospfVirtIfAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "ospfVirtIfAreaId"
                  ]
                },
                "description": "Retrieve ospfVirtIfAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-3/ospfVirtIfAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-3",
                    "ospfVirtIfAreaId"
                  ]
                },
                "description": "Retrieve ospfVirtIfAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfNeighbor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-3/ospfVirtIfNeighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-3",
                    "ospfVirtIfNeighbor"
                  ]
                },
                "description": "Retrieve ospfVirtIfNeighbor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfConfigErrorType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-4/cospfConfigErrorType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-4",
                    "cospfConfigErrorType"
                  ]
                },
                "description": "Retrieve cospfConfigErrorType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfPacketType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-5/cospfPacketType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-5",
                    "cospfPacketType"
                  ]
                },
                "description": "Retrieve cospfPacketType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-4/ospfNbrIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-4",
                    "ospfNbrIpAddr"
                  ]
                },
                "description": "Retrieve ospfNbrIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrAddressLessIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-4/ospfNbrAddressLessIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-4",
                    "ospfNbrAddressLessIndex"
                  ]
                },
                "description": "Retrieve ospfNbrAddressLessIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrRtrId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-4/ospfNbrRtrId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-4",
                    "ospfNbrRtrId"
                  ]
                },
                "description": "Retrieve ospfNbrRtrId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-6/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-6",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-6/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-6",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-6/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-6",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-6/cospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-6",
                    "cospfLsdbType"
                  ]
                },
                "description": "Retrieve cospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-7",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7"
                  ]
                },
                "description": "Retrieve object-7 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7/ospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7",
                    "ospfLsdbType"
                  ]
                },
                "description": "Retrieve ospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-8",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-8",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-8"
                  ]
                },
                "description": "Retrieve object-8 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-8/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-8",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-8/ospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-8",
                    "ospfLsdbType"
                  ]
                },
                "description": "Retrieve ospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-8/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-8",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-8/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-8",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfPacketType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-4/cospfPacketType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-4",
                    "cospfPacketType"
                  ]
                },
                "description": "Retrieve cospfPacketType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-5/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-5",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-5/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-5",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-5/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-5",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-5/cospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-5",
                    "cospfLsdbType"
                  ]
                },
                "description": "Retrieve cospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-6/ospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-6",
                    "ospfLsdbType"
                  ]
                },
                "description": "Retrieve ospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/ospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "ospfLsdbType"
                  ]
                },
                "description": "Retrieve ospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-3/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-3",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-3/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-3",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-3/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-3",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-3/cospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-3",
                    "cospfLsdbType"
                  ]
                },
                "description": "Retrieve cospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-4/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-4",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-4/ospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-4",
                    "ospfLsdbType"
                  ]
                },
                "description": "Retrieve ospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-4/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-4",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-4/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-4",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-5/ospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-5",
                    "ospfLsdbType"
                  ]
                },
                "description": "Retrieve ospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/ospfAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "ospfAreaId"
                  ]
                },
                "description": "Retrieve ospfAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-3/ospfAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-3",
                    "ospfAreaId"
                  ]
                },
                "description": "Retrieve ospfAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfAreaNssaTranslatorState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-3/cospfAreaNssaTranslatorState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-3",
                    "cospfAreaNssaTranslatorState"
                  ]
                },
                "description": "Retrieve cospfAreaNssaTranslatorState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/cospfShamLinksLocalIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "cospfShamLinksLocalIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/cospfShamLinksLocalIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "cospfShamLinksLocalIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/cospfShamLinkNbrIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "cospfShamLinkNbrIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/cospfShamLinkNbrIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "cospfShamLinkNbrIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrArea",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/cospfShamLinkNbrArea",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "cospfShamLinkNbrArea"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrArea from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-3/cospfShamLinksAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-3",
                    "cospfShamLinksAreaId"
                  ]
                },
                "description": "Retrieve cospfShamLinksAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-3/cospfShamLinksLocalIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-3",
                    "cospfShamLinksLocalIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksRemoteIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-3/cospfShamLinksRemoteIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-3",
                    "cospfShamLinksRemoteIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinksRemoteIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksRemoteIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-3/cospfShamLinksRemoteIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-3",
                    "cospfShamLinksRemoteIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinksRemoteIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-3/cospfShamLinksLocalIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-3",
                    "cospfShamLinksLocalIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-4/cospfShamLinksAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-4",
                    "cospfShamLinksAreaId"
                  ]
                },
                "description": "Retrieve cospfShamLinksAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-4/cospfShamLinksLocalIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-4",
                    "cospfShamLinksLocalIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksRemoteIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-4/cospfShamLinksRemoteIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-4",
                    "cospfShamLinksRemoteIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinksRemoteIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksRemoteIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-4/cospfShamLinksRemoteIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-4",
                    "cospfShamLinksRemoteIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinksRemoteIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-4/cospfShamLinksLocalIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-4",
                    "cospfShamLinksLocalIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-5/cospfShamLinksLocalIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-5",
                    "cospfShamLinksLocalIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-5/cospfShamLinksLocalIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-5",
                    "cospfShamLinksLocalIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrArea",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-5/cospfShamLinkNbrArea",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-5",
                    "cospfShamLinkNbrArea"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrArea from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-5/cospfShamLinkNbrIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-5",
                    "cospfShamLinkNbrIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-5/cospfShamLinkNbrIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-5",
                    "cospfShamLinkNbrIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-6/cospfShamLinksLocalIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-6",
                    "cospfShamLinksLocalIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-6/cospfShamLinksLocalIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-6",
                    "cospfShamLinksLocalIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrArea",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-6/cospfShamLinkNbrArea",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-6",
                    "cospfShamLinkNbrArea"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrArea from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-6/cospfShamLinkNbrIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-6",
                    "cospfShamLinkNbrIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-6/cospfShamLinkNbrIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-6",
                    "cospfShamLinkNbrIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7/cospfShamLinksLocalIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7",
                    "cospfShamLinksLocalIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7/cospfShamLinksLocalIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7",
                    "cospfShamLinksLocalIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrArea",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7/cospfShamLinkNbrArea",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7",
                    "cospfShamLinkNbrArea"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrArea from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7/cospfShamLinkNbrIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7",
                    "cospfShamLinkNbrIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7/cospfShamLinkNbrIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7",
                    "cospfShamLinkNbrIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrRtrId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7/cospfShamLinkNbrRtrId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7",
                    "cospfShamLinkNbrRtrId"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrRtrId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-8/cospfShamLinksLocalIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-8",
                    "cospfShamLinksLocalIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksLocalIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-8/cospfShamLinksLocalIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-8",
                    "cospfShamLinksLocalIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinksLocalIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrArea",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-8/cospfShamLinkNbrArea",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-8",
                    "cospfShamLinkNbrArea"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrArea from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-8/cospfShamLinkNbrIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-8",
                    "cospfShamLinkNbrIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-8/cospfShamLinkNbrIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-8",
                    "cospfShamLinkNbrIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinkNbrState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-8/cospfShamLinkNbrState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-8",
                    "cospfShamLinkNbrState"
                  ]
                },
                "description": "Retrieve cospfShamLinkNbrState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksRemoteIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/cospfShamLinksRemoteIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "cospfShamLinksRemoteIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinksRemoteIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksRemoteIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/cospfShamLinksRemoteIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "cospfShamLinksRemoteIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinksRemoteIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-2/cospfShamLinksAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-2",
                    "cospfShamLinksAreaId"
                  ]
                },
                "description": "Retrieve cospfShamLinksAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-5/cospfShamLinksAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-5",
                    "cospfShamLinksAreaId"
                  ]
                },
                "description": "Retrieve cospfShamLinksAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksRemoteIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-5/cospfShamLinksRemoteIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-5",
                    "cospfShamLinksRemoteIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinksRemoteIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksRemoteIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-5/cospfShamLinksRemoteIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-5",
                    "cospfShamLinksRemoteIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinksRemoteIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-6/cospfShamLinksAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-6",
                    "cospfShamLinksAreaId"
                  ]
                },
                "description": "Retrieve cospfShamLinksAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksRemoteIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-6/cospfShamLinksRemoteIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-6",
                    "cospfShamLinksRemoteIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinksRemoteIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksRemoteIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-6/cospfShamLinksRemoteIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-6",
                    "cospfShamLinksRemoteIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinksRemoteIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfConfigErrorType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7/cospfConfigErrorType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7",
                    "cospfConfigErrorType"
                  ]
                },
                "description": "Retrieve cospfConfigErrorType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfPacketType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-8/cospfPacketType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-8",
                    "cospfPacketType"
                  ]
                },
                "description": "Retrieve cospfPacketType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfPacketType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7/cospfPacketType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7",
                    "cospfPacketType"
                  ]
                },
                "description": "Retrieve cospfPacketType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-8/cospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-8",
                    "cospfLsdbType"
                  ]
                },
                "description": "Retrieve cospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-9",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-9",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-9"
                  ]
                },
                "description": "Retrieve object-9 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-9/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-9",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-9/ospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-9",
                    "ospfLsdbType"
                  ]
                },
                "description": "Retrieve ospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-9/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-9",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-9/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-9",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-10",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-10",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-10"
                  ]
                },
                "description": "Retrieve object-10 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-10/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-10",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-10/ospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-10",
                    "ospfLsdbType"
                  ]
                },
                "description": "Retrieve ospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-10/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-10",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-10/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-10",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7/cospfShamLinksAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7",
                    "cospfShamLinksAreaId"
                  ]
                },
                "description": "Retrieve cospfShamLinksAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksRemoteIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7/cospfShamLinksRemoteIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7",
                    "cospfShamLinksRemoteIpAddrType"
                  ]
                },
                "description": "Retrieve cospfShamLinksRemoteIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksRemoteIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7/cospfShamLinksRemoteIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7",
                    "cospfShamLinksRemoteIpAddr"
                  ]
                },
                "description": "Retrieve cospfShamLinksRemoteIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cospfShamLinksState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB/cospfTrapControl/object-7/cospfShamLinksState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-OSPF-TRAP-MIB:CISCO-OSPF-TRAP-MIB",
                    "cospfTrapControl",
                    "object-7",
                    "cospfShamLinksState"
                  ]
                },
                "description": "Retrieve cospfShamLinksState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-PIM-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-PIM-MIB\n\nMIB data from `CISCO-PIM-MIB` module.\n\n**Root containers:** 1 (CISCO-PIM-MIB)\n**Paths:** 36 | **Descendants:** 54\n\nAll endpoints are read-only (GET).\n\nEndpoints: 36 | Operations: 36",
          "item": [
            {
              "name": "GET Get CISCO-PIM-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB"
                  ]
                },
                "description": "Retrieve CISCO-PIM-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpim",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/cpim",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "cpim"
                  ]
                },
                "description": "Retrieve cpim from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimInvalidRegisterMsgsRcvd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/cpim/cpimInvalidRegisterMsgsRcvd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "cpim",
                    "cpimInvalidRegisterMsgsRcvd"
                  ]
                },
                "description": "Retrieve cpimInvalidRegisterMsgsRcvd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimInvalidJoinPruneMsgsRcvd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/cpim/cpimInvalidJoinPruneMsgsRcvd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "cpim",
                    "cpimInvalidJoinPruneMsgsRcvd"
                  ]
                },
                "description": "Retrieve cpimInvalidJoinPruneMsgsRcvd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimLastErrorType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/cpim/cpimLastErrorType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "cpim",
                    "cpimLastErrorType"
                  ]
                },
                "description": "Retrieve cpimLastErrorType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimLastErrorOriginType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/cpim/cpimLastErrorOriginType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "cpim",
                    "cpimLastErrorOriginType"
                  ]
                },
                "description": "Retrieve cpimLastErrorOriginType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimLastErrorOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/cpim/cpimLastErrorOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "cpim",
                    "cpimLastErrorOrigin"
                  ]
                },
                "description": "Retrieve cpimLastErrorOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimLastErrorGroupType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/cpim/cpimLastErrorGroupType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "cpim",
                    "cpimLastErrorGroupType"
                  ]
                },
                "description": "Retrieve cpimLastErrorGroupType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimLastErrorGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/cpim/cpimLastErrorGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "cpim",
                    "cpimLastErrorGroup"
                  ]
                },
                "description": "Retrieve cpimLastErrorGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimLastErrorRPType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/cpim/cpimLastErrorRPType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "cpim",
                    "cpimLastErrorRPType"
                  ]
                },
                "description": "Retrieve cpimLastErrorRPType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimLastErrorRP",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/cpim/cpimLastErrorRP",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "cpim",
                    "cpimLastErrorRP"
                  ]
                },
                "description": "Retrieve cpimLastErrorRP from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPimMIBNotificationObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects"
                  ]
                },
                "description": "Retrieve ciscoPimMIBNotificationObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimRPMappingChangeType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/cpimRPMappingChangeType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "cpimRPMappingChangeType"
                  ]
                },
                "description": "Retrieve cpimRPMappingChangeType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimInterfaceIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-1/pimInterfaceIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-1",
                    "pimInterfaceIfIndex"
                  ]
                },
                "description": "Retrieve pimInterfaceIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimInterfaceStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-1/pimInterfaceStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-1",
                    "pimInterfaceStatus"
                  ]
                },
                "description": "Retrieve pimInterfaceStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimRPSetComponent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-1/pimRPSetComponent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-1",
                    "pimRPSetComponent"
                  ]
                },
                "description": "Retrieve pimRPSetComponent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimRPSetGroupAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-1/pimRPSetGroupAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-1",
                    "pimRPSetGroupAddress"
                  ]
                },
                "description": "Retrieve pimRPSetGroupAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimRPSetGroupMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-1/pimRPSetGroupMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-1",
                    "pimRPSetGroupMask"
                  ]
                },
                "description": "Retrieve pimRPSetGroupMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimRPSetAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-1/pimRPSetAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-1",
                    "pimRPSetAddress"
                  ]
                },
                "description": "Retrieve pimRPSetAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimRPSetHoldTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-1/pimRPSetHoldTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-1",
                    "pimRPSetHoldTime"
                  ]
                },
                "description": "Retrieve pimRPSetHoldTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimRPMappingChangeType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-2/cpimRPMappingChangeType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-2",
                    "cpimRPMappingChangeType"
                  ]
                },
                "description": "Retrieve cpimRPMappingChangeType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimLastErrorOriginType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-1/cpimLastErrorOriginType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-1",
                    "cpimLastErrorOriginType"
                  ]
                },
                "description": "Retrieve cpimLastErrorOriginType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimLastErrorOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-2/cpimLastErrorOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-2",
                    "cpimLastErrorOrigin"
                  ]
                },
                "description": "Retrieve cpimLastErrorOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimLastErrorGroupType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-3/cpimLastErrorGroupType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-3",
                    "cpimLastErrorGroupType"
                  ]
                },
                "description": "Retrieve cpimLastErrorGroupType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimLastErrorGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-4/cpimLastErrorGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-4",
                    "cpimLastErrorGroup"
                  ]
                },
                "description": "Retrieve cpimLastErrorGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimLastErrorRPType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-5/cpimLastErrorRPType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-5",
                    "cpimLastErrorRPType"
                  ]
                },
                "description": "Retrieve cpimLastErrorRPType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-6"
                  ]
                },
                "description": "Retrieve object-6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimLastErrorRP",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-6/cpimLastErrorRP",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-6",
                    "cpimLastErrorRP"
                  ]
                },
                "description": "Retrieve cpimLastErrorRP from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-7",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-7",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-7"
                  ]
                },
                "description": "Retrieve object-7 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimInvalidRegisterMsgsRcvd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-7/cpimInvalidRegisterMsgsRcvd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-7",
                    "cpimInvalidRegisterMsgsRcvd"
                  ]
                },
                "description": "Retrieve cpimInvalidRegisterMsgsRcvd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpimInvalidJoinPruneMsgsRcvd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PIM-MIB:CISCO-PIM-MIB/ciscoPimMIBNotificationObjects/object-7/cpimInvalidJoinPruneMsgsRcvd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PIM-MIB:CISCO-PIM-MIB",
                    "ciscoPimMIBNotificationObjects",
                    "object-7",
                    "cpimInvalidJoinPruneMsgsRcvd"
                  ]
                },
                "description": "Retrieve cpimInvalidJoinPruneMsgsRcvd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-PING-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-PING-MIB\n\nMIB data from `CISCO-PING-MIB` module.\n\n**Root containers:** 1 (CISCO-PING-MIB)\n**Paths:** 29 | **Descendants:** 28\n\nAll endpoints are read-only (GET).\n\nEndpoints: 29 | Operations: 29",
          "item": [
            {
              "name": "GET Get CISCO-PING-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB"
                  ]
                },
                "description": "Retrieve CISCO-PING-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable"
                  ]
                },
                "description": "Retrieve ciscoPingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry"
                  ]
                },
                "description": "Retrieve ciscoPingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingSerialNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingSerialNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingSerialNumber"
                  ]
                },
                "description": "Retrieve ciscoPingSerialNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingProtocol"
                  ]
                },
                "description": "Retrieve ciscoPingProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingAddress"
                  ]
                },
                "description": "Retrieve ciscoPingAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingPacketCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingPacketCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingPacketCount"
                  ]
                },
                "description": "Retrieve ciscoPingPacketCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingPacketSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingPacketSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingPacketSize"
                  ]
                },
                "description": "Retrieve ciscoPingPacketSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingPacketTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingPacketTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingPacketTimeout"
                  ]
                },
                "description": "Retrieve ciscoPingPacketTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingDelay"
                  ]
                },
                "description": "Retrieve ciscoPingDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingTrapOnCompletion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingTrapOnCompletion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingTrapOnCompletion"
                  ]
                },
                "description": "Retrieve ciscoPingTrapOnCompletion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingSentPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingSentPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingSentPackets"
                  ]
                },
                "description": "Retrieve ciscoPingSentPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingReceivedPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingReceivedPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingReceivedPackets"
                  ]
                },
                "description": "Retrieve ciscoPingReceivedPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingMinRtt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingMinRtt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingMinRtt"
                  ]
                },
                "description": "Retrieve ciscoPingMinRtt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingAvgRtt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingAvgRtt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingAvgRtt"
                  ]
                },
                "description": "Retrieve ciscoPingAvgRtt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingMaxRtt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingMaxRtt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingMaxRtt"
                  ]
                },
                "description": "Retrieve ciscoPingMaxRtt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingCompleted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingCompleted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingCompleted"
                  ]
                },
                "description": "Retrieve ciscoPingCompleted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingEntryOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingEntryOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingEntryOwner"
                  ]
                },
                "description": "Retrieve ciscoPingEntryOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingEntryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingEntryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingEntryStatus"
                  ]
                },
                "description": "Retrieve ciscoPingEntryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/ciscoPingEntry/ciscoPingVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "ciscoPingEntry",
                    "ciscoPingVrfName"
                  ]
                },
                "description": "Retrieve ciscoPingVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingSerialNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/object-1/ciscoPingSerialNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "object-1",
                    "ciscoPingSerialNumber"
                  ]
                },
                "description": "Retrieve ciscoPingSerialNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingCompleted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/object-1/ciscoPingCompleted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "object-1",
                    "ciscoPingCompleted"
                  ]
                },
                "description": "Retrieve ciscoPingCompleted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingSerialNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/object-2/ciscoPingSerialNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "object-2",
                    "ciscoPingSerialNumber"
                  ]
                },
                "description": "Retrieve ciscoPingSerialNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingSentPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/object-2/ciscoPingSentPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "object-2",
                    "ciscoPingSentPackets"
                  ]
                },
                "description": "Retrieve ciscoPingSentPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingSerialNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/object-3/ciscoPingSerialNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "object-3",
                    "ciscoPingSerialNumber"
                  ]
                },
                "description": "Retrieve ciscoPingSerialNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPingReceivedPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PING-MIB:CISCO-PING-MIB/ciscoPingTable/object-3/ciscoPingReceivedPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PING-MIB:CISCO-PING-MIB",
                    "ciscoPingTable",
                    "object-3",
                    "ciscoPingReceivedPackets"
                  ]
                },
                "description": "Retrieve ciscoPingReceivedPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-POWER-ETHERNET-EXT-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-POWER-ETHERNET-EXT-MIB\n\nMIB data from `CISCO-POWER-ETHERNET-EXT-MIB` module.\n\n**Root containers:** 1 (CISCO-POWER-ETHERNET-EXT-MIB)\n**Paths:** 53 | **Descendants:** 68\n\nAll endpoints are read-only (GET).\n\nEndpoints: 53 | Operations: 53",
          "item": [
            {
              "name": "GET Get CISCO-POWER-ETHERNET-EXT-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB"
                  ]
                },
                "description": "Retrieve CISCO-POWER-ETHERNET-EXT-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtMIBObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtMIBObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtMIBObjects"
                  ]
                },
                "description": "Retrieve cpeExtMIBObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtDefaultAllocation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtMIBObjects/cpeExtDefaultAllocation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtMIBObjects",
                    "cpeExtDefaultAllocation"
                  ]
                },
                "description": "Retrieve cpeExtDefaultAllocation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPolicingNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtMIBObjects/cpeExtPolicingNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtMIBObjects",
                    "cpeExtPolicingNotifEnable"
                  ]
                },
                "description": "Retrieve cpeExtPolicingNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPowerPriorityEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtMIBObjects/cpeExtPowerPriorityEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtMIBObjects",
                    "cpeExtPowerPriorityEnable"
                  ]
                },
                "description": "Retrieve cpeExtPowerPriorityEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPdStatistics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPdStatistics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPdStatistics"
                  ]
                },
                "description": "Retrieve cpeExtPdStatistics from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPdStatsTotalDevices",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPdStatistics/cpeExtPdStatsTotalDevices",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPdStatistics",
                    "cpeExtPdStatsTotalDevices"
                  ]
                },
                "description": "Retrieve cpeExtPdStatsTotalDevices from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtMainPseTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtMainPseTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtMainPseTable"
                  ]
                },
                "description": "Retrieve cpeExtMainPseTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtMainPseEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtMainPseTable/cpeExtMainPseEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtMainPseTable",
                    "cpeExtMainPseEntry"
                  ]
                },
                "description": "Retrieve cpeExtMainPseEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethMainPseGroupIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtMainPseTable/cpeExtMainPseEntry/pethMainPseGroupIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtMainPseTable",
                    "cpeExtMainPseEntry",
                    "pethMainPseGroupIndex"
                  ]
                },
                "description": "Retrieve pethMainPseGroupIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtMainPseEntPhyIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtMainPseTable/cpeExtMainPseEntry/cpeExtMainPseEntPhyIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtMainPseTable",
                    "cpeExtMainPseEntry",
                    "cpeExtMainPseEntPhyIndex"
                  ]
                },
                "description": "Retrieve cpeExtMainPseEntPhyIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtMainPseDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtMainPseTable/cpeExtMainPseEntry/cpeExtMainPseDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtMainPseTable",
                    "cpeExtMainPseEntry",
                    "cpeExtMainPseDescr"
                  ]
                },
                "description": "Retrieve cpeExtMainPseDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtMainPsePwrMonitorCapable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtMainPseTable/cpeExtMainPseEntry/cpeExtMainPsePwrMonitorCapable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtMainPseTable",
                    "cpeExtMainPseEntry",
                    "cpeExtMainPsePwrMonitorCapable"
                  ]
                },
                "description": "Retrieve cpeExtMainPsePwrMonitorCapable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtMainPseUsedPower",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtMainPseTable/cpeExtMainPseEntry/cpeExtMainPseUsedPower",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtMainPseTable",
                    "cpeExtMainPseEntry",
                    "cpeExtMainPseUsedPower"
                  ]
                },
                "description": "Retrieve cpeExtMainPseUsedPower from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtMainPseRemainingPower",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtMainPseTable/cpeExtMainPseEntry/cpeExtMainPseRemainingPower",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtMainPseTable",
                    "cpeExtMainPseEntry",
                    "cpeExtMainPseRemainingPower"
                  ]
                },
                "description": "Retrieve cpeExtMainPseRemainingPower from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPdStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPdStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPdStatsTable"
                  ]
                },
                "description": "Retrieve cpeExtPdStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPdStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPdStatsTable/cpeExtPdStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPdStatsTable",
                    "cpeExtPdStatsEntry"
                  ]
                },
                "description": "Retrieve cpeExtPdStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPdStatsClass",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPdStatsTable/cpeExtPdStatsEntry/cpeExtPdStatsClass",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPdStatsTable",
                    "cpeExtPdStatsEntry",
                    "cpeExtPdStatsClass"
                  ]
                },
                "description": "Retrieve cpeExtPdStatsClass from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPdStatsDeviceCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPdStatsTable/cpeExtPdStatsEntry/cpeExtPdStatsDeviceCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPdStatsTable",
                    "cpeExtPdStatsEntry",
                    "cpeExtPdStatsDeviceCount"
                  ]
                },
                "description": "Retrieve cpeExtPdStatsDeviceCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortLldpTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable"
                  ]
                },
                "description": "Retrieve cpeExtPsePortLldpTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortLldpEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry"
                  ]
                },
                "description": "Retrieve cpeExtPsePortLldpEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortGroupIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry/pethPsePortGroupIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry",
                    "pethPsePortGroupIndex"
                  ]
                },
                "description": "Retrieve pethPsePortGroupIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry/pethPsePortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry",
                    "pethPsePortIndex"
                  ]
                },
                "description": "Retrieve pethPsePortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortLldpPwrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry/cpeExtPsePortLldpPwrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry",
                    "cpeExtPsePortLldpPwrType"
                  ]
                },
                "description": "Retrieve cpeExtPsePortLldpPwrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortLldpPdPwrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry/cpeExtPsePortLldpPdPwrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry",
                    "cpeExtPsePortLldpPdPwrType"
                  ]
                },
                "description": "Retrieve cpeExtPsePortLldpPdPwrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortLldpPwrSrc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry/cpeExtPsePortLldpPwrSrc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry",
                    "cpeExtPsePortLldpPwrSrc"
                  ]
                },
                "description": "Retrieve cpeExtPsePortLldpPwrSrc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortLldpPdPwrSrc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry/cpeExtPsePortLldpPdPwrSrc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry",
                    "cpeExtPsePortLldpPdPwrSrc"
                  ]
                },
                "description": "Retrieve cpeExtPsePortLldpPdPwrSrc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortLldpPwrPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry/cpeExtPsePortLldpPwrPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry",
                    "cpeExtPsePortLldpPwrPriority"
                  ]
                },
                "description": "Retrieve cpeExtPsePortLldpPwrPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortLldpPdPwrPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry/cpeExtPsePortLldpPdPwrPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry",
                    "cpeExtPsePortLldpPdPwrPriority"
                  ]
                },
                "description": "Retrieve cpeExtPsePortLldpPdPwrPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortLldpPwrReq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry/cpeExtPsePortLldpPwrReq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry",
                    "cpeExtPsePortLldpPwrReq"
                  ]
                },
                "description": "Retrieve cpeExtPsePortLldpPwrReq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortLldpPdPwrReq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry/cpeExtPsePortLldpPdPwrReq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry",
                    "cpeExtPsePortLldpPdPwrReq"
                  ]
                },
                "description": "Retrieve cpeExtPsePortLldpPdPwrReq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortLldpPwrAlloc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry/cpeExtPsePortLldpPwrAlloc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry",
                    "cpeExtPsePortLldpPwrAlloc"
                  ]
                },
                "description": "Retrieve cpeExtPsePortLldpPwrAlloc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortLldpPdPwrAlloc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry/cpeExtPsePortLldpPdPwrAlloc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry",
                    "cpeExtPsePortLldpPdPwrAlloc"
                  ]
                },
                "description": "Retrieve cpeExtPsePortLldpPdPwrAlloc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortLldpPwrClass",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry/cpeExtPsePortLldpPwrClass",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry",
                    "cpeExtPsePortLldpPwrClass"
                  ]
                },
                "description": "Retrieve cpeExtPsePortLldpPwrClass from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortLldpPdPwrClass",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry/cpeExtPsePortLldpPdPwrClass",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry",
                    "cpeExtPsePortLldpPdPwrClass"
                  ]
                },
                "description": "Retrieve cpeExtPsePortLldpPdPwrClass from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortLldpPdPwrSupport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry/cpeExtPsePortLldpPdPwrSupport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry",
                    "cpeExtPsePortLldpPdPwrSupport"
                  ]
                },
                "description": "Retrieve cpeExtPsePortLldpPdPwrSupport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortLldpPdPwrPairsOrZero",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortLldpTable/cpeExtPsePortLldpEntry/cpeExtPsePortLldpPdPwrPairsOrZero",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortLldpTable",
                    "cpeExtPsePortLldpEntry",
                    "cpeExtPsePortLldpPdPwrPairsOrZero"
                  ]
                },
                "description": "Retrieve cpeExtPsePortLldpPdPwrPairsOrZero from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortEnable"
                  ]
                },
                "description": "Retrieve cpeExtPsePortEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortDiscoverMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortDiscoverMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortDiscoverMode"
                  ]
                },
                "description": "Retrieve cpeExtPsePortDiscoverMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortDeviceDetected",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortDeviceDetected",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortDeviceDetected"
                  ]
                },
                "description": "Retrieve cpeExtPsePortDeviceDetected from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortIeeePd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortIeeePd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortIeeePd"
                  ]
                },
                "description": "Retrieve cpeExtPsePortIeeePd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortAdditionalStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortAdditionalStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortAdditionalStatus"
                  ]
                },
                "description": "Retrieve cpeExtPsePortAdditionalStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortPwrMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortPwrMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortPwrMax"
                  ]
                },
                "description": "Retrieve cpeExtPsePortPwrMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortPwrAllocated",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortPwrAllocated",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortPwrAllocated"
                  ]
                },
                "description": "Retrieve cpeExtPsePortPwrAllocated from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortPwrAvailable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortPwrAvailable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortPwrAvailable"
                  ]
                },
                "description": "Retrieve cpeExtPsePortPwrAvailable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortPwrConsumption",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortPwrConsumption",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortPwrConsumption"
                  ]
                },
                "description": "Retrieve cpeExtPsePortPwrConsumption from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortMaxPwrDrawn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortMaxPwrDrawn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortMaxPwrDrawn"
                  ]
                },
                "description": "Retrieve cpeExtPsePortMaxPwrDrawn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortEntPhyIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortEntPhyIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortEntPhyIndex"
                  ]
                },
                "description": "Retrieve cpeExtPsePortEntPhyIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortPolicingCapable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortPolicingCapable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortPolicingCapable"
                  ]
                },
                "description": "Retrieve cpeExtPsePortPolicingCapable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortPolicingEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortPolicingEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortPolicingEnable"
                  ]
                },
                "description": "Retrieve cpeExtPsePortPolicingEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortPolicingAction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortPolicingAction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortPolicingAction"
                  ]
                },
                "description": "Retrieve cpeExtPsePortPolicingAction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortPwrManAlloc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortPwrManAlloc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortPwrManAlloc"
                  ]
                },
                "description": "Retrieve cpeExtPsePortPwrManAlloc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpeExtPsePortCapabilities",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB/cpeExtPsePortCapabilities",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-POWER-ETHERNET-EXT-MIB:CISCO-POWER-ETHERNET-EXT-MIB",
                    "cpeExtPsePortCapabilities"
                  ]
                },
                "description": "Retrieve cpeExtPsePortCapabilities from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-PROCESS-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-PROCESS-MIB\n\nMIB data from `CISCO-PROCESS-MIB` module.\n\n**Root containers:** 1 (CISCO-PROCESS-MIB)\n**Paths:** 158 | **Descendants:** 166\n\nAll endpoints are read-only (GET).\n\nEndpoints: 158 | Operations: 158",
          "item": [
            {
              "name": "GET Get CISCO-PROCESS-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB"
                  ]
                },
                "description": "Retrieve CISCO-PROCESS-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUHistory",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUHistory",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUHistory"
                  ]
                },
                "description": "Retrieve cpmCPUHistory from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUHistoryThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUHistory/cpmCPUHistoryThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUHistory",
                    "cpmCPUHistoryThreshold"
                  ]
                },
                "description": "Retrieve cpmCPUHistoryThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUHistorySize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUHistory/cpmCPUHistorySize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUHistory",
                    "cpmCPUHistorySize"
                  ]
                },
                "description": "Retrieve cpmCPUHistorySize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable"
                  ]
                },
                "description": "Retrieve cpmCPUTotalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry"
                  ]
                },
                "description": "Retrieve cpmCPUTotalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUTotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUTotalIndex"
                  ]
                },
                "description": "Retrieve cpmCPUTotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUTotalPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUTotalPhysicalIndex"
                  ]
                },
                "description": "Retrieve cpmCPUTotalPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotal1minRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUTotal1minRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUTotal1minRev"
                  ]
                },
                "description": "Retrieve cpmCPUTotal1minRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotal5minRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUTotal5minRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUTotal5minRev"
                  ]
                },
                "description": "Retrieve cpmCPUTotal5minRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUMonInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUMonInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUMonInterval"
                  ]
                },
                "description": "Retrieve cpmCPUMonInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalMonIntervalValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUTotalMonIntervalValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUTotalMonIntervalValue"
                  ]
                },
                "description": "Retrieve cpmCPUTotalMonIntervalValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUInterruptMonIntervalValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUInterruptMonIntervalValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUInterruptMonIntervalValue"
                  ]
                },
                "description": "Retrieve cpmCPUInterruptMonIntervalValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUMemoryUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUMemoryUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUMemoryUsed"
                  ]
                },
                "description": "Retrieve cpmCPUMemoryUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUMemoryFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUMemoryFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUMemoryFree"
                  ]
                },
                "description": "Retrieve cpmCPUMemoryFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUMemoryKernelReserved",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUMemoryKernelReserved",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUMemoryKernelReserved"
                  ]
                },
                "description": "Retrieve cpmCPUMemoryKernelReserved from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUMemoryLowest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUMemoryLowest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUMemoryLowest"
                  ]
                },
                "description": "Retrieve cpmCPUMemoryLowest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUMemoryUsedOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUMemoryUsedOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUMemoryUsedOvrflw"
                  ]
                },
                "description": "Retrieve cpmCPUMemoryUsedOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUMemoryHCUsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUMemoryHCUsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUMemoryHCUsed"
                  ]
                },
                "description": "Retrieve cpmCPUMemoryHCUsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUMemoryFreeOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUMemoryFreeOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUMemoryFreeOvrflw"
                  ]
                },
                "description": "Retrieve cpmCPUMemoryFreeOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUMemoryHCFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUMemoryHCFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUMemoryHCFree"
                  ]
                },
                "description": "Retrieve cpmCPUMemoryHCFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUMemoryKernelReservedOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUMemoryKernelReservedOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUMemoryKernelReservedOvrflw"
                  ]
                },
                "description": "Retrieve cpmCPUMemoryKernelReservedOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUMemoryHCKernelReserved",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUMemoryHCKernelReserved",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUMemoryHCKernelReserved"
                  ]
                },
                "description": "Retrieve cpmCPUMemoryHCKernelReserved from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUMemoryLowestOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUMemoryLowestOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUMemoryLowestOvrflw"
                  ]
                },
                "description": "Retrieve cpmCPUMemoryLowestOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUMemoryHCLowest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUMemoryHCLowest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUMemoryHCLowest"
                  ]
                },
                "description": "Retrieve cpmCPUMemoryHCLowest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPULoadAvg1min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPULoadAvg1min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPULoadAvg1min"
                  ]
                },
                "description": "Retrieve cpmCPULoadAvg1min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPULoadAvg5min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPULoadAvg5min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPULoadAvg5min"
                  ]
                },
                "description": "Retrieve cpmCPULoadAvg5min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPULoadAvg15min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPULoadAvg15min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPULoadAvg15min"
                  ]
                },
                "description": "Retrieve cpmCPULoadAvg15min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUMemoryCommitted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUMemoryCommitted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUMemoryCommitted"
                  ]
                },
                "description": "Retrieve cpmCPUMemoryCommitted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUMemoryCommittedOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUMemoryCommittedOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUMemoryCommittedOvrflw"
                  ]
                },
                "description": "Retrieve cpmCPUMemoryCommittedOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUMemoryHCCommitted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUTotalTable/cpmCPUTotalEntry/cpmCPUMemoryHCCommitted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUTotalTable",
                    "cpmCPUTotalEntry",
                    "cpmCPUMemoryHCCommitted"
                  ]
                },
                "description": "Retrieve cpmCPUMemoryHCCommitted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCoreTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCoreTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCoreTable"
                  ]
                },
                "description": "Retrieve cpmCoreTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCoreEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCoreTable/cpmCoreEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCoreTable",
                    "cpmCoreEntry"
                  ]
                },
                "description": "Retrieve cpmCoreEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCoreTable/cpmCoreEntry/cpmCPUTotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCoreTable",
                    "cpmCoreEntry",
                    "cpmCPUTotalIndex"
                  ]
                },
                "description": "Retrieve cpmCPUTotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCoreIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCoreTable/cpmCoreEntry/cpmCoreIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCoreTable",
                    "cpmCoreEntry",
                    "cpmCoreIndex"
                  ]
                },
                "description": "Retrieve cpmCoreIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCorePhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCoreTable/cpmCoreEntry/cpmCorePhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCoreTable",
                    "cpmCoreEntry",
                    "cpmCorePhysicalIndex"
                  ]
                },
                "description": "Retrieve cpmCorePhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCore5sec",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCoreTable/cpmCoreEntry/cpmCore5sec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCoreTable",
                    "cpmCoreEntry",
                    "cpmCore5sec"
                  ]
                },
                "description": "Retrieve cpmCore5sec from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCore1min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCoreTable/cpmCoreEntry/cpmCore1min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCoreTable",
                    "cpmCoreEntry",
                    "cpmCore1min"
                  ]
                },
                "description": "Retrieve cpmCore1min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCore5min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCoreTable/cpmCoreEntry/cpmCore5min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCoreTable",
                    "cpmCoreEntry",
                    "cpmCore5min"
                  ]
                },
                "description": "Retrieve cpmCore5min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCoreLoadAvg1min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCoreTable/cpmCoreEntry/cpmCoreLoadAvg1min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCoreTable",
                    "cpmCoreEntry",
                    "cpmCoreLoadAvg1min"
                  ]
                },
                "description": "Retrieve cpmCoreLoadAvg1min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCoreLoadAvg5min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCoreTable/cpmCoreEntry/cpmCoreLoadAvg5min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCoreTable",
                    "cpmCoreEntry",
                    "cpmCoreLoadAvg5min"
                  ]
                },
                "description": "Retrieve cpmCoreLoadAvg5min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCoreLoadAvg15min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCoreTable/cpmCoreEntry/cpmCoreLoadAvg15min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCoreTable",
                    "cpmCoreEntry",
                    "cpmCoreLoadAvg15min"
                  ]
                },
                "description": "Retrieve cpmCoreLoadAvg15min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessTable"
                  ]
                },
                "description": "Retrieve cpmProcessTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessTable/cpmProcessEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessTable",
                    "cpmProcessEntry"
                  ]
                },
                "description": "Retrieve cpmProcessEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessTable/cpmProcessEntry/cpmCPUTotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessTable",
                    "cpmProcessEntry",
                    "cpmCPUTotalIndex"
                  ]
                },
                "description": "Retrieve cpmCPUTotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessPID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessTable/cpmProcessEntry/cpmProcessPID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessTable",
                    "cpmProcessEntry",
                    "cpmProcessPID"
                  ]
                },
                "description": "Retrieve cpmProcessPID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessTable/cpmProcessEntry/cpmProcessName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessTable",
                    "cpmProcessEntry",
                    "cpmProcessName"
                  ]
                },
                "description": "Retrieve cpmProcessName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessTimeCreated",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessTable/cpmProcessEntry/cpmProcessTimeCreated",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessTable",
                    "cpmProcessEntry",
                    "cpmProcessTimeCreated"
                  ]
                },
                "description": "Retrieve cpmProcessTimeCreated from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessAverageUSecs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessTable/cpmProcessEntry/cpmProcessAverageUSecs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessTable",
                    "cpmProcessEntry",
                    "cpmProcessAverageUSecs"
                  ]
                },
                "description": "Retrieve cpmProcessAverageUSecs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessExtRevTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable"
                  ]
                },
                "description": "Retrieve cpmProcessExtRevTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessExtRevEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry"
                  ]
                },
                "description": "Retrieve cpmProcessExtRevEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmCPUTotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmCPUTotalIndex"
                  ]
                },
                "description": "Retrieve cpmCPUTotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessPID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessPID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessPID"
                  ]
                },
                "description": "Retrieve cpmProcessPID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcExtMemAllocatedRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcExtMemAllocatedRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcExtMemAllocatedRev"
                  ]
                },
                "description": "Retrieve cpmProcExtMemAllocatedRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcExtMemFreedRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcExtMemFreedRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcExtMemFreedRev"
                  ]
                },
                "description": "Retrieve cpmProcExtMemFreedRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcExtInvokedRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcExtInvokedRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcExtInvokedRev"
                  ]
                },
                "description": "Retrieve cpmProcExtInvokedRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcExtRuntimeRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcExtRuntimeRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcExtRuntimeRev"
                  ]
                },
                "description": "Retrieve cpmProcExtRuntimeRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcExtUtil5SecRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcExtUtil5SecRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcExtUtil5SecRev"
                  ]
                },
                "description": "Retrieve cpmProcExtUtil5SecRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcExtUtil1MinRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcExtUtil1MinRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcExtUtil1MinRev"
                  ]
                },
                "description": "Retrieve cpmProcExtUtil1MinRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcExtUtil5MinRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcExtUtil5MinRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcExtUtil5MinRev"
                  ]
                },
                "description": "Retrieve cpmProcExtUtil5MinRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcExtPriorityRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcExtPriorityRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcExtPriorityRev"
                  ]
                },
                "description": "Retrieve cpmProcExtPriorityRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessType"
                  ]
                },
                "description": "Retrieve cpmProcessType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessRespawn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessRespawn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessRespawn"
                  ]
                },
                "description": "Retrieve cpmProcessRespawn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessRespawnCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessRespawnCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessRespawnCount"
                  ]
                },
                "description": "Retrieve cpmProcessRespawnCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessRespawnAfterLastPatch",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessRespawnAfterLastPatch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessRespawnAfterLastPatch"
                  ]
                },
                "description": "Retrieve cpmProcessRespawnAfterLastPatch from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessMemoryCore",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessMemoryCore",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessMemoryCore"
                  ]
                },
                "description": "Retrieve cpmProcessMemoryCore from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessLastRestartUser",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessLastRestartUser",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessLastRestartUser"
                  ]
                },
                "description": "Retrieve cpmProcessLastRestartUser from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessTextSegmentSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessTextSegmentSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessTextSegmentSize"
                  ]
                },
                "description": "Retrieve cpmProcessTextSegmentSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessDataSegmentSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessDataSegmentSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessDataSegmentSize"
                  ]
                },
                "description": "Retrieve cpmProcessDataSegmentSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessStackSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessStackSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessStackSize"
                  ]
                },
                "description": "Retrieve cpmProcessStackSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessDynamicMemorySize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessDynamicMemorySize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessDynamicMemorySize"
                  ]
                },
                "description": "Retrieve cpmProcessDynamicMemorySize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcExtMemAllocatedRevOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcExtMemAllocatedRevOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcExtMemAllocatedRevOvrflw"
                  ]
                },
                "description": "Retrieve cpmProcExtMemAllocatedRevOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcExtHCMemAllocatedRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcExtHCMemAllocatedRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcExtHCMemAllocatedRev"
                  ]
                },
                "description": "Retrieve cpmProcExtHCMemAllocatedRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcExtMemFreedRevOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcExtMemFreedRevOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcExtMemFreedRevOvrflw"
                  ]
                },
                "description": "Retrieve cpmProcExtMemFreedRevOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcExtHCMemFreedRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcExtHCMemFreedRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcExtHCMemFreedRev"
                  ]
                },
                "description": "Retrieve cpmProcExtHCMemFreedRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessTextSegmentSizeOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessTextSegmentSizeOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessTextSegmentSizeOvrflw"
                  ]
                },
                "description": "Retrieve cpmProcessTextSegmentSizeOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessHCTextSegmentSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessHCTextSegmentSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessHCTextSegmentSize"
                  ]
                },
                "description": "Retrieve cpmProcessHCTextSegmentSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessDataSegmentSizeOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessDataSegmentSizeOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessDataSegmentSizeOvrflw"
                  ]
                },
                "description": "Retrieve cpmProcessDataSegmentSizeOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessHCDataSegmentSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessHCDataSegmentSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessHCDataSegmentSize"
                  ]
                },
                "description": "Retrieve cpmProcessHCDataSegmentSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessStackSizeOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessStackSizeOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessStackSizeOvrflw"
                  ]
                },
                "description": "Retrieve cpmProcessStackSizeOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessHCStackSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessHCStackSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessHCStackSize"
                  ]
                },
                "description": "Retrieve cpmProcessHCStackSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessDynamicMemorySizeOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessDynamicMemorySizeOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessDynamicMemorySizeOvrflw"
                  ]
                },
                "description": "Retrieve cpmProcessDynamicMemorySizeOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessHCDynamicMemorySize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmProcessExtRevTable/cpmProcessExtRevEntry/cpmProcessHCDynamicMemorySize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmProcessExtRevTable",
                    "cpmProcessExtRevEntry",
                    "cpmProcessHCDynamicMemorySize"
                  ]
                },
                "description": "Retrieve cpmProcessHCDynamicMemorySize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUThresholdTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUThresholdTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUThresholdTable"
                  ]
                },
                "description": "Retrieve cpmCPUThresholdTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUThresholdEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUThresholdTable/cpmCPUThresholdEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUThresholdTable",
                    "cpmCPUThresholdEntry"
                  ]
                },
                "description": "Retrieve cpmCPUThresholdEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUThresholdTable/cpmCPUThresholdEntry/cpmCPUTotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUThresholdTable",
                    "cpmCPUThresholdEntry",
                    "cpmCPUTotalIndex"
                  ]
                },
                "description": "Retrieve cpmCPUTotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUThresholdClass",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUThresholdTable/cpmCPUThresholdEntry/cpmCPUThresholdClass",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUThresholdTable",
                    "cpmCPUThresholdEntry",
                    "cpmCPUThresholdClass"
                  ]
                },
                "description": "Retrieve cpmCPUThresholdClass from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPURisingThresholdValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUThresholdTable/cpmCPUThresholdEntry/cpmCPURisingThresholdValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUThresholdTable",
                    "cpmCPUThresholdEntry",
                    "cpmCPURisingThresholdValue"
                  ]
                },
                "description": "Retrieve cpmCPURisingThresholdValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPURisingThresholdPeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUThresholdTable/cpmCPUThresholdEntry/cpmCPURisingThresholdPeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUThresholdTable",
                    "cpmCPUThresholdEntry",
                    "cpmCPURisingThresholdPeriod"
                  ]
                },
                "description": "Retrieve cpmCPURisingThresholdPeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUFallingThresholdValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUThresholdTable/cpmCPUThresholdEntry/cpmCPUFallingThresholdValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUThresholdTable",
                    "cpmCPUThresholdEntry",
                    "cpmCPUFallingThresholdValue"
                  ]
                },
                "description": "Retrieve cpmCPUFallingThresholdValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUFallingThresholdPeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUThresholdTable/cpmCPUThresholdEntry/cpmCPUFallingThresholdPeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUThresholdTable",
                    "cpmCPUThresholdEntry",
                    "cpmCPUFallingThresholdPeriod"
                  ]
                },
                "description": "Retrieve cpmCPUFallingThresholdPeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUThresholdEntryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUThresholdTable/cpmCPUThresholdEntry/cpmCPUThresholdEntryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUThresholdTable",
                    "cpmCPUThresholdEntry",
                    "cpmCPUThresholdEntryStatus"
                  ]
                },
                "description": "Retrieve cpmCPUThresholdEntryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUHistoryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUHistoryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUHistoryTable"
                  ]
                },
                "description": "Retrieve cpmCPUHistoryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUHistoryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUHistoryTable/cpmCPUHistoryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUHistoryTable",
                    "cpmCPUHistoryEntry"
                  ]
                },
                "description": "Retrieve cpmCPUHistoryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUHistoryTable/cpmCPUHistoryEntry/cpmCPUTotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUHistoryTable",
                    "cpmCPUHistoryEntry",
                    "cpmCPUTotalIndex"
                  ]
                },
                "description": "Retrieve cpmCPUTotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUHistoryReportId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUHistoryTable/cpmCPUHistoryEntry/cpmCPUHistoryReportId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUHistoryTable",
                    "cpmCPUHistoryEntry",
                    "cpmCPUHistoryReportId"
                  ]
                },
                "description": "Retrieve cpmCPUHistoryReportId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUHistoryReportSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUHistoryTable/cpmCPUHistoryEntry/cpmCPUHistoryReportSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUHistoryTable",
                    "cpmCPUHistoryEntry",
                    "cpmCPUHistoryReportSize"
                  ]
                },
                "description": "Retrieve cpmCPUHistoryReportSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUHistoryTotalUtil",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUHistoryTable/cpmCPUHistoryEntry/cpmCPUHistoryTotalUtil",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUHistoryTable",
                    "cpmCPUHistoryEntry",
                    "cpmCPUHistoryTotalUtil"
                  ]
                },
                "description": "Retrieve cpmCPUHistoryTotalUtil from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUHistoryInterruptUtil",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUHistoryTable/cpmCPUHistoryEntry/cpmCPUHistoryInterruptUtil",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUHistoryTable",
                    "cpmCPUHistoryEntry",
                    "cpmCPUHistoryInterruptUtil"
                  ]
                },
                "description": "Retrieve cpmCPUHistoryInterruptUtil from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUHistoryCreatedTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUHistoryTable/cpmCPUHistoryEntry/cpmCPUHistoryCreatedTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUHistoryTable",
                    "cpmCPUHistoryEntry",
                    "cpmCPUHistoryCreatedTime"
                  ]
                },
                "description": "Retrieve cpmCPUHistoryCreatedTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUProcessHistoryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUProcessHistoryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUProcessHistoryTable"
                  ]
                },
                "description": "Retrieve cpmCPUProcessHistoryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUProcessHistoryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUProcessHistoryTable/cpmCPUProcessHistoryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUProcessHistoryTable",
                    "cpmCPUProcessHistoryEntry"
                  ]
                },
                "description": "Retrieve cpmCPUProcessHistoryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUProcessHistoryTable/cpmCPUProcessHistoryEntry/cpmCPUTotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUProcessHistoryTable",
                    "cpmCPUProcessHistoryEntry",
                    "cpmCPUTotalIndex"
                  ]
                },
                "description": "Retrieve cpmCPUTotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUHistoryReportId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUProcessHistoryTable/cpmCPUProcessHistoryEntry/cpmCPUHistoryReportId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUProcessHistoryTable",
                    "cpmCPUProcessHistoryEntry",
                    "cpmCPUHistoryReportId"
                  ]
                },
                "description": "Retrieve cpmCPUHistoryReportId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUProcessHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUProcessHistoryTable/cpmCPUProcessHistoryEntry/cpmCPUProcessHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUProcessHistoryTable",
                    "cpmCPUProcessHistoryEntry",
                    "cpmCPUProcessHistoryIndex"
                  ]
                },
                "description": "Retrieve cpmCPUProcessHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUHistoryProcId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUProcessHistoryTable/cpmCPUProcessHistoryEntry/cpmCPUHistoryProcId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUProcessHistoryTable",
                    "cpmCPUProcessHistoryEntry",
                    "cpmCPUHistoryProcId"
                  ]
                },
                "description": "Retrieve cpmCPUHistoryProcId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUHistoryProcName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUProcessHistoryTable/cpmCPUProcessHistoryEntry/cpmCPUHistoryProcName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUProcessHistoryTable",
                    "cpmCPUProcessHistoryEntry",
                    "cpmCPUHistoryProcName"
                  ]
                },
                "description": "Retrieve cpmCPUHistoryProcName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUHistoryProcCreated",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUProcessHistoryTable/cpmCPUProcessHistoryEntry/cpmCPUHistoryProcCreated",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUProcessHistoryTable",
                    "cpmCPUProcessHistoryEntry",
                    "cpmCPUHistoryProcCreated"
                  ]
                },
                "description": "Retrieve cpmCPUHistoryProcCreated from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUHistoryProcUtil",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmCPUProcessHistoryTable/cpmCPUProcessHistoryEntry/cpmCPUHistoryProcUtil",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmCPUProcessHistoryTable",
                    "cpmCPUProcessHistoryEntry",
                    "cpmCPUHistoryProcUtil"
                  ]
                },
                "description": "Retrieve cpmCPUHistoryProcUtil from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmThreadTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmThreadTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmThreadTable"
                  ]
                },
                "description": "Retrieve cpmThreadTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmThreadEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmThreadTable/cpmThreadEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmThreadTable",
                    "cpmThreadEntry"
                  ]
                },
                "description": "Retrieve cpmThreadEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmThreadTable/cpmThreadEntry/cpmCPUTotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmThreadTable",
                    "cpmThreadEntry",
                    "cpmCPUTotalIndex"
                  ]
                },
                "description": "Retrieve cpmCPUTotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessPID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmThreadTable/cpmThreadEntry/cpmProcessPID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmThreadTable",
                    "cpmThreadEntry",
                    "cpmProcessPID"
                  ]
                },
                "description": "Retrieve cpmProcessPID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmThreadID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmThreadTable/cpmThreadEntry/cpmThreadID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmThreadTable",
                    "cpmThreadEntry",
                    "cpmThreadID"
                  ]
                },
                "description": "Retrieve cpmThreadID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmThreadName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmThreadTable/cpmThreadEntry/cpmThreadName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmThreadTable",
                    "cpmThreadEntry",
                    "cpmThreadName"
                  ]
                },
                "description": "Retrieve cpmThreadName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmThreadPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmThreadTable/cpmThreadEntry/cpmThreadPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmThreadTable",
                    "cpmThreadEntry",
                    "cpmThreadPriority"
                  ]
                },
                "description": "Retrieve cpmThreadPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmThreadState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmThreadTable/cpmThreadEntry/cpmThreadState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmThreadTable",
                    "cpmThreadEntry",
                    "cpmThreadState"
                  ]
                },
                "description": "Retrieve cpmThreadState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmThreadBlockingProcess",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmThreadTable/cpmThreadEntry/cpmThreadBlockingProcess",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmThreadTable",
                    "cpmThreadEntry",
                    "cpmThreadBlockingProcess"
                  ]
                },
                "description": "Retrieve cpmThreadBlockingProcess from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmThreadCpuUtilization",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmThreadTable/cpmThreadEntry/cpmThreadCpuUtilization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmThreadTable",
                    "cpmThreadEntry",
                    "cpmThreadCpuUtilization"
                  ]
                },
                "description": "Retrieve cpmThreadCpuUtilization from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmThreadStackSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmThreadTable/cpmThreadEntry/cpmThreadStackSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmThreadTable",
                    "cpmThreadEntry",
                    "cpmThreadStackSize"
                  ]
                },
                "description": "Retrieve cpmThreadStackSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmThreadStackSizeOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmThreadTable/cpmThreadEntry/cpmThreadStackSizeOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmThreadTable",
                    "cpmThreadEntry",
                    "cpmThreadStackSizeOvrflw"
                  ]
                },
                "description": "Retrieve cpmThreadStackSizeOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmThreadHCStackSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmThreadTable/cpmThreadEntry/cpmThreadHCStackSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmThreadTable",
                    "cpmThreadEntry",
                    "cpmThreadHCStackSize"
                  ]
                },
                "description": "Retrieve cpmThreadHCStackSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmVirtualProcessTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable"
                  ]
                },
                "description": "Retrieve cpmVirtualProcessTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmVirtualProcessEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/cpmVirtualProcessEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "cpmVirtualProcessEntry"
                  ]
                },
                "description": "Retrieve cpmVirtualProcessEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/cpmVirtualProcessEntry/cpmCPUTotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "cpmVirtualProcessEntry",
                    "cpmCPUTotalIndex"
                  ]
                },
                "description": "Retrieve cpmCPUTotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessPID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/cpmVirtualProcessEntry/cpmProcessPID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "cpmVirtualProcessEntry",
                    "cpmProcessPID"
                  ]
                },
                "description": "Retrieve cpmProcessPID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmVirtualProcessID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/cpmVirtualProcessEntry/cpmVirtualProcessID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "cpmVirtualProcessEntry",
                    "cpmVirtualProcessID"
                  ]
                },
                "description": "Retrieve cpmVirtualProcessID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmVirtualProcessName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/cpmVirtualProcessEntry/cpmVirtualProcessName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "cpmVirtualProcessEntry",
                    "cpmVirtualProcessName"
                  ]
                },
                "description": "Retrieve cpmVirtualProcessName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmVirtualProcessUtil5Sec",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/cpmVirtualProcessEntry/cpmVirtualProcessUtil5Sec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "cpmVirtualProcessEntry",
                    "cpmVirtualProcessUtil5Sec"
                  ]
                },
                "description": "Retrieve cpmVirtualProcessUtil5Sec from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmVirtualProcessUtil1Min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/cpmVirtualProcessEntry/cpmVirtualProcessUtil1Min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "cpmVirtualProcessEntry",
                    "cpmVirtualProcessUtil1Min"
                  ]
                },
                "description": "Retrieve cpmVirtualProcessUtil1Min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmVirtualProcessUtil5Min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/cpmVirtualProcessEntry/cpmVirtualProcessUtil5Min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "cpmVirtualProcessEntry",
                    "cpmVirtualProcessUtil5Min"
                  ]
                },
                "description": "Retrieve cpmVirtualProcessUtil5Min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmVirtualProcessMemAllocated",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/cpmVirtualProcessEntry/cpmVirtualProcessMemAllocated",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "cpmVirtualProcessEntry",
                    "cpmVirtualProcessMemAllocated"
                  ]
                },
                "description": "Retrieve cpmVirtualProcessMemAllocated from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmVirtualProcessMemFreed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/cpmVirtualProcessEntry/cpmVirtualProcessMemFreed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "cpmVirtualProcessEntry",
                    "cpmVirtualProcessMemFreed"
                  ]
                },
                "description": "Retrieve cpmVirtualProcessMemFreed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmVirtualProcessInvokeCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/cpmVirtualProcessEntry/cpmVirtualProcessInvokeCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "cpmVirtualProcessEntry",
                    "cpmVirtualProcessInvokeCount"
                  ]
                },
                "description": "Retrieve cpmVirtualProcessInvokeCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmVirtualProcessRuntime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/cpmVirtualProcessEntry/cpmVirtualProcessRuntime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "cpmVirtualProcessEntry",
                    "cpmVirtualProcessRuntime"
                  ]
                },
                "description": "Retrieve cpmVirtualProcessRuntime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmVirtualProcessMemAllocatedOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/cpmVirtualProcessEntry/cpmVirtualProcessMemAllocatedOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "cpmVirtualProcessEntry",
                    "cpmVirtualProcessMemAllocatedOvrflw"
                  ]
                },
                "description": "Retrieve cpmVirtualProcessMemAllocatedOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmVirtualProcessHCMemAllocated",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/cpmVirtualProcessEntry/cpmVirtualProcessHCMemAllocated",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "cpmVirtualProcessEntry",
                    "cpmVirtualProcessHCMemAllocated"
                  ]
                },
                "description": "Retrieve cpmVirtualProcessHCMemAllocated from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmVirtualProcessMemFreedOvrflw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/cpmVirtualProcessEntry/cpmVirtualProcessMemFreedOvrflw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "cpmVirtualProcessEntry",
                    "cpmVirtualProcessMemFreedOvrflw"
                  ]
                },
                "description": "Retrieve cpmVirtualProcessMemFreedOvrflw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmVirtualProcessHCMemFreed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/cpmVirtualProcessEntry/cpmVirtualProcessHCMemFreed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "cpmVirtualProcessEntry",
                    "cpmVirtualProcessHCMemFreed"
                  ]
                },
                "description": "Retrieve cpmVirtualProcessHCMemFreed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-1/cpmCPUTotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-1",
                    "cpmCPUTotalIndex"
                  ]
                },
                "description": "Retrieve cpmCPUTotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUThresholdClass",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-1/cpmCPUThresholdClass",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-1",
                    "cpmCPUThresholdClass"
                  ]
                },
                "description": "Retrieve cpmCPUThresholdClass from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPURisingThresholdValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-1/cpmCPURisingThresholdValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-1",
                    "cpmCPURisingThresholdValue"
                  ]
                },
                "description": "Retrieve cpmCPURisingThresholdValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-2/cpmCPUTotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-2",
                    "cpmCPUTotalIndex"
                  ]
                },
                "description": "Retrieve cpmCPUTotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalMonIntervalValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-2/cpmCPUTotalMonIntervalValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-2",
                    "cpmCPUTotalMonIntervalValue"
                  ]
                },
                "description": "Retrieve cpmCPUTotalMonIntervalValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-3/cpmCPUTotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-3",
                    "cpmCPUTotalIndex"
                  ]
                },
                "description": "Retrieve cpmCPUTotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUInterruptMonIntervalValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-3/cpmCPUInterruptMonIntervalValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-3",
                    "cpmCPUInterruptMonIntervalValue"
                  ]
                },
                "description": "Retrieve cpmCPUInterruptMonIntervalValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-4/cpmCPUTotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-4",
                    "cpmCPUTotalIndex"
                  ]
                },
                "description": "Retrieve cpmCPUTotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessPID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-4/cpmProcessPID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-4",
                    "cpmProcessPID"
                  ]
                },
                "description": "Retrieve cpmProcessPID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcExtUtil5SecRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-4/cpmProcExtUtil5SecRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-4",
                    "cpmProcExtUtil5SecRev"
                  ]
                },
                "description": "Retrieve cpmProcExtUtil5SecRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUTotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-5/cpmCPUTotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-5",
                    "cpmCPUTotalIndex"
                  ]
                },
                "description": "Retrieve cpmCPUTotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessPID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-5/cpmProcessPID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-5",
                    "cpmProcessPID"
                  ]
                },
                "description": "Retrieve cpmProcessPID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmProcessTimeCreated",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-5/cpmProcessTimeCreated",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-5",
                    "cpmProcessTimeCreated"
                  ]
                },
                "description": "Retrieve cpmProcessTimeCreated from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cpmCPUFallingThresholdValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PROCESS-MIB:CISCO-PROCESS-MIB/cpmVirtualProcessTable/object-1/cpmCPUFallingThresholdValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PROCESS-MIB:CISCO-PROCESS-MIB",
                    "cpmVirtualProcessTable",
                    "object-1",
                    "cpmCPUFallingThresholdValue"
                  ]
                },
                "description": "Retrieve cpmCPUFallingThresholdValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-PTP-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-PTP-MIB\n\nMIB data from `CISCO-PTP-MIB` module.\n\n**Root containers:** 1 (CISCO-PTP-MIB)\n**Paths:** 160 | **Descendants:** 159\n\nAll endpoints are read-only (GET).\n\nEndpoints: 160 | Operations: 160",
          "item": [
            {
              "name": "GET Get CISCO-PTP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB"
                  ]
                },
                "description": "Retrieve CISCO-PTP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoPtpMIBSystemInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/ciscoPtpMIBSystemInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "ciscoPtpMIBSystemInfo"
                  ]
                },
                "description": "Retrieve ciscoPtpMIBSystemInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpSystemProfile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/ciscoPtpMIBSystemInfo/cPtpSystemProfile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "ciscoPtpMIBSystemInfo",
                    "cPtpSystemProfile"
                  ]
                },
                "description": "Retrieve cPtpSystemProfile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpSystemTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpSystemTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpSystemTable"
                  ]
                },
                "description": "Retrieve cPtpSystemTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpSystemEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpSystemTable/cPtpSystemEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpSystemTable",
                    "cPtpSystemEntry"
                  ]
                },
                "description": "Retrieve cPtpSystemEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpSystemTable/cPtpSystemEntry/cPtpDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpSystemTable",
                    "cPtpSystemEntry",
                    "cPtpDomainIndex"
                  ]
                },
                "description": "Retrieve cPtpDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpSystemTable/cPtpSystemEntry/cPtpInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpSystemTable",
                    "cPtpSystemEntry",
                    "cPtpInstanceIndex"
                  ]
                },
                "description": "Retrieve cPtpInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpDomainClockPortsTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpSystemTable/cPtpSystemEntry/cPtpDomainClockPortsTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpSystemTable",
                    "cPtpSystemEntry",
                    "cPtpDomainClockPortsTotal"
                  ]
                },
                "description": "Retrieve cPtpDomainClockPortsTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpDomainClockPortPhysicalInterfacesTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpSystemTable/cPtpSystemEntry/cPtpDomainClockPortPhysicalInterfacesTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpSystemTable",
                    "cPtpSystemEntry",
                    "cPtpDomainClockPortPhysicalInterfacesTotal"
                  ]
                },
                "description": "Retrieve cPtpDomainClockPortPhysicalInterfacesTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpSystemDomainTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpSystemDomainTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpSystemDomainTable"
                  ]
                },
                "description": "Retrieve cPtpSystemDomainTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpSystemDomainEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpSystemDomainTable/cPtpSystemDomainEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpSystemDomainTable",
                    "cPtpSystemDomainEntry"
                  ]
                },
                "description": "Retrieve cPtpSystemDomainEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpSystemDomainClockTypeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpSystemDomainTable/cPtpSystemDomainEntry/cPtpSystemDomainClockTypeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpSystemDomainTable",
                    "cPtpSystemDomainEntry",
                    "cPtpSystemDomainClockTypeIndex"
                  ]
                },
                "description": "Retrieve cPtpSystemDomainClockTypeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpSystemDomainTotals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpSystemDomainTable/cPtpSystemDomainEntry/cPtpSystemDomainTotals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpSystemDomainTable",
                    "cPtpSystemDomainEntry",
                    "cPtpSystemDomainTotals"
                  ]
                },
                "description": "Retrieve cPtpSystemDomainTotals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockNodeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockNodeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockNodeTable"
                  ]
                },
                "description": "Retrieve cPtpClockNodeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockNodeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockNodeTable/cPtpClockNodeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockNodeTable",
                    "cPtpClockNodeEntry"
                  ]
                },
                "description": "Retrieve cPtpClockNodeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockNodeTable/cPtpClockNodeEntry/cPtpClockDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockNodeTable",
                    "cPtpClockNodeEntry",
                    "cPtpClockDomainIndex"
                  ]
                },
                "description": "Retrieve cPtpClockDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTypeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockNodeTable/cPtpClockNodeEntry/cPtpClockTypeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockNodeTable",
                    "cPtpClockNodeEntry",
                    "cPtpClockTypeIndex"
                  ]
                },
                "description": "Retrieve cPtpClockTypeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockNodeTable/cPtpClockNodeEntry/cPtpClockInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockNodeTable",
                    "cPtpClockNodeEntry",
                    "cPtpClockInstanceIndex"
                  ]
                },
                "description": "Retrieve cPtpClockInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockInput1ppsEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockNodeTable/cPtpClockNodeEntry/cPtpClockInput1ppsEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockNodeTable",
                    "cPtpClockNodeEntry",
                    "cPtpClockInput1ppsEnabled"
                  ]
                },
                "description": "Retrieve cPtpClockInput1ppsEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockInputFrequencyEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockNodeTable/cPtpClockNodeEntry/cPtpClockInputFrequencyEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockNodeTable",
                    "cPtpClockNodeEntry",
                    "cPtpClockInputFrequencyEnabled"
                  ]
                },
                "description": "Retrieve cPtpClockInputFrequencyEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTODEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockNodeTable/cPtpClockNodeEntry/cPtpClockTODEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockNodeTable",
                    "cPtpClockNodeEntry",
                    "cPtpClockTODEnabled"
                  ]
                },
                "description": "Retrieve cPtpClockTODEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockOutput1ppsEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockNodeTable/cPtpClockNodeEntry/cPtpClockOutput1ppsEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockNodeTable",
                    "cPtpClockNodeEntry",
                    "cPtpClockOutput1ppsEnabled"
                  ]
                },
                "description": "Retrieve cPtpClockOutput1ppsEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockOutput1ppsOffsetEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockNodeTable/cPtpClockNodeEntry/cPtpClockOutput1ppsOffsetEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockNodeTable",
                    "cPtpClockNodeEntry",
                    "cPtpClockOutput1ppsOffsetEnabled"
                  ]
                },
                "description": "Retrieve cPtpClockOutput1ppsOffsetEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockOutput1ppsOffsetValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockNodeTable/cPtpClockNodeEntry/cPtpClockOutput1ppsOffsetValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockNodeTable",
                    "cPtpClockNodeEntry",
                    "cPtpClockOutput1ppsOffsetValue"
                  ]
                },
                "description": "Retrieve cPtpClockOutput1ppsOffsetValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockOutput1ppsOffsetNegative",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockNodeTable/cPtpClockNodeEntry/cPtpClockOutput1ppsOffsetNegative",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockNodeTable",
                    "cPtpClockNodeEntry",
                    "cPtpClockOutput1ppsOffsetNegative"
                  ]
                },
                "description": "Retrieve cPtpClockOutput1ppsOffsetNegative from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockInput1ppsInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockNodeTable/cPtpClockNodeEntry/cPtpClockInput1ppsInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockNodeTable",
                    "cPtpClockNodeEntry",
                    "cPtpClockInput1ppsInterface"
                  ]
                },
                "description": "Retrieve cPtpClockInput1ppsInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockOutput1ppsInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockNodeTable/cPtpClockNodeEntry/cPtpClockOutput1ppsInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockNodeTable",
                    "cPtpClockNodeEntry",
                    "cPtpClockOutput1ppsInterface"
                  ]
                },
                "description": "Retrieve cPtpClockOutput1ppsInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTODInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockNodeTable/cPtpClockNodeEntry/cPtpClockTODInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockNodeTable",
                    "cPtpClockNodeEntry",
                    "cPtpClockTODInterface"
                  ]
                },
                "description": "Retrieve cPtpClockTODInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockCurrentDSTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockCurrentDSTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockCurrentDSTable"
                  ]
                },
                "description": "Retrieve cPtpClockCurrentDSTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockCurrentDSEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockCurrentDSTable/cPtpClockCurrentDSEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockCurrentDSTable",
                    "cPtpClockCurrentDSEntry"
                  ]
                },
                "description": "Retrieve cPtpClockCurrentDSEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockCurrentDSDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockCurrentDSTable/cPtpClockCurrentDSEntry/cPtpClockCurrentDSDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockCurrentDSTable",
                    "cPtpClockCurrentDSEntry",
                    "cPtpClockCurrentDSDomainIndex"
                  ]
                },
                "description": "Retrieve cPtpClockCurrentDSDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockCurrentDSClockTypeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockCurrentDSTable/cPtpClockCurrentDSEntry/cPtpClockCurrentDSClockTypeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockCurrentDSTable",
                    "cPtpClockCurrentDSEntry",
                    "cPtpClockCurrentDSClockTypeIndex"
                  ]
                },
                "description": "Retrieve cPtpClockCurrentDSClockTypeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockCurrentDSInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockCurrentDSTable/cPtpClockCurrentDSEntry/cPtpClockCurrentDSInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockCurrentDSTable",
                    "cPtpClockCurrentDSEntry",
                    "cPtpClockCurrentDSInstanceIndex"
                  ]
                },
                "description": "Retrieve cPtpClockCurrentDSInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockCurrentDSStepsRemoved",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockCurrentDSTable/cPtpClockCurrentDSEntry/cPtpClockCurrentDSStepsRemoved",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockCurrentDSTable",
                    "cPtpClockCurrentDSEntry",
                    "cPtpClockCurrentDSStepsRemoved"
                  ]
                },
                "description": "Retrieve cPtpClockCurrentDSStepsRemoved from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockCurrentDSOffsetFromMaster",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockCurrentDSTable/cPtpClockCurrentDSEntry/cPtpClockCurrentDSOffsetFromMaster",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockCurrentDSTable",
                    "cPtpClockCurrentDSEntry",
                    "cPtpClockCurrentDSOffsetFromMaster"
                  ]
                },
                "description": "Retrieve cPtpClockCurrentDSOffsetFromMaster from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockCurrentDSMeanPathDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockCurrentDSTable/cPtpClockCurrentDSEntry/cPtpClockCurrentDSMeanPathDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockCurrentDSTable",
                    "cPtpClockCurrentDSEntry",
                    "cPtpClockCurrentDSMeanPathDelay"
                  ]
                },
                "description": "Retrieve cPtpClockCurrentDSMeanPathDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockParentDSTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockParentDSTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockParentDSTable"
                  ]
                },
                "description": "Retrieve cPtpClockParentDSTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockParentDSEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockParentDSTable/cPtpClockParentDSEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockParentDSTable",
                    "cPtpClockParentDSEntry"
                  ]
                },
                "description": "Retrieve cPtpClockParentDSEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockParentDSDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockParentDSTable/cPtpClockParentDSEntry/cPtpClockParentDSDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockParentDSTable",
                    "cPtpClockParentDSEntry",
                    "cPtpClockParentDSDomainIndex"
                  ]
                },
                "description": "Retrieve cPtpClockParentDSDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockParentDSClockTypeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockParentDSTable/cPtpClockParentDSEntry/cPtpClockParentDSClockTypeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockParentDSTable",
                    "cPtpClockParentDSEntry",
                    "cPtpClockParentDSClockTypeIndex"
                  ]
                },
                "description": "Retrieve cPtpClockParentDSClockTypeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockParentDSInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockParentDSTable/cPtpClockParentDSEntry/cPtpClockParentDSInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockParentDSTable",
                    "cPtpClockParentDSEntry",
                    "cPtpClockParentDSInstanceIndex"
                  ]
                },
                "description": "Retrieve cPtpClockParentDSInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockParentDSParentPortIdentity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockParentDSTable/cPtpClockParentDSEntry/cPtpClockParentDSParentPortIdentity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockParentDSTable",
                    "cPtpClockParentDSEntry",
                    "cPtpClockParentDSParentPortIdentity"
                  ]
                },
                "description": "Retrieve cPtpClockParentDSParentPortIdentity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockParentDSParentStats",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockParentDSTable/cPtpClockParentDSEntry/cPtpClockParentDSParentStats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockParentDSTable",
                    "cPtpClockParentDSEntry",
                    "cPtpClockParentDSParentStats"
                  ]
                },
                "description": "Retrieve cPtpClockParentDSParentStats from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockParentDSOffset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockParentDSTable/cPtpClockParentDSEntry/cPtpClockParentDSOffset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockParentDSTable",
                    "cPtpClockParentDSEntry",
                    "cPtpClockParentDSOffset"
                  ]
                },
                "description": "Retrieve cPtpClockParentDSOffset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockParentDSClockPhChRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockParentDSTable/cPtpClockParentDSEntry/cPtpClockParentDSClockPhChRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockParentDSTable",
                    "cPtpClockParentDSEntry",
                    "cPtpClockParentDSClockPhChRate"
                  ]
                },
                "description": "Retrieve cPtpClockParentDSClockPhChRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockParentDSGMClockIdentity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockParentDSTable/cPtpClockParentDSEntry/cPtpClockParentDSGMClockIdentity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockParentDSTable",
                    "cPtpClockParentDSEntry",
                    "cPtpClockParentDSGMClockIdentity"
                  ]
                },
                "description": "Retrieve cPtpClockParentDSGMClockIdentity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockParentDSGMClockPriority1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockParentDSTable/cPtpClockParentDSEntry/cPtpClockParentDSGMClockPriority1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockParentDSTable",
                    "cPtpClockParentDSEntry",
                    "cPtpClockParentDSGMClockPriority1"
                  ]
                },
                "description": "Retrieve cPtpClockParentDSGMClockPriority1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockParentDSGMClockPriority2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockParentDSTable/cPtpClockParentDSEntry/cPtpClockParentDSGMClockPriority2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockParentDSTable",
                    "cPtpClockParentDSEntry",
                    "cPtpClockParentDSGMClockPriority2"
                  ]
                },
                "description": "Retrieve cPtpClockParentDSGMClockPriority2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockParentDSGMClockQualityClass",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockParentDSTable/cPtpClockParentDSEntry/cPtpClockParentDSGMClockQualityClass",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockParentDSTable",
                    "cPtpClockParentDSEntry",
                    "cPtpClockParentDSGMClockQualityClass"
                  ]
                },
                "description": "Retrieve cPtpClockParentDSGMClockQualityClass from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockParentDSGMClockQualityAccuracy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockParentDSTable/cPtpClockParentDSEntry/cPtpClockParentDSGMClockQualityAccuracy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockParentDSTable",
                    "cPtpClockParentDSEntry",
                    "cPtpClockParentDSGMClockQualityAccuracy"
                  ]
                },
                "description": "Retrieve cPtpClockParentDSGMClockQualityAccuracy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockParentDSGMClockQualityOffset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockParentDSTable/cPtpClockParentDSEntry/cPtpClockParentDSGMClockQualityOffset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockParentDSTable",
                    "cPtpClockParentDSEntry",
                    "cPtpClockParentDSGMClockQualityOffset"
                  ]
                },
                "description": "Retrieve cPtpClockParentDSGMClockQualityOffset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockDefaultDSTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockDefaultDSTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockDefaultDSTable"
                  ]
                },
                "description": "Retrieve cPtpClockDefaultDSTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockDefaultDSEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockDefaultDSTable/cPtpClockDefaultDSEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockDefaultDSTable",
                    "cPtpClockDefaultDSEntry"
                  ]
                },
                "description": "Retrieve cPtpClockDefaultDSEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockDefaultDSDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockDefaultDSTable/cPtpClockDefaultDSEntry/cPtpClockDefaultDSDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockDefaultDSTable",
                    "cPtpClockDefaultDSEntry",
                    "cPtpClockDefaultDSDomainIndex"
                  ]
                },
                "description": "Retrieve cPtpClockDefaultDSDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockDefaultDSClockTypeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockDefaultDSTable/cPtpClockDefaultDSEntry/cPtpClockDefaultDSClockTypeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockDefaultDSTable",
                    "cPtpClockDefaultDSEntry",
                    "cPtpClockDefaultDSClockTypeIndex"
                  ]
                },
                "description": "Retrieve cPtpClockDefaultDSClockTypeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockDefaultDSInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockDefaultDSTable/cPtpClockDefaultDSEntry/cPtpClockDefaultDSInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockDefaultDSTable",
                    "cPtpClockDefaultDSEntry",
                    "cPtpClockDefaultDSInstanceIndex"
                  ]
                },
                "description": "Retrieve cPtpClockDefaultDSInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockDefaultDSTwoStepFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockDefaultDSTable/cPtpClockDefaultDSEntry/cPtpClockDefaultDSTwoStepFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockDefaultDSTable",
                    "cPtpClockDefaultDSEntry",
                    "cPtpClockDefaultDSTwoStepFlag"
                  ]
                },
                "description": "Retrieve cPtpClockDefaultDSTwoStepFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockDefaultDSClockIdentity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockDefaultDSTable/cPtpClockDefaultDSEntry/cPtpClockDefaultDSClockIdentity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockDefaultDSTable",
                    "cPtpClockDefaultDSEntry",
                    "cPtpClockDefaultDSClockIdentity"
                  ]
                },
                "description": "Retrieve cPtpClockDefaultDSClockIdentity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockDefaultDSPriority1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockDefaultDSTable/cPtpClockDefaultDSEntry/cPtpClockDefaultDSPriority1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockDefaultDSTable",
                    "cPtpClockDefaultDSEntry",
                    "cPtpClockDefaultDSPriority1"
                  ]
                },
                "description": "Retrieve cPtpClockDefaultDSPriority1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockDefaultDSPriority2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockDefaultDSTable/cPtpClockDefaultDSEntry/cPtpClockDefaultDSPriority2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockDefaultDSTable",
                    "cPtpClockDefaultDSEntry",
                    "cPtpClockDefaultDSPriority2"
                  ]
                },
                "description": "Retrieve cPtpClockDefaultDSPriority2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockDefaultDSSlaveOnly",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockDefaultDSTable/cPtpClockDefaultDSEntry/cPtpClockDefaultDSSlaveOnly",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockDefaultDSTable",
                    "cPtpClockDefaultDSEntry",
                    "cPtpClockDefaultDSSlaveOnly"
                  ]
                },
                "description": "Retrieve cPtpClockDefaultDSSlaveOnly from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockDefaultDSQualityClass",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockDefaultDSTable/cPtpClockDefaultDSEntry/cPtpClockDefaultDSQualityClass",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockDefaultDSTable",
                    "cPtpClockDefaultDSEntry",
                    "cPtpClockDefaultDSQualityClass"
                  ]
                },
                "description": "Retrieve cPtpClockDefaultDSQualityClass from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockDefaultDSQualityAccuracy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockDefaultDSTable/cPtpClockDefaultDSEntry/cPtpClockDefaultDSQualityAccuracy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockDefaultDSTable",
                    "cPtpClockDefaultDSEntry",
                    "cPtpClockDefaultDSQualityAccuracy"
                  ]
                },
                "description": "Retrieve cPtpClockDefaultDSQualityAccuracy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockDefaultDSQualityOffset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockDefaultDSTable/cPtpClockDefaultDSEntry/cPtpClockDefaultDSQualityOffset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockDefaultDSTable",
                    "cPtpClockDefaultDSEntry",
                    "cPtpClockDefaultDSQualityOffset"
                  ]
                },
                "description": "Retrieve cPtpClockDefaultDSQualityOffset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockRunningTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockRunningTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockRunningTable"
                  ]
                },
                "description": "Retrieve cPtpClockRunningTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockRunningEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockRunningTable/cPtpClockRunningEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockRunningTable",
                    "cPtpClockRunningEntry"
                  ]
                },
                "description": "Retrieve cPtpClockRunningEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockRunningDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockRunningTable/cPtpClockRunningEntry/cPtpClockRunningDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockRunningTable",
                    "cPtpClockRunningEntry",
                    "cPtpClockRunningDomainIndex"
                  ]
                },
                "description": "Retrieve cPtpClockRunningDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockRunningClockTypeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockRunningTable/cPtpClockRunningEntry/cPtpClockRunningClockTypeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockRunningTable",
                    "cPtpClockRunningEntry",
                    "cPtpClockRunningClockTypeIndex"
                  ]
                },
                "description": "Retrieve cPtpClockRunningClockTypeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockRunningInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockRunningTable/cPtpClockRunningEntry/cPtpClockRunningInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockRunningTable",
                    "cPtpClockRunningEntry",
                    "cPtpClockRunningInstanceIndex"
                  ]
                },
                "description": "Retrieve cPtpClockRunningInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockRunningState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockRunningTable/cPtpClockRunningEntry/cPtpClockRunningState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockRunningTable",
                    "cPtpClockRunningEntry",
                    "cPtpClockRunningState"
                  ]
                },
                "description": "Retrieve cPtpClockRunningState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockRunningPacketsSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockRunningTable/cPtpClockRunningEntry/cPtpClockRunningPacketsSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockRunningTable",
                    "cPtpClockRunningEntry",
                    "cPtpClockRunningPacketsSent"
                  ]
                },
                "description": "Retrieve cPtpClockRunningPacketsSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockRunningPacketsReceived",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockRunningTable/cPtpClockRunningEntry/cPtpClockRunningPacketsReceived",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockRunningTable",
                    "cPtpClockRunningEntry",
                    "cPtpClockRunningPacketsReceived"
                  ]
                },
                "description": "Retrieve cPtpClockRunningPacketsReceived from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTimePropertiesDSTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTimePropertiesDSTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTimePropertiesDSTable"
                  ]
                },
                "description": "Retrieve cPtpClockTimePropertiesDSTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTimePropertiesDSEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTimePropertiesDSTable/cPtpClockTimePropertiesDSEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTimePropertiesDSTable",
                    "cPtpClockTimePropertiesDSEntry"
                  ]
                },
                "description": "Retrieve cPtpClockTimePropertiesDSEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTimePropertiesDSDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTimePropertiesDSTable/cPtpClockTimePropertiesDSEntry/cPtpClockTimePropertiesDSDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTimePropertiesDSTable",
                    "cPtpClockTimePropertiesDSEntry",
                    "cPtpClockTimePropertiesDSDomainIndex"
                  ]
                },
                "description": "Retrieve cPtpClockTimePropertiesDSDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTimePropertiesDSClockTypeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTimePropertiesDSTable/cPtpClockTimePropertiesDSEntry/cPtpClockTimePropertiesDSClockTypeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTimePropertiesDSTable",
                    "cPtpClockTimePropertiesDSEntry",
                    "cPtpClockTimePropertiesDSClockTypeIndex"
                  ]
                },
                "description": "Retrieve cPtpClockTimePropertiesDSClockTypeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTimePropertiesDSInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTimePropertiesDSTable/cPtpClockTimePropertiesDSEntry/cPtpClockTimePropertiesDSInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTimePropertiesDSTable",
                    "cPtpClockTimePropertiesDSEntry",
                    "cPtpClockTimePropertiesDSInstanceIndex"
                  ]
                },
                "description": "Retrieve cPtpClockTimePropertiesDSInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTimePropertiesDSCurrentUTCOffsetValid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTimePropertiesDSTable/cPtpClockTimePropertiesDSEntry/cPtpClockTimePropertiesDSCurrentUTCOffsetValid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTimePropertiesDSTable",
                    "cPtpClockTimePropertiesDSEntry",
                    "cPtpClockTimePropertiesDSCurrentUTCOffsetValid"
                  ]
                },
                "description": "Retrieve cPtpClockTimePropertiesDSCurrentUTCOffsetValid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTimePropertiesDSCurrentUTCOffset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTimePropertiesDSTable/cPtpClockTimePropertiesDSEntry/cPtpClockTimePropertiesDSCurrentUTCOffset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTimePropertiesDSTable",
                    "cPtpClockTimePropertiesDSEntry",
                    "cPtpClockTimePropertiesDSCurrentUTCOffset"
                  ]
                },
                "description": "Retrieve cPtpClockTimePropertiesDSCurrentUTCOffset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTimePropertiesDSLeap59",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTimePropertiesDSTable/cPtpClockTimePropertiesDSEntry/cPtpClockTimePropertiesDSLeap59",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTimePropertiesDSTable",
                    "cPtpClockTimePropertiesDSEntry",
                    "cPtpClockTimePropertiesDSLeap59"
                  ]
                },
                "description": "Retrieve cPtpClockTimePropertiesDSLeap59 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTimePropertiesDSLeap61",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTimePropertiesDSTable/cPtpClockTimePropertiesDSEntry/cPtpClockTimePropertiesDSLeap61",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTimePropertiesDSTable",
                    "cPtpClockTimePropertiesDSEntry",
                    "cPtpClockTimePropertiesDSLeap61"
                  ]
                },
                "description": "Retrieve cPtpClockTimePropertiesDSLeap61 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTimePropertiesDSTimeTraceable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTimePropertiesDSTable/cPtpClockTimePropertiesDSEntry/cPtpClockTimePropertiesDSTimeTraceable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTimePropertiesDSTable",
                    "cPtpClockTimePropertiesDSEntry",
                    "cPtpClockTimePropertiesDSTimeTraceable"
                  ]
                },
                "description": "Retrieve cPtpClockTimePropertiesDSTimeTraceable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTimePropertiesDSFreqTraceable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTimePropertiesDSTable/cPtpClockTimePropertiesDSEntry/cPtpClockTimePropertiesDSFreqTraceable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTimePropertiesDSTable",
                    "cPtpClockTimePropertiesDSEntry",
                    "cPtpClockTimePropertiesDSFreqTraceable"
                  ]
                },
                "description": "Retrieve cPtpClockTimePropertiesDSFreqTraceable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTimePropertiesDSPTPTimescale",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTimePropertiesDSTable/cPtpClockTimePropertiesDSEntry/cPtpClockTimePropertiesDSPTPTimescale",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTimePropertiesDSTable",
                    "cPtpClockTimePropertiesDSEntry",
                    "cPtpClockTimePropertiesDSPTPTimescale"
                  ]
                },
                "description": "Retrieve cPtpClockTimePropertiesDSPTPTimescale from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTimePropertiesDSSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTimePropertiesDSTable/cPtpClockTimePropertiesDSEntry/cPtpClockTimePropertiesDSSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTimePropertiesDSTable",
                    "cPtpClockTimePropertiesDSEntry",
                    "cPtpClockTimePropertiesDSSource"
                  ]
                },
                "description": "Retrieve cPtpClockTimePropertiesDSSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTransDefaultDSTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTransDefaultDSTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTransDefaultDSTable"
                  ]
                },
                "description": "Retrieve cPtpClockTransDefaultDSTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTransDefaultDSEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTransDefaultDSTable/cPtpClockTransDefaultDSEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTransDefaultDSTable",
                    "cPtpClockTransDefaultDSEntry"
                  ]
                },
                "description": "Retrieve cPtpClockTransDefaultDSEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTransDefaultDSDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTransDefaultDSTable/cPtpClockTransDefaultDSEntry/cPtpClockTransDefaultDSDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTransDefaultDSTable",
                    "cPtpClockTransDefaultDSEntry",
                    "cPtpClockTransDefaultDSDomainIndex"
                  ]
                },
                "description": "Retrieve cPtpClockTransDefaultDSDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTransDefaultDSInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTransDefaultDSTable/cPtpClockTransDefaultDSEntry/cPtpClockTransDefaultDSInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTransDefaultDSTable",
                    "cPtpClockTransDefaultDSEntry",
                    "cPtpClockTransDefaultDSInstanceIndex"
                  ]
                },
                "description": "Retrieve cPtpClockTransDefaultDSInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTransDefaultDSClockIdentity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTransDefaultDSTable/cPtpClockTransDefaultDSEntry/cPtpClockTransDefaultDSClockIdentity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTransDefaultDSTable",
                    "cPtpClockTransDefaultDSEntry",
                    "cPtpClockTransDefaultDSClockIdentity"
                  ]
                },
                "description": "Retrieve cPtpClockTransDefaultDSClockIdentity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTransDefaultDSNumOfPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTransDefaultDSTable/cPtpClockTransDefaultDSEntry/cPtpClockTransDefaultDSNumOfPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTransDefaultDSTable",
                    "cPtpClockTransDefaultDSEntry",
                    "cPtpClockTransDefaultDSNumOfPorts"
                  ]
                },
                "description": "Retrieve cPtpClockTransDefaultDSNumOfPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTransDefaultDSDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTransDefaultDSTable/cPtpClockTransDefaultDSEntry/cPtpClockTransDefaultDSDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTransDefaultDSTable",
                    "cPtpClockTransDefaultDSEntry",
                    "cPtpClockTransDefaultDSDelay"
                  ]
                },
                "description": "Retrieve cPtpClockTransDefaultDSDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockTransDefaultDSPrimaryDomain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockTransDefaultDSTable/cPtpClockTransDefaultDSEntry/cPtpClockTransDefaultDSPrimaryDomain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockTransDefaultDSTable",
                    "cPtpClockTransDefaultDSEntry",
                    "cPtpClockTransDefaultDSPrimaryDomain"
                  ]
                },
                "description": "Retrieve cPtpClockTransDefaultDSPrimaryDomain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTable"
                  ]
                },
                "description": "Retrieve cPtpClockPortTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTable/cPtpClockPortEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTable",
                    "cPtpClockPortEntry"
                  ]
                },
                "description": "Retrieve cPtpClockPortEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTable/cPtpClockPortEntry/cPtpClockPortDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTable",
                    "cPtpClockPortEntry",
                    "cPtpClockPortDomainIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortClockTypeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTable/cPtpClockPortEntry/cPtpClockPortClockTypeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTable",
                    "cPtpClockPortEntry",
                    "cPtpClockPortClockTypeIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortClockTypeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortClockInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTable/cPtpClockPortEntry/cPtpClockPortClockInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTable",
                    "cPtpClockPortEntry",
                    "cPtpClockPortClockInstanceIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortClockInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortTablePortNumberIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTable/cPtpClockPortEntry/cPtpClockPortTablePortNumberIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTable",
                    "cPtpClockPortEntry",
                    "cPtpClockPortTablePortNumberIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortTablePortNumberIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTable/cPtpClockPortEntry/cPtpClockPortName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTable",
                    "cPtpClockPortEntry",
                    "cPtpClockPortName"
                  ]
                },
                "description": "Retrieve cPtpClockPortName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRole",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTable/cPtpClockPortEntry/cPtpClockPortRole",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTable",
                    "cPtpClockPortEntry",
                    "cPtpClockPortRole"
                  ]
                },
                "description": "Retrieve cPtpClockPortRole from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortSyncOneStep",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTable/cPtpClockPortEntry/cPtpClockPortSyncOneStep",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTable",
                    "cPtpClockPortEntry",
                    "cPtpClockPortSyncOneStep"
                  ]
                },
                "description": "Retrieve cPtpClockPortSyncOneStep from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortCurrentPeerAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTable/cPtpClockPortEntry/cPtpClockPortCurrentPeerAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTable",
                    "cPtpClockPortEntry",
                    "cPtpClockPortCurrentPeerAddressType"
                  ]
                },
                "description": "Retrieve cPtpClockPortCurrentPeerAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortCurrentPeerAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTable/cPtpClockPortEntry/cPtpClockPortCurrentPeerAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTable",
                    "cPtpClockPortEntry",
                    "cPtpClockPortCurrentPeerAddress"
                  ]
                },
                "description": "Retrieve cPtpClockPortCurrentPeerAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortNumOfAssociatedPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTable/cPtpClockPortEntry/cPtpClockPortNumOfAssociatedPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTable",
                    "cPtpClockPortEntry",
                    "cPtpClockPortNumOfAssociatedPorts"
                  ]
                },
                "description": "Retrieve cPtpClockPortNumOfAssociatedPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable/cPtpClockPortDSEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable",
                    "cPtpClockPortDSEntry"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable/cPtpClockPortDSEntry/cPtpClockPortDSDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable",
                    "cPtpClockPortDSEntry",
                    "cPtpClockPortDSDomainIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSClockTypeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable/cPtpClockPortDSEntry/cPtpClockPortDSClockTypeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable",
                    "cPtpClockPortDSEntry",
                    "cPtpClockPortDSClockTypeIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSClockTypeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSClockInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable/cPtpClockPortDSEntry/cPtpClockPortDSClockInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable",
                    "cPtpClockPortDSEntry",
                    "cPtpClockPortDSClockInstanceIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSClockInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSPortNumberIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable/cPtpClockPortDSEntry/cPtpClockPortDSPortNumberIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable",
                    "cPtpClockPortDSEntry",
                    "cPtpClockPortDSPortNumberIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSPortNumberIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable/cPtpClockPortDSEntry/cPtpClockPortDSName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable",
                    "cPtpClockPortDSEntry",
                    "cPtpClockPortDSName"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSPortIdentity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable/cPtpClockPortDSEntry/cPtpClockPortDSPortIdentity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable",
                    "cPtpClockPortDSEntry",
                    "cPtpClockPortDSPortIdentity"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSPortIdentity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSAnnouncementInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable/cPtpClockPortDSEntry/cPtpClockPortDSAnnouncementInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable",
                    "cPtpClockPortDSEntry",
                    "cPtpClockPortDSAnnouncementInterval"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSAnnouncementInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSAnnounceRctTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable/cPtpClockPortDSEntry/cPtpClockPortDSAnnounceRctTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable",
                    "cPtpClockPortDSEntry",
                    "cPtpClockPortDSAnnounceRctTimeout"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSAnnounceRctTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSSyncInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable/cPtpClockPortDSEntry/cPtpClockPortDSSyncInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable",
                    "cPtpClockPortDSEntry",
                    "cPtpClockPortDSSyncInterval"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSSyncInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSMinDelayReqInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable/cPtpClockPortDSEntry/cPtpClockPortDSMinDelayReqInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable",
                    "cPtpClockPortDSEntry",
                    "cPtpClockPortDSMinDelayReqInterval"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSMinDelayReqInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSPeerDelayReqInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable/cPtpClockPortDSEntry/cPtpClockPortDSPeerDelayReqInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable",
                    "cPtpClockPortDSEntry",
                    "cPtpClockPortDSPeerDelayReqInterval"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSPeerDelayReqInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSDelayMech",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable/cPtpClockPortDSEntry/cPtpClockPortDSDelayMech",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable",
                    "cPtpClockPortDSEntry",
                    "cPtpClockPortDSDelayMech"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSDelayMech from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSPeerMeanPathDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable/cPtpClockPortDSEntry/cPtpClockPortDSPeerMeanPathDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable",
                    "cPtpClockPortDSEntry",
                    "cPtpClockPortDSPeerMeanPathDelay"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSPeerMeanPathDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSGrantDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable/cPtpClockPortDSEntry/cPtpClockPortDSGrantDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable",
                    "cPtpClockPortDSEntry",
                    "cPtpClockPortDSGrantDuration"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSGrantDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortDSPTPVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortDSTable/cPtpClockPortDSEntry/cPtpClockPortDSPTPVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortDSTable",
                    "cPtpClockPortDSEntry",
                    "cPtpClockPortDSPTPVersion"
                  ]
                },
                "description": "Retrieve cPtpClockPortDSPTPVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRunningTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortRunningTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortRunningTable"
                  ]
                },
                "description": "Retrieve cPtpClockPortRunningTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRunningEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortRunningTable/cPtpClockPortRunningEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortRunningTable",
                    "cPtpClockPortRunningEntry"
                  ]
                },
                "description": "Retrieve cPtpClockPortRunningEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRunningDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortRunningTable/cPtpClockPortRunningEntry/cPtpClockPortRunningDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortRunningTable",
                    "cPtpClockPortRunningEntry",
                    "cPtpClockPortRunningDomainIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortRunningDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRunningClockTypeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortRunningTable/cPtpClockPortRunningEntry/cPtpClockPortRunningClockTypeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortRunningTable",
                    "cPtpClockPortRunningEntry",
                    "cPtpClockPortRunningClockTypeIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortRunningClockTypeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRunningClockInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortRunningTable/cPtpClockPortRunningEntry/cPtpClockPortRunningClockInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortRunningTable",
                    "cPtpClockPortRunningEntry",
                    "cPtpClockPortRunningClockInstanceIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortRunningClockInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRunningPortNumberIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortRunningTable/cPtpClockPortRunningEntry/cPtpClockPortRunningPortNumberIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortRunningTable",
                    "cPtpClockPortRunningEntry",
                    "cPtpClockPortRunningPortNumberIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortRunningPortNumberIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRunningName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortRunningTable/cPtpClockPortRunningEntry/cPtpClockPortRunningName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortRunningTable",
                    "cPtpClockPortRunningEntry",
                    "cPtpClockPortRunningName"
                  ]
                },
                "description": "Retrieve cPtpClockPortRunningName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRunningState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortRunningTable/cPtpClockPortRunningEntry/cPtpClockPortRunningState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortRunningTable",
                    "cPtpClockPortRunningEntry",
                    "cPtpClockPortRunningState"
                  ]
                },
                "description": "Retrieve cPtpClockPortRunningState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRunningRole",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortRunningTable/cPtpClockPortRunningEntry/cPtpClockPortRunningRole",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortRunningTable",
                    "cPtpClockPortRunningEntry",
                    "cPtpClockPortRunningRole"
                  ]
                },
                "description": "Retrieve cPtpClockPortRunningRole from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRunningInterfaceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortRunningTable/cPtpClockPortRunningEntry/cPtpClockPortRunningInterfaceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortRunningTable",
                    "cPtpClockPortRunningEntry",
                    "cPtpClockPortRunningInterfaceIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortRunningInterfaceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRunningIPversion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortRunningTable/cPtpClockPortRunningEntry/cPtpClockPortRunningIPversion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortRunningTable",
                    "cPtpClockPortRunningEntry",
                    "cPtpClockPortRunningIPversion"
                  ]
                },
                "description": "Retrieve cPtpClockPortRunningIPversion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRunningEncapsulationType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortRunningTable/cPtpClockPortRunningEntry/cPtpClockPortRunningEncapsulationType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortRunningTable",
                    "cPtpClockPortRunningEntry",
                    "cPtpClockPortRunningEncapsulationType"
                  ]
                },
                "description": "Retrieve cPtpClockPortRunningEncapsulationType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRunningTxMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortRunningTable/cPtpClockPortRunningEntry/cPtpClockPortRunningTxMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortRunningTable",
                    "cPtpClockPortRunningEntry",
                    "cPtpClockPortRunningTxMode"
                  ]
                },
                "description": "Retrieve cPtpClockPortRunningTxMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRunningRxMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortRunningTable/cPtpClockPortRunningEntry/cPtpClockPortRunningRxMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortRunningTable",
                    "cPtpClockPortRunningEntry",
                    "cPtpClockPortRunningRxMode"
                  ]
                },
                "description": "Retrieve cPtpClockPortRunningRxMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRunningPacketsReceived",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortRunningTable/cPtpClockPortRunningEntry/cPtpClockPortRunningPacketsReceived",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortRunningTable",
                    "cPtpClockPortRunningEntry",
                    "cPtpClockPortRunningPacketsReceived"
                  ]
                },
                "description": "Retrieve cPtpClockPortRunningPacketsReceived from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortRunningPacketsSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortRunningTable/cPtpClockPortRunningEntry/cPtpClockPortRunningPacketsSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortRunningTable",
                    "cPtpClockPortRunningEntry",
                    "cPtpClockPortRunningPacketsSent"
                  ]
                },
                "description": "Retrieve cPtpClockPortRunningPacketsSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortTransDSTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTransDSTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTransDSTable"
                  ]
                },
                "description": "Retrieve cPtpClockPortTransDSTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortTransDSEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTransDSTable/cPtpClockPortTransDSEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTransDSTable",
                    "cPtpClockPortTransDSEntry"
                  ]
                },
                "description": "Retrieve cPtpClockPortTransDSEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortTransDSDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTransDSTable/cPtpClockPortTransDSEntry/cPtpClockPortTransDSDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTransDSTable",
                    "cPtpClockPortTransDSEntry",
                    "cPtpClockPortTransDSDomainIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortTransDSDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortTransDSInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTransDSTable/cPtpClockPortTransDSEntry/cPtpClockPortTransDSInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTransDSTable",
                    "cPtpClockPortTransDSEntry",
                    "cPtpClockPortTransDSInstanceIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortTransDSInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortTransDSPortNumberIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTransDSTable/cPtpClockPortTransDSEntry/cPtpClockPortTransDSPortNumberIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTransDSTable",
                    "cPtpClockPortTransDSEntry",
                    "cPtpClockPortTransDSPortNumberIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortTransDSPortNumberIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortTransDSPortIdentity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTransDSTable/cPtpClockPortTransDSEntry/cPtpClockPortTransDSPortIdentity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTransDSTable",
                    "cPtpClockPortTransDSEntry",
                    "cPtpClockPortTransDSPortIdentity"
                  ]
                },
                "description": "Retrieve cPtpClockPortTransDSPortIdentity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortTransDSlogMinPdelayReqInt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTransDSTable/cPtpClockPortTransDSEntry/cPtpClockPortTransDSlogMinPdelayReqInt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTransDSTable",
                    "cPtpClockPortTransDSEntry",
                    "cPtpClockPortTransDSlogMinPdelayReqInt"
                  ]
                },
                "description": "Retrieve cPtpClockPortTransDSlogMinPdelayReqInt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortTransDSFaultyFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTransDSTable/cPtpClockPortTransDSEntry/cPtpClockPortTransDSFaultyFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTransDSTable",
                    "cPtpClockPortTransDSEntry",
                    "cPtpClockPortTransDSFaultyFlag"
                  ]
                },
                "description": "Retrieve cPtpClockPortTransDSFaultyFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortTransDSPeerMeanPathDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortTransDSTable/cPtpClockPortTransDSEntry/cPtpClockPortTransDSPeerMeanPathDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortTransDSTable",
                    "cPtpClockPortTransDSEntry",
                    "cPtpClockPortTransDSPeerMeanPathDelay"
                  ]
                },
                "description": "Retrieve cPtpClockPortTransDSPeerMeanPathDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortAssociateTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortAssociateTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortAssociateTable"
                  ]
                },
                "description": "Retrieve cPtpClockPortAssociateTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortAssociateEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortAssociateTable/cPtpClockPortAssociateEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortAssociateTable",
                    "cPtpClockPortAssociateEntry"
                  ]
                },
                "description": "Retrieve cPtpClockPortAssociateEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortCurrentDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortAssociateTable/cPtpClockPortAssociateEntry/cPtpClockPortCurrentDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortAssociateTable",
                    "cPtpClockPortAssociateEntry",
                    "cPtpClockPortCurrentDomainIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortCurrentDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortCurrentClockTypeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortAssociateTable/cPtpClockPortAssociateEntry/cPtpClockPortCurrentClockTypeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortAssociateTable",
                    "cPtpClockPortAssociateEntry",
                    "cPtpClockPortCurrentClockTypeIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortCurrentClockTypeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortCurrentClockInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortAssociateTable/cPtpClockPortAssociateEntry/cPtpClockPortCurrentClockInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortAssociateTable",
                    "cPtpClockPortAssociateEntry",
                    "cPtpClockPortCurrentClockInstanceIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortCurrentClockInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortCurrentPortNumberIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortAssociateTable/cPtpClockPortAssociateEntry/cPtpClockPortCurrentPortNumberIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortAssociateTable",
                    "cPtpClockPortAssociateEntry",
                    "cPtpClockPortCurrentPortNumberIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortCurrentPortNumberIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortAssociatePortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortAssociateTable/cPtpClockPortAssociateEntry/cPtpClockPortAssociatePortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortAssociateTable",
                    "cPtpClockPortAssociateEntry",
                    "cPtpClockPortAssociatePortIndex"
                  ]
                },
                "description": "Retrieve cPtpClockPortAssociatePortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortAssociateAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortAssociateTable/cPtpClockPortAssociateEntry/cPtpClockPortAssociateAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortAssociateTable",
                    "cPtpClockPortAssociateEntry",
                    "cPtpClockPortAssociateAddressType"
                  ]
                },
                "description": "Retrieve cPtpClockPortAssociateAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortAssociateAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortAssociateTable/cPtpClockPortAssociateEntry/cPtpClockPortAssociateAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortAssociateTable",
                    "cPtpClockPortAssociateEntry",
                    "cPtpClockPortAssociateAddress"
                  ]
                },
                "description": "Retrieve cPtpClockPortAssociateAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortAssociatePacketsSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortAssociateTable/cPtpClockPortAssociateEntry/cPtpClockPortAssociatePacketsSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortAssociateTable",
                    "cPtpClockPortAssociateEntry",
                    "cPtpClockPortAssociatePacketsSent"
                  ]
                },
                "description": "Retrieve cPtpClockPortAssociatePacketsSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortAssociatePacketsReceived",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortAssociateTable/cPtpClockPortAssociateEntry/cPtpClockPortAssociatePacketsReceived",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortAssociateTable",
                    "cPtpClockPortAssociateEntry",
                    "cPtpClockPortAssociatePacketsReceived"
                  ]
                },
                "description": "Retrieve cPtpClockPortAssociatePacketsReceived from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortAssociateInErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortAssociateTable/cPtpClockPortAssociateEntry/cPtpClockPortAssociateInErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortAssociateTable",
                    "cPtpClockPortAssociateEntry",
                    "cPtpClockPortAssociateInErrors"
                  ]
                },
                "description": "Retrieve cPtpClockPortAssociateInErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPtpClockPortAssociateOutErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-PTP-MIB:CISCO-PTP-MIB/cPtpClockPortAssociateTable/cPtpClockPortAssociateEntry/cPtpClockPortAssociateOutErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-PTP-MIB:CISCO-PTP-MIB",
                    "cPtpClockPortAssociateTable",
                    "cPtpClockPortAssociateEntry",
                    "cPtpClockPortAssociateOutErrors"
                  ]
                },
                "description": "Retrieve cPtpClockPortAssociateOutErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-QOS-PIB-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-QOS-PIB-MIB\n\nMIB data from `CISCO-QOS-PIB-MIB` module.\n\n**Root containers:** 1 (CISCO-QOS-PIB-MIB)\n**Paths:** 132 | **Descendants:** 131\n\nAll endpoints are read-only (GET).\n\nEndpoints: 132 | Operations: 132",
          "item": [
            {
              "name": "GET Get CISCO-QOS-PIB-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB"
                  ]
                },
                "description": "Retrieve CISCO-QOS-PIB-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDevicePibIncarnationTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDevicePibIncarnationTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDevicePibIncarnationTable"
                  ]
                },
                "description": "Retrieve qosDevicePibIncarnationTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDevicePibIncarnationEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDevicePibIncarnationTable/qosDevicePibIncarnationEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDevicePibIncarnationTable",
                    "qosDevicePibIncarnationEntry"
                  ]
                },
                "description": "Retrieve qosDevicePibIncarnationEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDeviceIncarnationId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDevicePibIncarnationTable/qosDevicePibIncarnationEntry/qosDeviceIncarnationId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDevicePibIncarnationTable",
                    "qosDevicePibIncarnationEntry",
                    "qosDeviceIncarnationId"
                  ]
                },
                "description": "Retrieve qosDeviceIncarnationId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDevicePdpName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDevicePibIncarnationTable/qosDevicePibIncarnationEntry/qosDevicePdpName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDevicePibIncarnationTable",
                    "qosDevicePibIncarnationEntry",
                    "qosDevicePdpName"
                  ]
                },
                "description": "Retrieve qosDevicePdpName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDevicePibIncarnation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDevicePibIncarnationTable/qosDevicePibIncarnationEntry/qosDevicePibIncarnation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDevicePibIncarnationTable",
                    "qosDevicePibIncarnationEntry",
                    "qosDevicePibIncarnation"
                  ]
                },
                "description": "Retrieve qosDevicePibIncarnation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDevicePibTtl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDevicePibIncarnationTable/qosDevicePibIncarnationEntry/qosDevicePibTtl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDevicePibIncarnationTable",
                    "qosDevicePibIncarnationEntry",
                    "qosDevicePibTtl"
                  ]
                },
                "description": "Retrieve qosDevicePibTtl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDeviceAttributeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDeviceAttributeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDeviceAttributeTable"
                  ]
                },
                "description": "Retrieve qosDeviceAttributeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDeviceAttributeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDeviceAttributeTable/qosDeviceAttributeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDeviceAttributeTable",
                    "qosDeviceAttributeEntry"
                  ]
                },
                "description": "Retrieve qosDeviceAttributeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDeviceAttributeId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDeviceAttributeTable/qosDeviceAttributeEntry/qosDeviceAttributeId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDeviceAttributeTable",
                    "qosDeviceAttributeEntry",
                    "qosDeviceAttributeId"
                  ]
                },
                "description": "Retrieve qosDeviceAttributeId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDevicePepDomain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDeviceAttributeTable/qosDeviceAttributeEntry/qosDevicePepDomain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDeviceAttributeTable",
                    "qosDeviceAttributeEntry",
                    "qosDevicePepDomain"
                  ]
                },
                "description": "Retrieve qosDevicePepDomain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDevicePrimaryPdp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDeviceAttributeTable/qosDeviceAttributeEntry/qosDevicePrimaryPdp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDeviceAttributeTable",
                    "qosDeviceAttributeEntry",
                    "qosDevicePrimaryPdp"
                  ]
                },
                "description": "Retrieve qosDevicePrimaryPdp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDeviceSecondaryPdp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDeviceAttributeTable/qosDeviceAttributeEntry/qosDeviceSecondaryPdp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDeviceAttributeTable",
                    "qosDeviceAttributeEntry",
                    "qosDeviceSecondaryPdp"
                  ]
                },
                "description": "Retrieve qosDeviceSecondaryPdp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDeviceMaxMessageSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDeviceAttributeTable/qosDeviceAttributeEntry/qosDeviceMaxMessageSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDeviceAttributeTable",
                    "qosDeviceAttributeEntry",
                    "qosDeviceMaxMessageSize"
                  ]
                },
                "description": "Retrieve qosDeviceMaxMessageSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDeviceCapabilities",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDeviceAttributeTable/qosDeviceAttributeEntry/qosDeviceCapabilities",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDeviceAttributeTable",
                    "qosDeviceAttributeEntry",
                    "qosDeviceCapabilities"
                  ]
                },
                "description": "Retrieve qosDeviceCapabilities from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosInterfaceTypeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosInterfaceTypeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosInterfaceTypeTable"
                  ]
                },
                "description": "Retrieve qosInterfaceTypeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosInterfaceTypeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosInterfaceTypeTable/qosInterfaceTypeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosInterfaceTypeTable",
                    "qosInterfaceTypeEntry"
                  ]
                },
                "description": "Retrieve qosInterfaceTypeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosInterfaceTypeId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosInterfaceTypeTable/qosInterfaceTypeEntry/qosInterfaceTypeId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosInterfaceTypeTable",
                    "qosInterfaceTypeEntry",
                    "qosInterfaceTypeId"
                  ]
                },
                "description": "Retrieve qosInterfaceTypeId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosInterfaceQueueType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosInterfaceTypeTable/qosInterfaceTypeEntry/qosInterfaceQueueType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosInterfaceTypeTable",
                    "qosInterfaceTypeEntry",
                    "qosInterfaceQueueType"
                  ]
                },
                "description": "Retrieve qosInterfaceQueueType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosInterfaceTypeRoles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosInterfaceTypeTable/qosInterfaceTypeEntry/qosInterfaceTypeRoles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosInterfaceTypeTable",
                    "qosInterfaceTypeEntry",
                    "qosInterfaceTypeRoles"
                  ]
                },
                "description": "Retrieve qosInterfaceTypeRoles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosInterfaceTypeCapabilities",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosInterfaceTypeTable/qosInterfaceTypeEntry/qosInterfaceTypeCapabilities",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosInterfaceTypeTable",
                    "qosInterfaceTypeEntry",
                    "qosInterfaceTypeCapabilities"
                  ]
                },
                "description": "Retrieve qosInterfaceTypeCapabilities from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDiffServMappingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDiffServMappingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDiffServMappingTable"
                  ]
                },
                "description": "Retrieve qosDiffServMappingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDiffServMappingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDiffServMappingTable/qosDiffServMappingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDiffServMappingTable",
                    "qosDiffServMappingEntry"
                  ]
                },
                "description": "Retrieve qosDiffServMappingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDiffServMappingTable/qosDiffServMappingEntry/qosDscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDiffServMappingTable",
                    "qosDiffServMappingEntry",
                    "qosDscp"
                  ]
                },
                "description": "Retrieve qosDscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosMarkedDscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDiffServMappingTable/qosDiffServMappingEntry/qosMarkedDscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDiffServMappingTable",
                    "qosDiffServMappingEntry",
                    "qosMarkedDscp"
                  ]
                },
                "description": "Retrieve qosMarkedDscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosL2Cos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosDiffServMappingTable/qosDiffServMappingEntry/qosL2Cos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosDiffServMappingTable",
                    "qosDiffServMappingEntry",
                    "qosL2Cos"
                  ]
                },
                "description": "Retrieve qosL2Cos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosCosToDscpTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosCosToDscpTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosCosToDscpTable"
                  ]
                },
                "description": "Retrieve qosCosToDscpTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosCosToDscpEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosCosToDscpTable/qosCosToDscpEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosCosToDscpTable",
                    "qosCosToDscpEntry"
                  ]
                },
                "description": "Retrieve qosCosToDscpEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosCosToDscpCos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosCosToDscpTable/qosCosToDscpEntry/qosCosToDscpCos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosCosToDscpTable",
                    "qosCosToDscpEntry",
                    "qosCosToDscpCos"
                  ]
                },
                "description": "Retrieve qosCosToDscpCos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosCosToDscpDscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosCosToDscpTable/qosCosToDscpEntry/qosCosToDscpDscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosCosToDscpTable",
                    "qosCosToDscpEntry",
                    "qosCosToDscpDscp"
                  ]
                },
                "description": "Retrieve qosCosToDscpDscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosUnmatchedPolicyTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosUnmatchedPolicyTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosUnmatchedPolicyTable"
                  ]
                },
                "description": "Retrieve qosUnmatchedPolicyTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosUnmatchedPolicyEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosUnmatchedPolicyTable/qosUnmatchedPolicyEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosUnmatchedPolicyTable",
                    "qosUnmatchedPolicyEntry"
                  ]
                },
                "description": "Retrieve qosUnmatchedPolicyEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosUnmatchedPolicyId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosUnmatchedPolicyTable/qosUnmatchedPolicyEntry/qosUnmatchedPolicyId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosUnmatchedPolicyTable",
                    "qosUnmatchedPolicyEntry",
                    "qosUnmatchedPolicyId"
                  ]
                },
                "description": "Retrieve qosUnmatchedPolicyId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosUnmatchedPolicyRole",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosUnmatchedPolicyTable/qosUnmatchedPolicyEntry/qosUnmatchedPolicyRole",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosUnmatchedPolicyTable",
                    "qosUnmatchedPolicyEntry",
                    "qosUnmatchedPolicyRole"
                  ]
                },
                "description": "Retrieve qosUnmatchedPolicyRole from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosUnmatchedPolicyDirection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosUnmatchedPolicyTable/qosUnmatchedPolicyEntry/qosUnmatchedPolicyDirection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosUnmatchedPolicyTable",
                    "qosUnmatchedPolicyEntry",
                    "qosUnmatchedPolicyDirection"
                  ]
                },
                "description": "Retrieve qosUnmatchedPolicyDirection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosUnmatchedPolicyDscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosUnmatchedPolicyTable/qosUnmatchedPolicyEntry/qosUnmatchedPolicyDscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosUnmatchedPolicyTable",
                    "qosUnmatchedPolicyEntry",
                    "qosUnmatchedPolicyDscp"
                  ]
                },
                "description": "Retrieve qosUnmatchedPolicyDscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosUnmatchedPolicyDscpTrusted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosUnmatchedPolicyTable/qosUnmatchedPolicyEntry/qosUnmatchedPolicyDscpTrusted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosUnmatchedPolicyTable",
                    "qosUnmatchedPolicyEntry",
                    "qosUnmatchedPolicyDscpTrusted"
                  ]
                },
                "description": "Retrieve qosUnmatchedPolicyDscpTrusted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosUnmatchPolMicroFlowPolicerId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosUnmatchedPolicyTable/qosUnmatchedPolicyEntry/qosUnmatchPolMicroFlowPolicerId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosUnmatchedPolicyTable",
                    "qosUnmatchedPolicyEntry",
                    "qosUnmatchPolMicroFlowPolicerId"
                  ]
                },
                "description": "Retrieve qosUnmatchPolMicroFlowPolicerId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosUnmatchedPolicyAggregateId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosUnmatchedPolicyTable/qosUnmatchedPolicyEntry/qosUnmatchedPolicyAggregateId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosUnmatchedPolicyTable",
                    "qosUnmatchedPolicyEntry",
                    "qosUnmatchedPolicyAggregateId"
                  ]
                },
                "description": "Retrieve qosUnmatchedPolicyAggregateId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosPolicerTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosPolicerTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosPolicerTable"
                  ]
                },
                "description": "Retrieve qosPolicerTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosPolicerEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosPolicerTable/qosPolicerEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosPolicerTable",
                    "qosPolicerEntry"
                  ]
                },
                "description": "Retrieve qosPolicerEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosPolicerId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosPolicerTable/qosPolicerEntry/qosPolicerId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosPolicerTable",
                    "qosPolicerEntry",
                    "qosPolicerId"
                  ]
                },
                "description": "Retrieve qosPolicerId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosPolicerRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosPolicerTable/qosPolicerEntry/qosPolicerRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosPolicerTable",
                    "qosPolicerEntry",
                    "qosPolicerRate"
                  ]
                },
                "description": "Retrieve qosPolicerRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosPolicerNormalBurst",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosPolicerTable/qosPolicerEntry/qosPolicerNormalBurst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosPolicerTable",
                    "qosPolicerEntry",
                    "qosPolicerNormalBurst"
                  ]
                },
                "description": "Retrieve qosPolicerNormalBurst from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosPolicerExcessBurst",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosPolicerTable/qosPolicerEntry/qosPolicerExcessBurst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosPolicerTable",
                    "qosPolicerEntry",
                    "qosPolicerExcessBurst"
                  ]
                },
                "description": "Retrieve qosPolicerExcessBurst from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosPolicerAction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosPolicerTable/qosPolicerEntry/qosPolicerAction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosPolicerTable",
                    "qosPolicerEntry",
                    "qosPolicerAction"
                  ]
                },
                "description": "Retrieve qosPolicerAction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosAggregateTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosAggregateTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosAggregateTable"
                  ]
                },
                "description": "Retrieve qosAggregateTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosAggregateEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosAggregateTable/qosAggregateEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosAggregateTable",
                    "qosAggregateEntry"
                  ]
                },
                "description": "Retrieve qosAggregateEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosAggregateId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosAggregateTable/qosAggregateEntry/qosAggregateId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosAggregateTable",
                    "qosAggregateEntry",
                    "qosAggregateId"
                  ]
                },
                "description": "Retrieve qosAggregateId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosAggregatePolicerId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosAggregateTable/qosAggregateEntry/qosAggregatePolicerId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosAggregateTable",
                    "qosAggregateEntry",
                    "qosAggregatePolicerId"
                  ]
                },
                "description": "Retrieve qosAggregatePolicerId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosMacClassificationTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosMacClassificationTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosMacClassificationTable"
                  ]
                },
                "description": "Retrieve qosMacClassificationTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosMacClassificationEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosMacClassificationTable/qosMacClassificationEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosMacClassificationTable",
                    "qosMacClassificationEntry"
                  ]
                },
                "description": "Retrieve qosMacClassificationEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosMacClassificationId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosMacClassificationTable/qosMacClassificationEntry/qosMacClassificationId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosMacClassificationTable",
                    "qosMacClassificationEntry",
                    "qosMacClassificationId"
                  ]
                },
                "description": "Retrieve qosMacClassificationId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDstMacVlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosMacClassificationTable/qosMacClassificationEntry/qosDstMacVlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosMacClassificationTable",
                    "qosMacClassificationEntry",
                    "qosDstMacVlan"
                  ]
                },
                "description": "Retrieve qosDstMacVlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDstMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosMacClassificationTable/qosMacClassificationEntry/qosDstMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosMacClassificationTable",
                    "qosMacClassificationEntry",
                    "qosDstMacAddress"
                  ]
                },
                "description": "Retrieve qosDstMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosDstMacCos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosMacClassificationTable/qosMacClassificationEntry/qosDstMacCos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosMacClassificationTable",
                    "qosMacClassificationEntry",
                    "qosDstMacCos"
                  ]
                },
                "description": "Retrieve qosDstMacCos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAceTable"
                  ]
                },
                "description": "Retrieve qosIpAceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAceTable/qosIpAceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAceTable",
                    "qosIpAceEntry"
                  ]
                },
                "description": "Retrieve qosIpAceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAceTable/qosIpAceEntry/qosIpAceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAceTable",
                    "qosIpAceEntry",
                    "qosIpAceId"
                  ]
                },
                "description": "Retrieve qosIpAceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAceDstAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAceTable/qosIpAceEntry/qosIpAceDstAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAceTable",
                    "qosIpAceEntry",
                    "qosIpAceDstAddr"
                  ]
                },
                "description": "Retrieve qosIpAceDstAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAceDstAddrMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAceTable/qosIpAceEntry/qosIpAceDstAddrMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAceTable",
                    "qosIpAceEntry",
                    "qosIpAceDstAddrMask"
                  ]
                },
                "description": "Retrieve qosIpAceDstAddrMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAceSrcAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAceTable/qosIpAceEntry/qosIpAceSrcAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAceTable",
                    "qosIpAceEntry",
                    "qosIpAceSrcAddr"
                  ]
                },
                "description": "Retrieve qosIpAceSrcAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAceSrcAddrMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAceTable/qosIpAceEntry/qosIpAceSrcAddrMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAceTable",
                    "qosIpAceEntry",
                    "qosIpAceSrcAddrMask"
                  ]
                },
                "description": "Retrieve qosIpAceSrcAddrMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAceDscpMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAceTable/qosIpAceEntry/qosIpAceDscpMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAceTable",
                    "qosIpAceEntry",
                    "qosIpAceDscpMin"
                  ]
                },
                "description": "Retrieve qosIpAceDscpMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAceDscpMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAceTable/qosIpAceEntry/qosIpAceDscpMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAceTable",
                    "qosIpAceEntry",
                    "qosIpAceDscpMax"
                  ]
                },
                "description": "Retrieve qosIpAceDscpMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAceProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAceTable/qosIpAceEntry/qosIpAceProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAceTable",
                    "qosIpAceEntry",
                    "qosIpAceProtocol"
                  ]
                },
                "description": "Retrieve qosIpAceProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAceDstL4PortMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAceTable/qosIpAceEntry/qosIpAceDstL4PortMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAceTable",
                    "qosIpAceEntry",
                    "qosIpAceDstL4PortMin"
                  ]
                },
                "description": "Retrieve qosIpAceDstL4PortMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAceDstL4PortMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAceTable/qosIpAceEntry/qosIpAceDstL4PortMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAceTable",
                    "qosIpAceEntry",
                    "qosIpAceDstL4PortMax"
                  ]
                },
                "description": "Retrieve qosIpAceDstL4PortMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAceSrcL4PortMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAceTable/qosIpAceEntry/qosIpAceSrcL4PortMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAceTable",
                    "qosIpAceEntry",
                    "qosIpAceSrcL4PortMin"
                  ]
                },
                "description": "Retrieve qosIpAceSrcL4PortMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAceSrcL4PortMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAceTable/qosIpAceEntry/qosIpAceSrcL4PortMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAceTable",
                    "qosIpAceEntry",
                    "qosIpAceSrcL4PortMax"
                  ]
                },
                "description": "Retrieve qosIpAceSrcL4PortMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAcePermit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAceTable/qosIpAceEntry/qosIpAcePermit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAceTable",
                    "qosIpAceEntry",
                    "qosIpAcePermit"
                  ]
                },
                "description": "Retrieve qosIpAcePermit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAclDefinitionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclDefinitionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclDefinitionTable"
                  ]
                },
                "description": "Retrieve qosIpAclDefinitionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAclDefinitionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclDefinitionTable/qosIpAclDefinitionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclDefinitionTable",
                    "qosIpAclDefinitionEntry"
                  ]
                },
                "description": "Retrieve qosIpAclDefinitionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAclDefinitionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclDefinitionTable/qosIpAclDefinitionEntry/qosIpAclDefinitionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclDefinitionTable",
                    "qosIpAclDefinitionEntry",
                    "qosIpAclDefinitionId"
                  ]
                },
                "description": "Retrieve qosIpAclDefinitionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAclId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclDefinitionTable/qosIpAclDefinitionEntry/qosIpAclId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclDefinitionTable",
                    "qosIpAclDefinitionEntry",
                    "qosIpAclId"
                  ]
                },
                "description": "Retrieve qosIpAclId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAceOrder",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclDefinitionTable/qosIpAclDefinitionEntry/qosIpAceOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclDefinitionTable",
                    "qosIpAclDefinitionEntry",
                    "qosIpAceOrder"
                  ]
                },
                "description": "Retrieve qosIpAceOrder from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAclDefAceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclDefinitionTable/qosIpAclDefinitionEntry/qosIpAclDefAceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclDefinitionTable",
                    "qosIpAclDefinitionEntry",
                    "qosIpAclDefAceId"
                  ]
                },
                "description": "Retrieve qosIpAclDefAceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAclActionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclActionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclActionTable"
                  ]
                },
                "description": "Retrieve qosIpAclActionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAclActionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclActionTable/qosIpAclActionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclActionTable",
                    "qosIpAclActionEntry"
                  ]
                },
                "description": "Retrieve qosIpAclActionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAclActionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclActionTable/qosIpAclActionEntry/qosIpAclActionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclActionTable",
                    "qosIpAclActionEntry",
                    "qosIpAclActionId"
                  ]
                },
                "description": "Retrieve qosIpAclActionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAclActAclId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclActionTable/qosIpAclActionEntry/qosIpAclActAclId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclActionTable",
                    "qosIpAclActionEntry",
                    "qosIpAclActAclId"
                  ]
                },
                "description": "Retrieve qosIpAclActAclId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAclInterfaceRoles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclActionTable/qosIpAclActionEntry/qosIpAclInterfaceRoles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclActionTable",
                    "qosIpAclActionEntry",
                    "qosIpAclInterfaceRoles"
                  ]
                },
                "description": "Retrieve qosIpAclInterfaceRoles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAclInterfaceDirection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclActionTable/qosIpAclActionEntry/qosIpAclInterfaceDirection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclActionTable",
                    "qosIpAclActionEntry",
                    "qosIpAclInterfaceDirection"
                  ]
                },
                "description": "Retrieve qosIpAclInterfaceDirection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAclOrder",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclActionTable/qosIpAclActionEntry/qosIpAclOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclActionTable",
                    "qosIpAclActionEntry",
                    "qosIpAclOrder"
                  ]
                },
                "description": "Retrieve qosIpAclOrder from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAclDscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclActionTable/qosIpAclActionEntry/qosIpAclDscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclActionTable",
                    "qosIpAclActionEntry",
                    "qosIpAclDscp"
                  ]
                },
                "description": "Retrieve qosIpAclDscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAclDscpTrusted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclActionTable/qosIpAclActionEntry/qosIpAclDscpTrusted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclActionTable",
                    "qosIpAclActionEntry",
                    "qosIpAclDscpTrusted"
                  ]
                },
                "description": "Retrieve qosIpAclDscpTrusted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAclMicroFlowPolicerId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclActionTable/qosIpAclActionEntry/qosIpAclMicroFlowPolicerId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclActionTable",
                    "qosIpAclActionEntry",
                    "qosIpAclMicroFlowPolicerId"
                  ]
                },
                "description": "Retrieve qosIpAclMicroFlowPolicerId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIpAclAggregateId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIpAclActionTable/qosIpAclActionEntry/qosIpAclAggregateId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIpAclActionTable",
                    "qosIpAclActionEntry",
                    "qosIpAclAggregateId"
                  ]
                },
                "description": "Retrieve qosIpAclAggregateId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfSchedulingPreferencesTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfSchedulingPreferencesTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfSchedulingPreferencesTable"
                  ]
                },
                "description": "Retrieve qosIfSchedulingPreferencesTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfSchedulingPreferenceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfSchedulingPreferencesTable/qosIfSchedulingPreferenceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfSchedulingPreferencesTable",
                    "qosIfSchedulingPreferenceEntry"
                  ]
                },
                "description": "Retrieve qosIfSchedulingPreferenceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfSchedulingPreferenceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfSchedulingPreferencesTable/qosIfSchedulingPreferenceEntry/qosIfSchedulingPreferenceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfSchedulingPreferencesTable",
                    "qosIfSchedulingPreferenceEntry",
                    "qosIfSchedulingPreferenceId"
                  ]
                },
                "description": "Retrieve qosIfSchedulingPreferenceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfSchedulingRoles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfSchedulingPreferencesTable/qosIfSchedulingPreferenceEntry/qosIfSchedulingRoles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfSchedulingPreferencesTable",
                    "qosIfSchedulingPreferenceEntry",
                    "qosIfSchedulingRoles"
                  ]
                },
                "description": "Retrieve qosIfSchedulingRoles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfSchedulingPreference",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfSchedulingPreferencesTable/qosIfSchedulingPreferenceEntry/qosIfSchedulingPreference",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfSchedulingPreferencesTable",
                    "qosIfSchedulingPreferenceEntry",
                    "qosIfSchedulingPreference"
                  ]
                },
                "description": "Retrieve qosIfSchedulingPreference from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfSchedulingDiscipline",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfSchedulingPreferencesTable/qosIfSchedulingPreferenceEntry/qosIfSchedulingDiscipline",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfSchedulingPreferencesTable",
                    "qosIfSchedulingPreferenceEntry",
                    "qosIfSchedulingDiscipline"
                  ]
                },
                "description": "Retrieve qosIfSchedulingDiscipline from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfSchedulingQueueType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfSchedulingPreferencesTable/qosIfSchedulingPreferenceEntry/qosIfSchedulingQueueType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfSchedulingPreferencesTable",
                    "qosIfSchedulingPreferenceEntry",
                    "qosIfSchedulingQueueType"
                  ]
                },
                "description": "Retrieve qosIfSchedulingQueueType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfDropPreferenceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfDropPreferenceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfDropPreferenceTable"
                  ]
                },
                "description": "Retrieve qosIfDropPreferenceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfDropPreferenceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfDropPreferenceTable/qosIfDropPreferenceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfDropPreferenceTable",
                    "qosIfDropPreferenceEntry"
                  ]
                },
                "description": "Retrieve qosIfDropPreferenceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfDropPreferenceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfDropPreferenceTable/qosIfDropPreferenceEntry/qosIfDropPreferenceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfDropPreferenceTable",
                    "qosIfDropPreferenceEntry",
                    "qosIfDropPreferenceId"
                  ]
                },
                "description": "Retrieve qosIfDropPreferenceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfDropRoles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfDropPreferenceTable/qosIfDropPreferenceEntry/qosIfDropRoles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfDropPreferenceTable",
                    "qosIfDropPreferenceEntry",
                    "qosIfDropRoles"
                  ]
                },
                "description": "Retrieve qosIfDropRoles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfDropPreference",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfDropPreferenceTable/qosIfDropPreferenceEntry/qosIfDropPreference",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfDropPreferenceTable",
                    "qosIfDropPreferenceEntry",
                    "qosIfDropPreference"
                  ]
                },
                "description": "Retrieve qosIfDropPreference from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfDropDiscipline",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfDropPreferenceTable/qosIfDropPreferenceEntry/qosIfDropDiscipline",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfDropPreferenceTable",
                    "qosIfDropPreferenceEntry",
                    "qosIfDropDiscipline"
                  ]
                },
                "description": "Retrieve qosIfDropDiscipline from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfDscpAssignmentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfDscpAssignmentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfDscpAssignmentTable"
                  ]
                },
                "description": "Retrieve qosIfDscpAssignmentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfDscpAssignmentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfDscpAssignmentTable/qosIfDscpAssignmentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfDscpAssignmentTable",
                    "qosIfDscpAssignmentEntry"
                  ]
                },
                "description": "Retrieve qosIfDscpAssignmentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfDscpAssignmentId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfDscpAssignmentTable/qosIfDscpAssignmentEntry/qosIfDscpAssignmentId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfDscpAssignmentTable",
                    "qosIfDscpAssignmentEntry",
                    "qosIfDscpAssignmentId"
                  ]
                },
                "description": "Retrieve qosIfDscpAssignmentId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfDscpRoles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfDscpAssignmentTable/qosIfDscpAssignmentEntry/qosIfDscpRoles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfDscpAssignmentTable",
                    "qosIfDscpAssignmentEntry",
                    "qosIfDscpRoles"
                  ]
                },
                "description": "Retrieve qosIfDscpRoles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfQueueType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfDscpAssignmentTable/qosIfDscpAssignmentEntry/qosIfQueueType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfDscpAssignmentTable",
                    "qosIfDscpAssignmentEntry",
                    "qosIfQueueType"
                  ]
                },
                "description": "Retrieve qosIfQueueType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfDscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfDscpAssignmentTable/qosIfDscpAssignmentEntry/qosIfDscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfDscpAssignmentTable",
                    "qosIfDscpAssignmentEntry",
                    "qosIfDscp"
                  ]
                },
                "description": "Retrieve qosIfDscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfQueue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfDscpAssignmentTable/qosIfDscpAssignmentEntry/qosIfQueue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfDscpAssignmentTable",
                    "qosIfDscpAssignmentEntry",
                    "qosIfQueue"
                  ]
                },
                "description": "Retrieve qosIfQueue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfThresholdSet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfDscpAssignmentTable/qosIfDscpAssignmentEntry/qosIfThresholdSet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfDscpAssignmentTable",
                    "qosIfDscpAssignmentEntry",
                    "qosIfThresholdSet"
                  ]
                },
                "description": "Retrieve qosIfThresholdSet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfRedTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfRedTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfRedTable"
                  ]
                },
                "description": "Retrieve qosIfRedTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfRedEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfRedTable/qosIfRedEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfRedTable",
                    "qosIfRedEntry"
                  ]
                },
                "description": "Retrieve qosIfRedEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfRedId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfRedTable/qosIfRedEntry/qosIfRedId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfRedTable",
                    "qosIfRedEntry",
                    "qosIfRedId"
                  ]
                },
                "description": "Retrieve qosIfRedId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfRedRoles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfRedTable/qosIfRedEntry/qosIfRedRoles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfRedTable",
                    "qosIfRedEntry",
                    "qosIfRedRoles"
                  ]
                },
                "description": "Retrieve qosIfRedRoles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfRedNumThresholdSets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfRedTable/qosIfRedEntry/qosIfRedNumThresholdSets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfRedTable",
                    "qosIfRedEntry",
                    "qosIfRedNumThresholdSets"
                  ]
                },
                "description": "Retrieve qosIfRedNumThresholdSets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfRedThresholdSet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfRedTable/qosIfRedEntry/qosIfRedThresholdSet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfRedTable",
                    "qosIfRedEntry",
                    "qosIfRedThresholdSet"
                  ]
                },
                "description": "Retrieve qosIfRedThresholdSet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfRedThresholdSetLower",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfRedTable/qosIfRedEntry/qosIfRedThresholdSetLower",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfRedTable",
                    "qosIfRedEntry",
                    "qosIfRedThresholdSetLower"
                  ]
                },
                "description": "Retrieve qosIfRedThresholdSetLower from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfRedThresholdSetUpper",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfRedTable/qosIfRedEntry/qosIfRedThresholdSetUpper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfRedTable",
                    "qosIfRedEntry",
                    "qosIfRedThresholdSetUpper"
                  ]
                },
                "description": "Retrieve qosIfRedThresholdSetUpper from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfTailDropTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfTailDropTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfTailDropTable"
                  ]
                },
                "description": "Retrieve qosIfTailDropTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfTailDropEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfTailDropTable/qosIfTailDropEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfTailDropTable",
                    "qosIfTailDropEntry"
                  ]
                },
                "description": "Retrieve qosIfTailDropEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfTailDropId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfTailDropTable/qosIfTailDropEntry/qosIfTailDropId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfTailDropTable",
                    "qosIfTailDropEntry",
                    "qosIfTailDropId"
                  ]
                },
                "description": "Retrieve qosIfTailDropId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfTailDropRoles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfTailDropTable/qosIfTailDropEntry/qosIfTailDropRoles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfTailDropTable",
                    "qosIfTailDropEntry",
                    "qosIfTailDropRoles"
                  ]
                },
                "description": "Retrieve qosIfTailDropRoles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfTailDropNumThresholdSets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfTailDropTable/qosIfTailDropEntry/qosIfTailDropNumThresholdSets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfTailDropTable",
                    "qosIfTailDropEntry",
                    "qosIfTailDropNumThresholdSets"
                  ]
                },
                "description": "Retrieve qosIfTailDropNumThresholdSets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfTailDropThresholdSet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfTailDropTable/qosIfTailDropEntry/qosIfTailDropThresholdSet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfTailDropTable",
                    "qosIfTailDropEntry",
                    "qosIfTailDropThresholdSet"
                  ]
                },
                "description": "Retrieve qosIfTailDropThresholdSet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfTailDropThresholdSetValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfTailDropTable/qosIfTailDropEntry/qosIfTailDropThresholdSetValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfTailDropTable",
                    "qosIfTailDropEntry",
                    "qosIfTailDropThresholdSetValue"
                  ]
                },
                "description": "Retrieve qosIfTailDropThresholdSetValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfWeightsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfWeightsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfWeightsTable"
                  ]
                },
                "description": "Retrieve qosIfWeightsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfWeightsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfWeightsTable/qosIfWeightsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfWeightsTable",
                    "qosIfWeightsEntry"
                  ]
                },
                "description": "Retrieve qosIfWeightsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfWeightsId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfWeightsTable/qosIfWeightsEntry/qosIfWeightsId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfWeightsTable",
                    "qosIfWeightsEntry",
                    "qosIfWeightsId"
                  ]
                },
                "description": "Retrieve qosIfWeightsId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfWeightsRoles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfWeightsTable/qosIfWeightsEntry/qosIfWeightsRoles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfWeightsTable",
                    "qosIfWeightsEntry",
                    "qosIfWeightsRoles"
                  ]
                },
                "description": "Retrieve qosIfWeightsRoles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfWeightsNumQueues",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfWeightsTable/qosIfWeightsEntry/qosIfWeightsNumQueues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfWeightsTable",
                    "qosIfWeightsEntry",
                    "qosIfWeightsNumQueues"
                  ]
                },
                "description": "Retrieve qosIfWeightsNumQueues from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfWeightsQueue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfWeightsTable/qosIfWeightsEntry/qosIfWeightsQueue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfWeightsTable",
                    "qosIfWeightsEntry",
                    "qosIfWeightsQueue"
                  ]
                },
                "description": "Retrieve qosIfWeightsQueue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfWeightsDrainSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfWeightsTable/qosIfWeightsEntry/qosIfWeightsDrainSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfWeightsTable",
                    "qosIfWeightsEntry",
                    "qosIfWeightsDrainSize"
                  ]
                },
                "description": "Retrieve qosIfWeightsDrainSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qosIfWeightsQueueSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB/qosIfWeightsTable/qosIfWeightsEntry/qosIfWeightsQueueSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-QOS-PIB-MIB:CISCO-QOS-PIB-MIB",
                    "qosIfWeightsTable",
                    "qosIfWeightsEntry",
                    "qosIfWeightsQueueSize"
                  ]
                },
                "description": "Retrieve qosIfWeightsQueueSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-RADIUS-EXT-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-RADIUS-EXT-MIB\n\nMIB data from `CISCO-RADIUS-EXT-MIB` module.\n\n**Root containers:** 1 (CISCO-RADIUS-EXT-MIB)\n**Paths:** 39 | **Descendants:** 38\n\nAll endpoints are read-only (GET).\n\nEndpoints: 39 | Operations: 39",
          "item": [
            {
              "name": "GET Get CISCO-RADIUS-EXT-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB"
                  ]
                },
                "description": "Retrieve CISCO-RADIUS-EXT-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creClientGlobal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientGlobal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientGlobal"
                  ]
                },
                "description": "Retrieve creClientGlobal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creClientTotalMaxInQLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientGlobal/creClientTotalMaxInQLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientGlobal",
                    "creClientTotalMaxInQLength"
                  ]
                },
                "description": "Retrieve creClientTotalMaxInQLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creClientTotalMaxWaitQLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientGlobal/creClientTotalMaxWaitQLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientGlobal",
                    "creClientTotalMaxWaitQLength"
                  ]
                },
                "description": "Retrieve creClientTotalMaxWaitQLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creClientTotalMaxDoneQLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientGlobal/creClientTotalMaxDoneQLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientGlobal",
                    "creClientTotalMaxDoneQLength"
                  ]
                },
                "description": "Retrieve creClientTotalMaxDoneQLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creClientTotalAccessRejects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientGlobal/creClientTotalAccessRejects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientGlobal",
                    "creClientTotalAccessRejects"
                  ]
                },
                "description": "Retrieve creClientTotalAccessRejects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creClientTotalAverageResponseDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientGlobal/creClientTotalAverageResponseDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientGlobal",
                    "creClientTotalAverageResponseDelay"
                  ]
                },
                "description": "Retrieve creClientTotalAverageResponseDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creClientSourcePortRangeStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientGlobal/creClientSourcePortRangeStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientGlobal",
                    "creClientSourcePortRangeStart"
                  ]
                },
                "description": "Retrieve creClientSourcePortRangeStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creClientSourcePortRangeEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientGlobal/creClientSourcePortRangeEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientGlobal",
                    "creClientSourcePortRangeEnd"
                  ]
                },
                "description": "Retrieve creClientSourcePortRangeEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creClientLastUsedSourcePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientGlobal/creClientLastUsedSourcePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientGlobal",
                    "creClientLastUsedSourcePort"
                  ]
                },
                "description": "Retrieve creClientLastUsedSourcePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creClientLastUsedSourceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientGlobal/creClientLastUsedSourceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientGlobal",
                    "creClientLastUsedSourceId"
                  ]
                },
                "description": "Retrieve creClientLastUsedSourceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creClientAuthentication",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAuthentication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAuthentication"
                  ]
                },
                "description": "Retrieve creClientAuthentication from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAuthClientBadAuthenticators",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAuthentication/creAuthClientBadAuthenticators",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAuthentication",
                    "creAuthClientBadAuthenticators"
                  ]
                },
                "description": "Retrieve creAuthClientBadAuthenticators from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAuthClientUnknownResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAuthentication/creAuthClientUnknownResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAuthentication",
                    "creAuthClientUnknownResponses"
                  ]
                },
                "description": "Retrieve creAuthClientUnknownResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAuthClientTotalPacketsWithResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAuthentication/creAuthClientTotalPacketsWithResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAuthentication",
                    "creAuthClientTotalPacketsWithResponses"
                  ]
                },
                "description": "Retrieve creAuthClientTotalPacketsWithResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAuthClientBufferAllocFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAuthentication/creAuthClientBufferAllocFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAuthentication",
                    "creAuthClientBufferAllocFailures"
                  ]
                },
                "description": "Retrieve creAuthClientBufferAllocFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAuthClientTotalResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAuthentication/creAuthClientTotalResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAuthentication",
                    "creAuthClientTotalResponses"
                  ]
                },
                "description": "Retrieve creAuthClientTotalResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAuthClientTotalPacketsWithoutResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAuthentication/creAuthClientTotalPacketsWithoutResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAuthentication",
                    "creAuthClientTotalPacketsWithoutResponses"
                  ]
                },
                "description": "Retrieve creAuthClientTotalPacketsWithoutResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAuthClientAverageResponseDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAuthentication/creAuthClientAverageResponseDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAuthentication",
                    "creAuthClientAverageResponseDelay"
                  ]
                },
                "description": "Retrieve creAuthClientAverageResponseDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAuthClientMaxResponseDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAuthentication/creAuthClientMaxResponseDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAuthentication",
                    "creAuthClientMaxResponseDelay"
                  ]
                },
                "description": "Retrieve creAuthClientMaxResponseDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAuthClientMaxBufferSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAuthentication/creAuthClientMaxBufferSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAuthentication",
                    "creAuthClientMaxBufferSize"
                  ]
                },
                "description": "Retrieve creAuthClientMaxBufferSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAuthClientTimeouts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAuthentication/creAuthClientTimeouts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAuthentication",
                    "creAuthClientTimeouts"
                  ]
                },
                "description": "Retrieve creAuthClientTimeouts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAuthClientDupIDs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAuthentication/creAuthClientDupIDs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAuthentication",
                    "creAuthClientDupIDs"
                  ]
                },
                "description": "Retrieve creAuthClientDupIDs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAuthClientMalformedResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAuthentication/creAuthClientMalformedResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAuthentication",
                    "creAuthClientMalformedResponses"
                  ]
                },
                "description": "Retrieve creAuthClientMalformedResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAuthClientLastUsedSourceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAuthentication/creAuthClientLastUsedSourceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAuthentication",
                    "creAuthClientLastUsedSourceId"
                  ]
                },
                "description": "Retrieve creAuthClientLastUsedSourceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creClientAccounting",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAccounting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAccounting"
                  ]
                },
                "description": "Retrieve creClientAccounting from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAcctClientBadAuthenticators",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAccounting/creAcctClientBadAuthenticators",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAccounting",
                    "creAcctClientBadAuthenticators"
                  ]
                },
                "description": "Retrieve creAcctClientBadAuthenticators from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAcctClientUnknownResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAccounting/creAcctClientUnknownResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAccounting",
                    "creAcctClientUnknownResponses"
                  ]
                },
                "description": "Retrieve creAcctClientUnknownResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAcctClientTotalPacketsWithResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAccounting/creAcctClientTotalPacketsWithResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAccounting",
                    "creAcctClientTotalPacketsWithResponses"
                  ]
                },
                "description": "Retrieve creAcctClientTotalPacketsWithResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAcctClientBufferAllocFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAccounting/creAcctClientBufferAllocFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAccounting",
                    "creAcctClientBufferAllocFailures"
                  ]
                },
                "description": "Retrieve creAcctClientBufferAllocFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAcctClientTotalResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAccounting/creAcctClientTotalResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAccounting",
                    "creAcctClientTotalResponses"
                  ]
                },
                "description": "Retrieve creAcctClientTotalResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAcctClientTotalPacketsWithoutResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAccounting/creAcctClientTotalPacketsWithoutResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAccounting",
                    "creAcctClientTotalPacketsWithoutResponses"
                  ]
                },
                "description": "Retrieve creAcctClientTotalPacketsWithoutResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAcctClientAverageResponseDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAccounting/creAcctClientAverageResponseDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAccounting",
                    "creAcctClientAverageResponseDelay"
                  ]
                },
                "description": "Retrieve creAcctClientAverageResponseDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAcctClientMaxResponseDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAccounting/creAcctClientMaxResponseDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAccounting",
                    "creAcctClientMaxResponseDelay"
                  ]
                },
                "description": "Retrieve creAcctClientMaxResponseDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAcctClientMaxBufferSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAccounting/creAcctClientMaxBufferSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAccounting",
                    "creAcctClientMaxBufferSize"
                  ]
                },
                "description": "Retrieve creAcctClientMaxBufferSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAcctClientTimeouts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAccounting/creAcctClientTimeouts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAccounting",
                    "creAcctClientTimeouts"
                  ]
                },
                "description": "Retrieve creAcctClientTimeouts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAcctClientDupIDs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAccounting/creAcctClientDupIDs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAccounting",
                    "creAcctClientDupIDs"
                  ]
                },
                "description": "Retrieve creAcctClientDupIDs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAcctClientMalformedResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAccounting/creAcctClientMalformedResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAccounting",
                    "creAcctClientMalformedResponses"
                  ]
                },
                "description": "Retrieve creAcctClientMalformedResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get creAcctClientLastUsedSourceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB/creClientAccounting/creAcctClientLastUsedSourceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RADIUS-EXT-MIB:CISCO-RADIUS-EXT-MIB",
                    "creClientAccounting",
                    "creAcctClientLastUsedSourceId"
                  ]
                },
                "description": "Retrieve creAcctClientLastUsedSourceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-RF-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-RF-MIB\n\nMIB data from `CISCO-RF-MIB` module.\n\n**Root containers:** 1 (CISCO-RF-MIB)\n**Paths:** 67 | **Descendants:** 79\n\nAll endpoints are read-only (GET).\n\nEndpoints: 67 | Operations: 67",
          "item": [
            {
              "name": "GET Get CISCO-RF-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB"
                  ]
                },
                "description": "Retrieve CISCO-RF-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatus"
                  ]
                },
                "description": "Retrieve cRFStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusUnitId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatus/cRFStatusUnitId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatus",
                    "cRFStatusUnitId"
                  ]
                },
                "description": "Retrieve cRFStatusUnitId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusUnitState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatus/cRFStatusUnitState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatus",
                    "cRFStatusUnitState"
                  ]
                },
                "description": "Retrieve cRFStatusUnitState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusPeerUnitId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatus/cRFStatusPeerUnitId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatus",
                    "cRFStatusPeerUnitId"
                  ]
                },
                "description": "Retrieve cRFStatusPeerUnitId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusPeerUnitState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatus/cRFStatusPeerUnitState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatus",
                    "cRFStatusPeerUnitState"
                  ]
                },
                "description": "Retrieve cRFStatusPeerUnitState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusPrimaryMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatus/cRFStatusPrimaryMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatus",
                    "cRFStatusPrimaryMode"
                  ]
                },
                "description": "Retrieve cRFStatusPrimaryMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusDuplexMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatus/cRFStatusDuplexMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatus",
                    "cRFStatusDuplexMode"
                  ]
                },
                "description": "Retrieve cRFStatusDuplexMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusManualSwactInhibit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatus/cRFStatusManualSwactInhibit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatus",
                    "cRFStatusManualSwactInhibit"
                  ]
                },
                "description": "Retrieve cRFStatusManualSwactInhibit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusLastSwactReasonCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatus/cRFStatusLastSwactReasonCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatus",
                    "cRFStatusLastSwactReasonCode"
                  ]
                },
                "description": "Retrieve cRFStatusLastSwactReasonCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusFailoverTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatus/cRFStatusFailoverTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatus",
                    "cRFStatusFailoverTime"
                  ]
                },
                "description": "Retrieve cRFStatusFailoverTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusPeerStandByEntryTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatus/cRFStatusPeerStandByEntryTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatus",
                    "cRFStatusPeerStandByEntryTime"
                  ]
                },
                "description": "Retrieve cRFStatusPeerStandByEntryTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusIssuStateRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatus/cRFStatusIssuStateRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatus",
                    "cRFStatusIssuStateRev1"
                  ]
                },
                "description": "Retrieve cRFStatusIssuStateRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusIssuFromVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatus/cRFStatusIssuFromVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatus",
                    "cRFStatusIssuFromVersion"
                  ]
                },
                "description": "Retrieve cRFStatusIssuFromVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusIssuToVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatus/cRFStatusIssuToVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatus",
                    "cRFStatusIssuToVersion"
                  ]
                },
                "description": "Retrieve cRFStatusIssuToVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFCfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFCfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFCfg"
                  ]
                },
                "description": "Retrieve cRFCfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFCfgKeepaliveThresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFCfg/cRFCfgKeepaliveThresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFCfg",
                    "cRFCfgKeepaliveThresh"
                  ]
                },
                "description": "Retrieve cRFCfgKeepaliveThresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFCfgKeepaliveThreshMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFCfg/cRFCfgKeepaliveThreshMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFCfg",
                    "cRFCfgKeepaliveThreshMin"
                  ]
                },
                "description": "Retrieve cRFCfgKeepaliveThreshMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFCfgKeepaliveThreshMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFCfg/cRFCfgKeepaliveThreshMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFCfg",
                    "cRFCfgKeepaliveThreshMax"
                  ]
                },
                "description": "Retrieve cRFCfgKeepaliveThreshMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFCfgKeepaliveTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFCfg/cRFCfgKeepaliveTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFCfg",
                    "cRFCfgKeepaliveTimer"
                  ]
                },
                "description": "Retrieve cRFCfgKeepaliveTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFCfgKeepaliveTimerMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFCfg/cRFCfgKeepaliveTimerMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFCfg",
                    "cRFCfgKeepaliveTimerMin"
                  ]
                },
                "description": "Retrieve cRFCfgKeepaliveTimerMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFCfgKeepaliveTimerMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFCfg/cRFCfgKeepaliveTimerMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFCfg",
                    "cRFCfgKeepaliveTimerMax"
                  ]
                },
                "description": "Retrieve cRFCfgKeepaliveTimerMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFCfgNotifTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFCfg/cRFCfgNotifTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFCfg",
                    "cRFCfgNotifTimer"
                  ]
                },
                "description": "Retrieve cRFCfgNotifTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFCfgNotifTimerMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFCfg/cRFCfgNotifTimerMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFCfg",
                    "cRFCfgNotifTimerMin"
                  ]
                },
                "description": "Retrieve cRFCfgNotifTimerMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFCfgNotifTimerMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFCfg/cRFCfgNotifTimerMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFCfg",
                    "cRFCfgNotifTimerMax"
                  ]
                },
                "description": "Retrieve cRFCfgNotifTimerMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFCfgAdminAction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFCfg/cRFCfgAdminAction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFCfg",
                    "cRFCfgAdminAction"
                  ]
                },
                "description": "Retrieve cRFCfgAdminAction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFCfgNotifsEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFCfg/cRFCfgNotifsEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFCfg",
                    "cRFCfgNotifsEnabled"
                  ]
                },
                "description": "Retrieve cRFCfgNotifsEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFCfgMaintenanceMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFCfg/cRFCfgMaintenanceMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFCfg",
                    "cRFCfgMaintenanceMode"
                  ]
                },
                "description": "Retrieve cRFCfgMaintenanceMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFCfgRedundancyMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFCfg/cRFCfgRedundancyMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFCfg",
                    "cRFCfgRedundancyMode"
                  ]
                },
                "description": "Retrieve cRFCfgRedundancyMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFCfgRedundancyModeDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFCfg/cRFCfgRedundancyModeDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFCfg",
                    "cRFCfgRedundancyModeDescr"
                  ]
                },
                "description": "Retrieve cRFCfgRedundancyModeDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFCfgRedundancyOperMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFCfg/cRFCfgRedundancyOperMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFCfg",
                    "cRFCfgRedundancyOperMode"
                  ]
                },
                "description": "Retrieve cRFCfgRedundancyOperMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFHistory",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFHistory",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFHistory"
                  ]
                },
                "description": "Retrieve cRFHistory from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFHistoryTableMaxLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFHistory/cRFHistoryTableMaxLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFHistory",
                    "cRFHistoryTableMaxLength"
                  ]
                },
                "description": "Retrieve cRFHistoryTableMaxLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFHistoryColdStarts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFHistory/cRFHistoryColdStarts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFHistory",
                    "cRFHistoryColdStarts"
                  ]
                },
                "description": "Retrieve cRFHistoryColdStarts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFHistoryStandByAvailTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFHistory/cRFHistoryStandByAvailTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFHistory",
                    "cRFHistoryStandByAvailTime"
                  ]
                },
                "description": "Retrieve cRFHistoryStandByAvailTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusRFModeCapsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFModeCapsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFModeCapsTable"
                  ]
                },
                "description": "Retrieve cRFStatusRFModeCapsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusRFModeCapsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFModeCapsTable/cRFStatusRFModeCapsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFModeCapsTable",
                    "cRFStatusRFModeCapsEntry"
                  ]
                },
                "description": "Retrieve cRFStatusRFModeCapsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusRFModeCapsMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFModeCapsTable/cRFStatusRFModeCapsEntry/cRFStatusRFModeCapsMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFModeCapsTable",
                    "cRFStatusRFModeCapsEntry",
                    "cRFStatusRFModeCapsMode"
                  ]
                },
                "description": "Retrieve cRFStatusRFModeCapsMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusRFModeCapsModeDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFModeCapsTable/cRFStatusRFModeCapsEntry/cRFStatusRFModeCapsModeDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFModeCapsTable",
                    "cRFStatusRFModeCapsEntry",
                    "cRFStatusRFModeCapsModeDescr"
                  ]
                },
                "description": "Retrieve cRFStatusRFModeCapsModeDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFHistorySwitchOverTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFHistorySwitchOverTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFHistorySwitchOverTable"
                  ]
                },
                "description": "Retrieve cRFHistorySwitchOverTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFHistorySwitchOverEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFHistorySwitchOverTable/cRFHistorySwitchOverEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFHistorySwitchOverTable",
                    "cRFHistorySwitchOverEntry"
                  ]
                },
                "description": "Retrieve cRFHistorySwitchOverEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFHistorySwitchOverIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFHistorySwitchOverTable/cRFHistorySwitchOverEntry/cRFHistorySwitchOverIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFHistorySwitchOverTable",
                    "cRFHistorySwitchOverEntry",
                    "cRFHistorySwitchOverIndex"
                  ]
                },
                "description": "Retrieve cRFHistorySwitchOverIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFHistoryPrevActiveUnitId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFHistorySwitchOverTable/cRFHistorySwitchOverEntry/cRFHistoryPrevActiveUnitId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFHistorySwitchOverTable",
                    "cRFHistorySwitchOverEntry",
                    "cRFHistoryPrevActiveUnitId"
                  ]
                },
                "description": "Retrieve cRFHistoryPrevActiveUnitId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFHistoryCurrActiveUnitId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFHistorySwitchOverTable/cRFHistorySwitchOverEntry/cRFHistoryCurrActiveUnitId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFHistorySwitchOverTable",
                    "cRFHistorySwitchOverEntry",
                    "cRFHistoryCurrActiveUnitId"
                  ]
                },
                "description": "Retrieve cRFHistoryCurrActiveUnitId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFHistorySwitchOverReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFHistorySwitchOverTable/cRFHistorySwitchOverEntry/cRFHistorySwitchOverReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFHistorySwitchOverTable",
                    "cRFHistorySwitchOverEntry",
                    "cRFHistorySwitchOverReason"
                  ]
                },
                "description": "Retrieve cRFHistorySwitchOverReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFHistorySwactTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFHistorySwitchOverTable/cRFHistorySwitchOverEntry/cRFHistorySwactTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFHistorySwitchOverTable",
                    "cRFHistorySwitchOverEntry",
                    "cRFHistorySwactTime"
                  ]
                },
                "description": "Retrieve cRFHistorySwactTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusRFClientTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable"
                  ]
                },
                "description": "Retrieve cRFStatusRFClientTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusRFClientEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/cRFStatusRFClientEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "cRFStatusRFClientEntry"
                  ]
                },
                "description": "Retrieve cRFStatusRFClientEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusRFClientID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/cRFStatusRFClientEntry/cRFStatusRFClientID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "cRFStatusRFClientEntry",
                    "cRFStatusRFClientID"
                  ]
                },
                "description": "Retrieve cRFStatusRFClientID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusRFClientDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/cRFStatusRFClientEntry/cRFStatusRFClientDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "cRFStatusRFClientEntry",
                    "cRFStatusRFClientDescr"
                  ]
                },
                "description": "Retrieve cRFStatusRFClientDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusRFClientSeq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/cRFStatusRFClientEntry/cRFStatusRFClientSeq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "cRFStatusRFClientEntry",
                    "cRFStatusRFClientSeq"
                  ]
                },
                "description": "Retrieve cRFStatusRFClientSeq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusRFClientRedTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/cRFStatusRFClientEntry/cRFStatusRFClientRedTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "cRFStatusRFClientEntry",
                    "cRFStatusRFClientRedTime"
                  ]
                },
                "description": "Retrieve cRFStatusRFClientRedTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusRFClientStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/cRFStatusRFClientEntry/cRFStatusRFClientStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "cRFStatusRFClientEntry",
                    "cRFStatusRFClientStatus"
                  ]
                },
                "description": "Retrieve cRFStatusRFClientStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusUnitId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/object-1/cRFStatusUnitId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "object-1",
                    "cRFStatusUnitId"
                  ]
                },
                "description": "Retrieve cRFStatusUnitId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/object-2/sysUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "object-2",
                    "sysUpTime"
                  ]
                },
                "description": "Retrieve sysUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusLastSwactReasonCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/object-3/cRFStatusLastSwactReasonCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "object-3",
                    "cRFStatusLastSwactReasonCode"
                  ]
                },
                "description": "Retrieve cRFStatusLastSwactReasonCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusUnitState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/object-2/cRFStatusUnitState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "object-2",
                    "cRFStatusUnitState"
                  ]
                },
                "description": "Retrieve cRFStatusUnitState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusPeerUnitId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/object-3/cRFStatusPeerUnitId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "object-3",
                    "cRFStatusPeerUnitId"
                  ]
                },
                "description": "Retrieve cRFStatusPeerUnitId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusPeerUnitState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/object-4/cRFStatusPeerUnitState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "object-4",
                    "cRFStatusPeerUnitState"
                  ]
                },
                "description": "Retrieve cRFStatusPeerUnitState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusIssuStateRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/object-1/cRFStatusIssuStateRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "object-1",
                    "cRFStatusIssuStateRev1"
                  ]
                },
                "description": "Retrieve cRFStatusIssuStateRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusIssuFromVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/object-2/cRFStatusIssuFromVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "object-2",
                    "cRFStatusIssuFromVersion"
                  ]
                },
                "description": "Retrieve cRFStatusIssuFromVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusIssuToVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/object-3/cRFStatusIssuToVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "object-3",
                    "cRFStatusIssuToVersion"
                  ]
                },
                "description": "Retrieve cRFStatusIssuToVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRFStatusLastSwactReasonCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RF-MIB:CISCO-RF-MIB/cRFStatusRFClientTable/object-4/cRFStatusLastSwactReasonCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RF-MIB:CISCO-RF-MIB",
                    "cRFStatusRFClientTable",
                    "object-4",
                    "cRFStatusLastSwactReasonCode"
                  ]
                },
                "description": "Retrieve cRFStatusLastSwactReasonCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-RTTMON-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-RTTMON-MIB\n\nMIB data from `CISCO-RTTMON-MIB` module.\n\n**Root containers:** 1 (CISCO-RTTMON-MIB)\n**Paths:** 538 | **Descendants:** 595\n\nAll endpoints are read-only (GET).\n\nEndpoints: 538 | Operations: 538",
          "item": [
            {
              "name": "GET Get CISCO-RTTMON-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB"
                  ]
                },
                "description": "Retrieve CISCO-RTTMON-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonAppl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonAppl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonAppl"
                  ]
                },
                "description": "Retrieve rttMonAppl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonAppl/rttMonApplVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonAppl",
                    "rttMonApplVersion"
                  ]
                },
                "description": "Retrieve rttMonApplVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplMaxPacketDataSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonAppl/rttMonApplMaxPacketDataSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonAppl",
                    "rttMonApplMaxPacketDataSize"
                  ]
                },
                "description": "Retrieve rttMonApplMaxPacketDataSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplTimeOfLastSet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonAppl/rttMonApplTimeOfLastSet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonAppl",
                    "rttMonApplTimeOfLastSet"
                  ]
                },
                "description": "Retrieve rttMonApplTimeOfLastSet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplNumCtrlAdminEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonAppl/rttMonApplNumCtrlAdminEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonAppl",
                    "rttMonApplNumCtrlAdminEntry"
                  ]
                },
                "description": "Retrieve rttMonApplNumCtrlAdminEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplReset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonAppl/rttMonApplReset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonAppl",
                    "rttMonApplReset"
                  ]
                },
                "description": "Retrieve rttMonApplReset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplPreConfigedReset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonAppl/rttMonApplPreConfigedReset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonAppl",
                    "rttMonApplPreConfigedReset"
                  ]
                },
                "description": "Retrieve rttMonApplPreConfigedReset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplProbeCapacity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonAppl/rttMonApplProbeCapacity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonAppl",
                    "rttMonApplProbeCapacity"
                  ]
                },
                "description": "Retrieve rttMonApplProbeCapacity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplFreeMemLowWaterMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonAppl/rttMonApplFreeMemLowWaterMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonAppl",
                    "rttMonApplFreeMemLowWaterMark"
                  ]
                },
                "description": "Retrieve rttMonApplFreeMemLowWaterMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplLatestSetError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonAppl/rttMonApplLatestSetError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonAppl",
                    "rttMonApplLatestSetError"
                  ]
                },
                "description": "Retrieve rttMonApplLatestSetError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplResponder",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonAppl/rttMonApplResponder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonAppl",
                    "rttMonApplResponder"
                  ]
                },
                "description": "Retrieve rttMonApplResponder from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplLpdGrpStatsReset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonAppl/rttMonApplLpdGrpStatsReset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonAppl",
                    "rttMonApplLpdGrpStatsReset"
                  ]
                },
                "description": "Retrieve rttMonApplLpdGrpStatsReset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplSupportedRttTypesTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplSupportedRttTypesTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplSupportedRttTypesTable"
                  ]
                },
                "description": "Retrieve rttMonApplSupportedRttTypesTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplSupportedRttTypesEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplSupportedRttTypesTable/rttMonApplSupportedRttTypesEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplSupportedRttTypesTable",
                    "rttMonApplSupportedRttTypesEntry"
                  ]
                },
                "description": "Retrieve rttMonApplSupportedRttTypesEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplSupportedRttTypes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplSupportedRttTypesTable/rttMonApplSupportedRttTypesEntry/rttMonApplSupportedRttTypes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplSupportedRttTypesTable",
                    "rttMonApplSupportedRttTypesEntry",
                    "rttMonApplSupportedRttTypes"
                  ]
                },
                "description": "Retrieve rttMonApplSupportedRttTypes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplSupportedRttTypesValid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplSupportedRttTypesTable/rttMonApplSupportedRttTypesEntry/rttMonApplSupportedRttTypesValid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplSupportedRttTypesTable",
                    "rttMonApplSupportedRttTypesEntry",
                    "rttMonApplSupportedRttTypesValid"
                  ]
                },
                "description": "Retrieve rttMonApplSupportedRttTypesValid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplSupportedProtocolsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplSupportedProtocolsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplSupportedProtocolsTable"
                  ]
                },
                "description": "Retrieve rttMonApplSupportedProtocolsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplSupportedProtocolsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplSupportedProtocolsTable/rttMonApplSupportedProtocolsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplSupportedProtocolsTable",
                    "rttMonApplSupportedProtocolsEntry"
                  ]
                },
                "description": "Retrieve rttMonApplSupportedProtocolsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplSupportedProtocols",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplSupportedProtocolsTable/rttMonApplSupportedProtocolsEntry/rttMonApplSupportedProtocols",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplSupportedProtocolsTable",
                    "rttMonApplSupportedProtocolsEntry",
                    "rttMonApplSupportedProtocols"
                  ]
                },
                "description": "Retrieve rttMonApplSupportedProtocols from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplSupportedProtocolsValid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplSupportedProtocolsTable/rttMonApplSupportedProtocolsEntry/rttMonApplSupportedProtocolsValid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplSupportedProtocolsTable",
                    "rttMonApplSupportedProtocolsEntry",
                    "rttMonApplSupportedProtocolsValid"
                  ]
                },
                "description": "Retrieve rttMonApplSupportedProtocolsValid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplPreConfigedTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplPreConfigedTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplPreConfigedTable"
                  ]
                },
                "description": "Retrieve rttMonApplPreConfigedTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplPreConfigedEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplPreConfigedTable/rttMonApplPreConfigedEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplPreConfigedTable",
                    "rttMonApplPreConfigedEntry"
                  ]
                },
                "description": "Retrieve rttMonApplPreConfigedEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplPreConfigedType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplPreConfigedTable/rttMonApplPreConfigedEntry/rttMonApplPreConfigedType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplPreConfigedTable",
                    "rttMonApplPreConfigedEntry",
                    "rttMonApplPreConfigedType"
                  ]
                },
                "description": "Retrieve rttMonApplPreConfigedType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplPreConfigedName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplPreConfigedTable/rttMonApplPreConfigedEntry/rttMonApplPreConfigedName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplPreConfigedTable",
                    "rttMonApplPreConfigedEntry",
                    "rttMonApplPreConfigedName"
                  ]
                },
                "description": "Retrieve rttMonApplPreConfigedName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplPreConfigedValid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplPreConfigedTable/rttMonApplPreConfigedEntry/rttMonApplPreConfigedValid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplPreConfigedTable",
                    "rttMonApplPreConfigedEntry",
                    "rttMonApplPreConfigedValid"
                  ]
                },
                "description": "Retrieve rttMonApplPreConfigedValid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplAuthTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplAuthTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplAuthTable"
                  ]
                },
                "description": "Retrieve rttMonApplAuthTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplAuthEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplAuthTable/rttMonApplAuthEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplAuthTable",
                    "rttMonApplAuthEntry"
                  ]
                },
                "description": "Retrieve rttMonApplAuthEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplAuthIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplAuthTable/rttMonApplAuthEntry/rttMonApplAuthIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplAuthTable",
                    "rttMonApplAuthEntry",
                    "rttMonApplAuthIndex"
                  ]
                },
                "description": "Retrieve rttMonApplAuthIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplAuthKeyChain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplAuthTable/rttMonApplAuthEntry/rttMonApplAuthKeyChain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplAuthTable",
                    "rttMonApplAuthEntry",
                    "rttMonApplAuthKeyChain"
                  ]
                },
                "description": "Retrieve rttMonApplAuthKeyChain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplAuthKeyString1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplAuthTable/rttMonApplAuthEntry/rttMonApplAuthKeyString1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplAuthTable",
                    "rttMonApplAuthEntry",
                    "rttMonApplAuthKeyString1"
                  ]
                },
                "description": "Retrieve rttMonApplAuthKeyString1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplAuthKeyString2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplAuthTable/rttMonApplAuthEntry/rttMonApplAuthKeyString2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplAuthTable",
                    "rttMonApplAuthEntry",
                    "rttMonApplAuthKeyString2"
                  ]
                },
                "description": "Retrieve rttMonApplAuthKeyString2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplAuthKeyString3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplAuthTable/rttMonApplAuthEntry/rttMonApplAuthKeyString3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplAuthTable",
                    "rttMonApplAuthEntry",
                    "rttMonApplAuthKeyString3"
                  ]
                },
                "description": "Retrieve rttMonApplAuthKeyString3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplAuthKeyString4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplAuthTable/rttMonApplAuthEntry/rttMonApplAuthKeyString4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplAuthTable",
                    "rttMonApplAuthEntry",
                    "rttMonApplAuthKeyString4"
                  ]
                },
                "description": "Retrieve rttMonApplAuthKeyString4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplAuthKeyString5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplAuthTable/rttMonApplAuthEntry/rttMonApplAuthKeyString5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplAuthTable",
                    "rttMonApplAuthEntry",
                    "rttMonApplAuthKeyString5"
                  ]
                },
                "description": "Retrieve rttMonApplAuthKeyString5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonApplAuthStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonApplAuthTable/rttMonApplAuthEntry/rttMonApplAuthStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonApplAuthTable",
                    "rttMonApplAuthEntry",
                    "rttMonApplAuthStatus"
                  ]
                },
                "description": "Retrieve rttMonApplAuthStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlAdminOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlAdminOwner"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminTag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlAdminTag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlAdminTag"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminTag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminRttType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlAdminRttType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlAdminRttType"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminRttType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlAdminThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlAdminThreshold"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminFrequency",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlAdminFrequency",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlAdminFrequency"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminFrequency from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlAdminTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlAdminTimeout"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminVerifyData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlAdminVerifyData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlAdminVerifyData"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminVerifyData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlAdminStatus"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminNvgen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlAdminNvgen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlAdminNvgen"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminNvgen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminGroupName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlAdminGroupName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlAdminGroupName"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminGroupName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonScheduleAdminRttLife",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonScheduleAdminRttLife",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonScheduleAdminRttLife"
                  ]
                },
                "description": "Retrieve rttMonScheduleAdminRttLife from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonScheduleAdminRttStartTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonScheduleAdminRttStartTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonScheduleAdminRttStartTime"
                  ]
                },
                "description": "Retrieve rttMonScheduleAdminRttStartTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonScheduleAdminRttRecurring",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonScheduleAdminRttRecurring",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonScheduleAdminRttRecurring"
                  ]
                },
                "description": "Retrieve rttMonScheduleAdminRttRecurring from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonScheduleAdminConceptRowAgeoutV2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonScheduleAdminConceptRowAgeoutV2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonScheduleAdminConceptRowAgeoutV2"
                  ]
                },
                "description": "Retrieve rttMonScheduleAdminConceptRowAgeoutV2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatisticsAdminNumHourGroups",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonStatisticsAdminNumHourGroups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonStatisticsAdminNumHourGroups"
                  ]
                },
                "description": "Retrieve rttMonStatisticsAdminNumHourGroups from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatisticsAdminNumPaths",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonStatisticsAdminNumPaths",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonStatisticsAdminNumPaths"
                  ]
                },
                "description": "Retrieve rttMonStatisticsAdminNumPaths from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatisticsAdminNumHops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonStatisticsAdminNumHops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonStatisticsAdminNumHops"
                  ]
                },
                "description": "Retrieve rttMonStatisticsAdminNumHops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatisticsAdminNumDistBuckets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonStatisticsAdminNumDistBuckets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonStatisticsAdminNumDistBuckets"
                  ]
                },
                "description": "Retrieve rttMonStatisticsAdminNumDistBuckets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatisticsAdminDistInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonStatisticsAdminDistInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonStatisticsAdminDistInterval"
                  ]
                },
                "description": "Retrieve rttMonStatisticsAdminDistInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryAdminNumLives",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonHistoryAdminNumLives",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonHistoryAdminNumLives"
                  ]
                },
                "description": "Retrieve rttMonHistoryAdminNumLives from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryAdminNumBuckets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonHistoryAdminNumBuckets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonHistoryAdminNumBuckets"
                  ]
                },
                "description": "Retrieve rttMonHistoryAdminNumBuckets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryAdminNumSamples",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonHistoryAdminNumSamples",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonHistoryAdminNumSamples"
                  ]
                },
                "description": "Retrieve rttMonHistoryAdminNumSamples from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryAdminFilter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonHistoryAdminFilter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonHistoryAdminFilter"
                  ]
                },
                "description": "Retrieve rttMonHistoryAdminFilter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlOperModificationTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlOperModificationTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlOperModificationTime"
                  ]
                },
                "description": "Retrieve rttMonCtrlOperModificationTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlOperDiagText",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlOperDiagText",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlOperDiagText"
                  ]
                },
                "description": "Retrieve rttMonCtrlOperDiagText from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlOperResetTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlOperResetTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlOperResetTime"
                  ]
                },
                "description": "Retrieve rttMonCtrlOperResetTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlOperOctetsInUse",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlOperOctetsInUse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlOperOctetsInUse"
                  ]
                },
                "description": "Retrieve rttMonCtrlOperOctetsInUse from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlOperConnectionLostOccurred",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlOperConnectionLostOccurred",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlOperConnectionLostOccurred"
                  ]
                },
                "description": "Retrieve rttMonCtrlOperConnectionLostOccurred from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlOperTimeoutOccurred",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlOperTimeoutOccurred",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlOperTimeoutOccurred"
                  ]
                },
                "description": "Retrieve rttMonCtrlOperTimeoutOccurred from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlOperOverThresholdOccurred",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlOperOverThresholdOccurred",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlOperOverThresholdOccurred"
                  ]
                },
                "description": "Retrieve rttMonCtrlOperOverThresholdOccurred from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlOperNumRtts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlOperNumRtts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlOperNumRtts"
                  ]
                },
                "description": "Retrieve rttMonCtrlOperNumRtts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlOperRttLife",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlOperRttLife",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlOperRttLife"
                  ]
                },
                "description": "Retrieve rttMonCtrlOperRttLife from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlOperState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlOperState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlOperState"
                  ]
                },
                "description": "Retrieve rttMonCtrlOperState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlOperVerifyErrorOccurred",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonCtrlOperVerifyErrorOccurred",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonCtrlOperVerifyErrorOccurred"
                  ]
                },
                "description": "Retrieve rttMonCtrlOperVerifyErrorOccurred from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestRttOperCompletionTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonLatestRttOperCompletionTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonLatestRttOperCompletionTime"
                  ]
                },
                "description": "Retrieve rttMonLatestRttOperCompletionTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestRttOperSense",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonLatestRttOperSense",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonLatestRttOperSense"
                  ]
                },
                "description": "Retrieve rttMonLatestRttOperSense from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestRttOperApplSpecificSense",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonLatestRttOperApplSpecificSense",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonLatestRttOperApplSpecificSense"
                  ]
                },
                "description": "Retrieve rttMonLatestRttOperApplSpecificSense from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestRttOperSenseDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonLatestRttOperSenseDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonLatestRttOperSenseDescription"
                  ]
                },
                "description": "Retrieve rttMonLatestRttOperSenseDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestRttOperTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonLatestRttOperTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonLatestRttOperTime"
                  ]
                },
                "description": "Retrieve rttMonLatestRttOperTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestRttOperAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonCtrlAdminTable/rttMonCtrlAdminEntry/rttMonLatestRttOperAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonCtrlAdminTable",
                    "rttMonCtrlAdminEntry",
                    "rttMonLatestRttOperAddress"
                  ]
                },
                "description": "Retrieve rttMonLatestRttOperAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminProtocol"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminTargetAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminTargetAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminTargetAddress"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminTargetAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminPktDataRequestSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminPktDataRequestSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminPktDataRequestSize"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminPktDataRequestSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminPktDataResponseSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminPktDataResponseSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminPktDataResponseSize"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminPktDataResponseSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminTargetPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminTargetPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminTargetPort"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminTargetPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminSourceAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminSourceAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminSourceAddress"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminSourceAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminSourcePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminSourcePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminSourcePort"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminSourcePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminControlEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminControlEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminControlEnable"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminControlEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminTOS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminTOS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminTOS"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminTOS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminLSREnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminLSREnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminLSREnable"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminLSREnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminTargetAddressString",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminTargetAddressString",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminTargetAddressString"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminTargetAddressString from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminNameServer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminNameServer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminNameServer"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminNameServer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminOperation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminOperation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminOperation"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminOperation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminHTTPVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminHTTPVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminHTTPVersion"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminHTTPVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminURL",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminURL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminURL"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminURL from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminCache",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminCache",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminCache"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminCache from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminInterval"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminNumPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminNumPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminNumPackets"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminNumPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminProxy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminProxy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminProxy"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminProxy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminString1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminString1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminString1"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminString1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminString2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminString2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminString2"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminString2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminString3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminString3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminString3"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminString3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminString4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminString4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminString4"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminString4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminString5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminString5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminString5"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminString5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminMode"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminVrfName"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminCodecType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminCodecType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminCodecType"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminCodecType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminCodecInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminCodecInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminCodecInterval"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminCodecInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminCodecPayload",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminCodecPayload",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminCodecPayload"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminCodecPayload from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminCodecNumPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminCodecNumPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminCodecNumPackets"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminCodecNumPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminICPIFAdvFactor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminICPIFAdvFactor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminICPIFAdvFactor"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminICPIFAdvFactor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminLSPFECType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminLSPFECType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminLSPFECType"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminLSPFECType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminLSPSelector",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminLSPSelector",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminLSPSelector"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminLSPSelector from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminLSPReplyMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminLSPReplyMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminLSPReplyMode"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminLSPReplyMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminLSPTTL",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminLSPTTL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminLSPTTL"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminLSPTTL from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminLSPExp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminLSPExp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminLSPExp"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminLSPExp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminPrecision",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminPrecision",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminPrecision"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminPrecision from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminProbePakPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminProbePakPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminProbePakPriority"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminProbePakPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminOWNTPSyncTolAbs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminOWNTPSyncTolAbs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminOWNTPSyncTolAbs"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminOWNTPSyncTolAbs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminOWNTPSyncTolPct",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminOWNTPSyncTolPct",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminOWNTPSyncTolPct"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminOWNTPSyncTolPct from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminOWNTPSyncTolType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminOWNTPSyncTolType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminOWNTPSyncTolType"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminOWNTPSyncTolType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminCalledNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminCalledNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminCalledNumber"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminCalledNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminDetectPoint",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminDetectPoint",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminDetectPoint"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminDetectPoint from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminGKRegistration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminGKRegistration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminGKRegistration"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminGKRegistration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminSourceVoicePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminSourceVoicePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminSourceVoicePort"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminSourceVoicePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminCallDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminCallDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminCallDuration"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminCallDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminLSPReplyDscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminLSPReplyDscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminLSPReplyDscp"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminLSPReplyDscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminLSPNullShim",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminLSPNullShim",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminLSPNullShim"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminLSPNullShim from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminTargetMPID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminTargetMPID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminTargetMPID"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminTargetMPID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminTargetDomainName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminTargetDomainName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminTargetDomainName"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminTargetDomainName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminTargetVLAN",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminTargetVLAN",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminTargetVLAN"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminTargetVLAN from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminEthernetCOS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminEthernetCOS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminEthernetCOS"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminEthernetCOS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminLSPVccvID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminLSPVccvID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminLSPVccvID"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminLSPVccvID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminTargetEVC",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminTargetEVC",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminTargetEVC"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminTargetEVC from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminTargetMEPPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminTargetMEPPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminTargetMEPPort"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminTargetMEPPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminVideoTrafficProfile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminVideoTrafficProfile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminVideoTrafficProfile"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminVideoTrafficProfile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminDscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminDscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminDscp"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminDscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminReserveDsp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminReserveDsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminReserveDsp"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminReserveDsp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminInputInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminInputInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminInputInterface"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminInputInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminEmulateSourceAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminEmulateSourceAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminEmulateSourceAddress"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminEmulateSourceAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminEmulateSourcePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminEmulateSourcePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminEmulateSourcePort"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminEmulateSourcePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminEmulateTargetAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminEmulateTargetAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminEmulateTargetAddress"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminEmulateTargetAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminEmulateTargetPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminEmulateTargetPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminEmulateTargetPort"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminEmulateTargetPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminTargetMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminTargetMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminTargetMacAddress"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminTargetMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminSourceMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminSourceMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminSourceMacAddress"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminSourceMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminSourceMPID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminSourceMPID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminSourceMPID"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminSourceMPID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminEndPointListName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminEndPointListName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminEndPointListName"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminEndPointListName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminSSM",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminSSM",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminSSM"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminSSM from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminControlRetry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminControlRetry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminControlRetry"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminControlRetry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminControlTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminControlTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminControlTimeout"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminControlTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminIgmpTreeInit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminIgmpTreeInit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminIgmpTreeInit"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminIgmpTreeInit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminEnableBurst",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminEnableBurst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminEnableBurst"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminEnableBurst from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminAggBurstCycles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminAggBurstCycles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminAggBurstCycles"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminAggBurstCycles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminLossRatioNumFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminLossRatioNumFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminLossRatioNumFrames"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminLossRatioNumFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminAvailNumFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminAvailNumFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminAvailNumFrames"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminAvailNumFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminTstampOptimization",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoAdminTable/rttMonEchoAdminEntry/rttMonEchoAdminTstampOptimization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoAdminTable",
                    "rttMonEchoAdminEntry",
                    "rttMonEchoAdminTstampOptimization"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminTstampOptimization from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonFileIOAdminTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonFileIOAdminTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonFileIOAdminTable"
                  ]
                },
                "description": "Retrieve rttMonFileIOAdminTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonFileIOAdminEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonFileIOAdminTable/rttMonFileIOAdminEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonFileIOAdminTable",
                    "rttMonFileIOAdminEntry"
                  ]
                },
                "description": "Retrieve rttMonFileIOAdminEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonFileIOAdminTable/rttMonFileIOAdminEntry/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonFileIOAdminTable",
                    "rttMonFileIOAdminEntry",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonFileIOAdminFilePath",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonFileIOAdminTable/rttMonFileIOAdminEntry/rttMonFileIOAdminFilePath",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonFileIOAdminTable",
                    "rttMonFileIOAdminEntry",
                    "rttMonFileIOAdminFilePath"
                  ]
                },
                "description": "Retrieve rttMonFileIOAdminFilePath from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonFileIOAdminSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonFileIOAdminTable/rttMonFileIOAdminEntry/rttMonFileIOAdminSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonFileIOAdminTable",
                    "rttMonFileIOAdminEntry",
                    "rttMonFileIOAdminSize"
                  ]
                },
                "description": "Retrieve rttMonFileIOAdminSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonFileIOAdminAction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonFileIOAdminTable/rttMonFileIOAdminEntry/rttMonFileIOAdminAction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonFileIOAdminTable",
                    "rttMonFileIOAdminEntry",
                    "rttMonFileIOAdminAction"
                  ]
                },
                "description": "Retrieve rttMonFileIOAdminAction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonScriptAdminTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonScriptAdminTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonScriptAdminTable"
                  ]
                },
                "description": "Retrieve rttMonScriptAdminTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonScriptAdminEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonScriptAdminTable/rttMonScriptAdminEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonScriptAdminTable",
                    "rttMonScriptAdminEntry"
                  ]
                },
                "description": "Retrieve rttMonScriptAdminEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonScriptAdminTable/rttMonScriptAdminEntry/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonScriptAdminTable",
                    "rttMonScriptAdminEntry",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonScriptAdminName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonScriptAdminTable/rttMonScriptAdminEntry/rttMonScriptAdminName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonScriptAdminTable",
                    "rttMonScriptAdminEntry",
                    "rttMonScriptAdminName"
                  ]
                },
                "description": "Retrieve rttMonScriptAdminName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonScriptAdminCmdLineParams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonScriptAdminTable/rttMonScriptAdminEntry/rttMonScriptAdminCmdLineParams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonScriptAdminTable",
                    "rttMonScriptAdminEntry",
                    "rttMonScriptAdminCmdLineParams"
                  ]
                },
                "description": "Retrieve rttMonScriptAdminCmdLineParams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactTriggerAdminTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTriggerAdminTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTriggerAdminTable"
                  ]
                },
                "description": "Retrieve rttMonReactTriggerAdminTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactTriggerAdminEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTriggerAdminTable/rttMonReactTriggerAdminEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTriggerAdminTable",
                    "rttMonReactTriggerAdminEntry"
                  ]
                },
                "description": "Retrieve rttMonReactTriggerAdminEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTriggerAdminTable/rttMonReactTriggerAdminEntry/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTriggerAdminTable",
                    "rttMonReactTriggerAdminEntry",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactTriggerAdminRttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTriggerAdminTable/rttMonReactTriggerAdminEntry/rttMonReactTriggerAdminRttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTriggerAdminTable",
                    "rttMonReactTriggerAdminEntry",
                    "rttMonReactTriggerAdminRttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonReactTriggerAdminRttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactTriggerAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTriggerAdminTable/rttMonReactTriggerAdminEntry/rttMonReactTriggerAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTriggerAdminTable",
                    "rttMonReactTriggerAdminEntry",
                    "rttMonReactTriggerAdminStatus"
                  ]
                },
                "description": "Retrieve rttMonReactTriggerAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactTriggerOperState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTriggerAdminTable/rttMonReactTriggerAdminEntry/rttMonReactTriggerOperState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTriggerAdminTable",
                    "rttMonReactTriggerAdminEntry",
                    "rttMonReactTriggerOperState"
                  ]
                },
                "description": "Retrieve rttMonReactTriggerOperState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoPathAdminTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoPathAdminTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoPathAdminTable"
                  ]
                },
                "description": "Retrieve rttMonEchoPathAdminTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoPathAdminEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoPathAdminTable/rttMonEchoPathAdminEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoPathAdminTable",
                    "rttMonEchoPathAdminEntry"
                  ]
                },
                "description": "Retrieve rttMonEchoPathAdminEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoPathAdminTable/rttMonEchoPathAdminEntry/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoPathAdminTable",
                    "rttMonEchoPathAdminEntry",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoPathAdminHopIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoPathAdminTable/rttMonEchoPathAdminEntry/rttMonEchoPathAdminHopIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoPathAdminTable",
                    "rttMonEchoPathAdminEntry",
                    "rttMonEchoPathAdminHopIndex"
                  ]
                },
                "description": "Retrieve rttMonEchoPathAdminHopIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoPathAdminHopAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonEchoPathAdminTable/rttMonEchoPathAdminEntry/rttMonEchoPathAdminHopAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonEchoPathAdminTable",
                    "rttMonEchoPathAdminEntry",
                    "rttMonEchoPathAdminHopAddress"
                  ]
                },
                "description": "Retrieve rttMonEchoPathAdminHopAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGrpScheduleAdminTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGrpScheduleAdminTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGrpScheduleAdminTable"
                  ]
                },
                "description": "Retrieve rttMonGrpScheduleAdminTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGrpScheduleAdminEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGrpScheduleAdminTable/rttMonGrpScheduleAdminEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGrpScheduleAdminTable",
                    "rttMonGrpScheduleAdminEntry"
                  ]
                },
                "description": "Retrieve rttMonGrpScheduleAdminEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGrpScheduleAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGrpScheduleAdminTable/rttMonGrpScheduleAdminEntry/rttMonGrpScheduleAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGrpScheduleAdminTable",
                    "rttMonGrpScheduleAdminEntry",
                    "rttMonGrpScheduleAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonGrpScheduleAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGrpScheduleAdminProbes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGrpScheduleAdminTable/rttMonGrpScheduleAdminEntry/rttMonGrpScheduleAdminProbes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGrpScheduleAdminTable",
                    "rttMonGrpScheduleAdminEntry",
                    "rttMonGrpScheduleAdminProbes"
                  ]
                },
                "description": "Retrieve rttMonGrpScheduleAdminProbes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGrpScheduleAdminPeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGrpScheduleAdminTable/rttMonGrpScheduleAdminEntry/rttMonGrpScheduleAdminPeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGrpScheduleAdminTable",
                    "rttMonGrpScheduleAdminEntry",
                    "rttMonGrpScheduleAdminPeriod"
                  ]
                },
                "description": "Retrieve rttMonGrpScheduleAdminPeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGrpScheduleAdminFrequency",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGrpScheduleAdminTable/rttMonGrpScheduleAdminEntry/rttMonGrpScheduleAdminFrequency",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGrpScheduleAdminTable",
                    "rttMonGrpScheduleAdminEntry",
                    "rttMonGrpScheduleAdminFrequency"
                  ]
                },
                "description": "Retrieve rttMonGrpScheduleAdminFrequency from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGrpScheduleAdminLife",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGrpScheduleAdminTable/rttMonGrpScheduleAdminEntry/rttMonGrpScheduleAdminLife",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGrpScheduleAdminTable",
                    "rttMonGrpScheduleAdminEntry",
                    "rttMonGrpScheduleAdminLife"
                  ]
                },
                "description": "Retrieve rttMonGrpScheduleAdminLife from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGrpScheduleAdminAgeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGrpScheduleAdminTable/rttMonGrpScheduleAdminEntry/rttMonGrpScheduleAdminAgeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGrpScheduleAdminTable",
                    "rttMonGrpScheduleAdminEntry",
                    "rttMonGrpScheduleAdminAgeout"
                  ]
                },
                "description": "Retrieve rttMonGrpScheduleAdminAgeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGrpScheduleAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGrpScheduleAdminTable/rttMonGrpScheduleAdminEntry/rttMonGrpScheduleAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGrpScheduleAdminTable",
                    "rttMonGrpScheduleAdminEntry",
                    "rttMonGrpScheduleAdminStatus"
                  ]
                },
                "description": "Retrieve rttMonGrpScheduleAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGrpScheduleAdminFreqMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGrpScheduleAdminTable/rttMonGrpScheduleAdminEntry/rttMonGrpScheduleAdminFreqMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGrpScheduleAdminTable",
                    "rttMonGrpScheduleAdminEntry",
                    "rttMonGrpScheduleAdminFreqMax"
                  ]
                },
                "description": "Retrieve rttMonGrpScheduleAdminFreqMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGrpScheduleAdminFreqMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGrpScheduleAdminTable/rttMonGrpScheduleAdminEntry/rttMonGrpScheduleAdminFreqMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGrpScheduleAdminTable",
                    "rttMonGrpScheduleAdminEntry",
                    "rttMonGrpScheduleAdminFreqMin"
                  ]
                },
                "description": "Retrieve rttMonGrpScheduleAdminFreqMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGrpScheduleAdminStartTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGrpScheduleAdminTable/rttMonGrpScheduleAdminEntry/rttMonGrpScheduleAdminStartTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGrpScheduleAdminTable",
                    "rttMonGrpScheduleAdminEntry",
                    "rttMonGrpScheduleAdminStartTime"
                  ]
                },
                "description": "Retrieve rttMonGrpScheduleAdminStartTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGrpScheduleAdminAdd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGrpScheduleAdminTable/rttMonGrpScheduleAdminEntry/rttMonGrpScheduleAdminAdd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGrpScheduleAdminTable",
                    "rttMonGrpScheduleAdminEntry",
                    "rttMonGrpScheduleAdminAdd"
                  ]
                },
                "description": "Retrieve rttMonGrpScheduleAdminAdd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGrpScheduleAdminDelete",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGrpScheduleAdminTable/rttMonGrpScheduleAdminEntry/rttMonGrpScheduleAdminDelete",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGrpScheduleAdminTable",
                    "rttMonGrpScheduleAdminEntry",
                    "rttMonGrpScheduleAdminDelete"
                  ]
                },
                "description": "Retrieve rttMonGrpScheduleAdminDelete from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGrpScheduleAdminReset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGrpScheduleAdminTable/rttMonGrpScheduleAdminEntry/rttMonGrpScheduleAdminReset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGrpScheduleAdminTable",
                    "rttMonGrpScheduleAdminEntry",
                    "rttMonGrpScheduleAdminReset"
                  ]
                },
                "description": "Retrieve rttMonGrpScheduleAdminReset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlIndex"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlRttType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlRttType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlRttType"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlRttType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlVrfName"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlTag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlTag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlTag"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlTag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlThreshold"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlTimeout"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlScanInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlScanInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlScanInterval"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlScanInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlDelScanFactor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlDelScanFactor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlDelScanFactor"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlDelScanFactor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlEXP",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlEXP",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlEXP"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlEXP from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlRequestSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlRequestSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlRequestSize"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlRequestSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlVerifyData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlVerifyData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlVerifyData"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlVerifyData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlStorageType"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlProbeList",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlProbeList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlProbeList"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlProbeList from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlStatus"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlLpd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlLpd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlLpd"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlLpd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlLpdGrpList",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlLpdGrpList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlLpdGrpList"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlLpdGrpList from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlLpdCompTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonCtrlLpdCompTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonCtrlLpdCompTime"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlLpdCompTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonTypeInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonTypeInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonTypeInterval"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonTypeInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonTypeNumPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonTypeNumPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonTypeNumPackets"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonTypeNumPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonTypeDestPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonTypeDestPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonTypeDestPort"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonTypeDestPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonTypeSecFreqType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonTypeSecFreqType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonTypeSecFreqType"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonTypeSecFreqType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonTypeSecFreqValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonTypeSecFreqValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonTypeSecFreqValue"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonTypeSecFreqValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonTypeLspSelector",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonTypeLspSelector",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonTypeLspSelector"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonTypeLspSelector from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonTypeLSPReplyMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonTypeLSPReplyMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonTypeLSPReplyMode"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonTypeLSPReplyMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonTypeLSPTTL",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonTypeLSPTTL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonTypeLSPTTL"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonTypeLSPTTL from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonTypeLSPReplyDscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonTypeLSPReplyDscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonTypeLSPReplyDscp"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonTypeLSPReplyDscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonTypeLpdMaxSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonTypeLpdMaxSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonTypeLpdMaxSessions"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonTypeLpdMaxSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonTypeLpdSessTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonTypeLpdSessTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonTypeLpdSessTimeout"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonTypeLpdSessTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonTypeLpdEchoTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonTypeLpdEchoTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonTypeLpdEchoTimeout"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonTypeLpdEchoTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonTypeLpdEchoInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonTypeLpdEchoInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonTypeLpdEchoInterval"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonTypeLpdEchoInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonTypeLpdEchoNullShim",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonTypeLpdEchoNullShim",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonTypeLpdEchoNullShim"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonTypeLpdEchoNullShim from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonTypeLpdScanPeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonTypeLpdScanPeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonTypeLpdScanPeriod"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonTypeLpdScanPeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonTypeLpdStatHours",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonTypeLpdStatHours",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonTypeLpdStatHours"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonTypeLpdStatHours from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonScheduleRttStartTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonScheduleRttStartTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonScheduleRttStartTime"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonScheduleRttStartTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonSchedulePeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonSchedulePeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonSchedulePeriod"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonSchedulePeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonScheduleFrequency",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonScheduleFrequency",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonScheduleFrequency"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonScheduleFrequency from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonReactConnectionEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonReactConnectionEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonReactConnectionEnable"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonReactConnectionEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonReactTimeoutEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonReactTimeoutEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonReactTimeoutEnable"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonReactTimeoutEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonReactThresholdType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonReactThresholdType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonReactThresholdType"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonReactThresholdType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonReactThresholdCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonReactThresholdCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonReactThresholdCount"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonReactThresholdCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonReactActionType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonReactActionType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonReactActionType"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonReactActionType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonReactLpdNotifyType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonReactLpdNotifyType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonReactLpdNotifyType"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonReactLpdNotifyType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonReactLpdRetryCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMplsVpnMonCtrlTable/rttMplsVpnMonCtrlEntry/rttMplsVpnMonReactLpdRetryCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMplsVpnMonCtrlTable",
                    "rttMplsVpnMonCtrlEntry",
                    "rttMplsVpnMonReactLpdRetryCount"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonReactLpdRetryCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTable"
                  ]
                },
                "description": "Retrieve rttMonReactTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTable/rttMonReactEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTable",
                    "rttMonReactEntry"
                  ]
                },
                "description": "Retrieve rttMonReactEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTable/rttMonReactEntry/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTable",
                    "rttMonReactEntry",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactConfigIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTable/rttMonReactEntry/rttMonReactConfigIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTable",
                    "rttMonReactEntry",
                    "rttMonReactConfigIndex"
                  ]
                },
                "description": "Retrieve rttMonReactConfigIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactVar",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTable/rttMonReactEntry/rttMonReactVar",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTable",
                    "rttMonReactEntry",
                    "rttMonReactVar"
                  ]
                },
                "description": "Retrieve rttMonReactVar from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactThresholdType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTable/rttMonReactEntry/rttMonReactThresholdType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTable",
                    "rttMonReactEntry",
                    "rttMonReactThresholdType"
                  ]
                },
                "description": "Retrieve rttMonReactThresholdType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactActionType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTable/rttMonReactEntry/rttMonReactActionType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTable",
                    "rttMonReactEntry",
                    "rttMonReactActionType"
                  ]
                },
                "description": "Retrieve rttMonReactActionType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactThresholdRising",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTable/rttMonReactEntry/rttMonReactThresholdRising",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTable",
                    "rttMonReactEntry",
                    "rttMonReactThresholdRising"
                  ]
                },
                "description": "Retrieve rttMonReactThresholdRising from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactThresholdFalling",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTable/rttMonReactEntry/rttMonReactThresholdFalling",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTable",
                    "rttMonReactEntry",
                    "rttMonReactThresholdFalling"
                  ]
                },
                "description": "Retrieve rttMonReactThresholdFalling from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactThresholdCountX",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTable/rttMonReactEntry/rttMonReactThresholdCountX",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTable",
                    "rttMonReactEntry",
                    "rttMonReactThresholdCountX"
                  ]
                },
                "description": "Retrieve rttMonReactThresholdCountX from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactThresholdCountY",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTable/rttMonReactEntry/rttMonReactThresholdCountY",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTable",
                    "rttMonReactEntry",
                    "rttMonReactThresholdCountY"
                  ]
                },
                "description": "Retrieve rttMonReactThresholdCountY from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTable/rttMonReactEntry/rttMonReactValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTable",
                    "rttMonReactEntry",
                    "rttMonReactValue"
                  ]
                },
                "description": "Retrieve rttMonReactValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactOccurred",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTable/rttMonReactEntry/rttMonReactOccurred",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTable",
                    "rttMonReactEntry",
                    "rttMonReactOccurred"
                  ]
                },
                "description": "Retrieve rttMonReactOccurred from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonReactTable/rttMonReactEntry/rttMonReactStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonReactTable",
                    "rttMonReactEntry",
                    "rttMonReactStatus"
                  ]
                },
                "description": "Retrieve rttMonReactStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGeneratedOperTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGeneratedOperTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGeneratedOperTable"
                  ]
                },
                "description": "Retrieve rttMonGeneratedOperTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGeneratedOperEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGeneratedOperTable/rttMonGeneratedOperEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGeneratedOperTable",
                    "rttMonGeneratedOperEntry"
                  ]
                },
                "description": "Retrieve rttMonGeneratedOperEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGeneratedOperTable/rttMonGeneratedOperEntry/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGeneratedOperTable",
                    "rttMonGeneratedOperEntry",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGeneratedOperRespIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGeneratedOperTable/rttMonGeneratedOperEntry/rttMonGeneratedOperRespIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGeneratedOperTable",
                    "rttMonGeneratedOperEntry",
                    "rttMonGeneratedOperRespIpAddrType"
                  ]
                },
                "description": "Retrieve rttMonGeneratedOperRespIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGeneratedOperRespIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGeneratedOperTable/rttMonGeneratedOperEntry/rttMonGeneratedOperRespIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGeneratedOperTable",
                    "rttMonGeneratedOperEntry",
                    "rttMonGeneratedOperRespIpAddr"
                  ]
                },
                "description": "Retrieve rttMonGeneratedOperRespIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonGeneratedOperCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonGeneratedOperTable/rttMonGeneratedOperEntry/rttMonGeneratedOperCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonGeneratedOperTable",
                    "rttMonGeneratedOperEntry",
                    "rttMonGeneratedOperCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonGeneratedOperCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCaptureTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCaptureTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCaptureTable"
                  ]
                },
                "description": "Retrieve rttMonStatsCaptureTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCaptureEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCaptureTable/rttMonStatsCaptureEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCaptureTable",
                    "rttMonStatsCaptureEntry"
                  ]
                },
                "description": "Retrieve rttMonStatsCaptureEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCaptureTable/rttMonStatsCaptureEntry/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCaptureTable",
                    "rttMonStatsCaptureEntry",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCaptureStartTimeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCaptureTable/rttMonStatsCaptureEntry/rttMonStatsCaptureStartTimeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCaptureTable",
                    "rttMonStatsCaptureEntry",
                    "rttMonStatsCaptureStartTimeIndex"
                  ]
                },
                "description": "Retrieve rttMonStatsCaptureStartTimeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCapturePathIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCaptureTable/rttMonStatsCaptureEntry/rttMonStatsCapturePathIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCaptureTable",
                    "rttMonStatsCaptureEntry",
                    "rttMonStatsCapturePathIndex"
                  ]
                },
                "description": "Retrieve rttMonStatsCapturePathIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCaptureHopIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCaptureTable/rttMonStatsCaptureEntry/rttMonStatsCaptureHopIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCaptureTable",
                    "rttMonStatsCaptureEntry",
                    "rttMonStatsCaptureHopIndex"
                  ]
                },
                "description": "Retrieve rttMonStatsCaptureHopIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCaptureDistIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCaptureTable/rttMonStatsCaptureEntry/rttMonStatsCaptureDistIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCaptureTable",
                    "rttMonStatsCaptureEntry",
                    "rttMonStatsCaptureDistIndex"
                  ]
                },
                "description": "Retrieve rttMonStatsCaptureDistIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCaptureCompletions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCaptureTable/rttMonStatsCaptureEntry/rttMonStatsCaptureCompletions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCaptureTable",
                    "rttMonStatsCaptureEntry",
                    "rttMonStatsCaptureCompletions"
                  ]
                },
                "description": "Retrieve rttMonStatsCaptureCompletions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCaptureOverThresholds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCaptureTable/rttMonStatsCaptureEntry/rttMonStatsCaptureOverThresholds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCaptureTable",
                    "rttMonStatsCaptureEntry",
                    "rttMonStatsCaptureOverThresholds"
                  ]
                },
                "description": "Retrieve rttMonStatsCaptureOverThresholds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCaptureSumCompletionTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCaptureTable/rttMonStatsCaptureEntry/rttMonStatsCaptureSumCompletionTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCaptureTable",
                    "rttMonStatsCaptureEntry",
                    "rttMonStatsCaptureSumCompletionTime"
                  ]
                },
                "description": "Retrieve rttMonStatsCaptureSumCompletionTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCaptureSumCompletionTime2Low",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCaptureTable/rttMonStatsCaptureEntry/rttMonStatsCaptureSumCompletionTime2Low",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCaptureTable",
                    "rttMonStatsCaptureEntry",
                    "rttMonStatsCaptureSumCompletionTime2Low"
                  ]
                },
                "description": "Retrieve rttMonStatsCaptureSumCompletionTime2Low from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCaptureSumCompletionTime2High",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCaptureTable/rttMonStatsCaptureEntry/rttMonStatsCaptureSumCompletionTime2High",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCaptureTable",
                    "rttMonStatsCaptureEntry",
                    "rttMonStatsCaptureSumCompletionTime2High"
                  ]
                },
                "description": "Retrieve rttMonStatsCaptureSumCompletionTime2High from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCaptureCompletionTimeMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCaptureTable/rttMonStatsCaptureEntry/rttMonStatsCaptureCompletionTimeMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCaptureTable",
                    "rttMonStatsCaptureEntry",
                    "rttMonStatsCaptureCompletionTimeMax"
                  ]
                },
                "description": "Retrieve rttMonStatsCaptureCompletionTimeMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCaptureCompletionTimeMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCaptureTable/rttMonStatsCaptureEntry/rttMonStatsCaptureCompletionTimeMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCaptureTable",
                    "rttMonStatsCaptureEntry",
                    "rttMonStatsCaptureCompletionTimeMin"
                  ]
                },
                "description": "Retrieve rttMonStatsCaptureCompletionTimeMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCollectTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCollectTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCollectTable"
                  ]
                },
                "description": "Retrieve rttMonStatsCollectTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCollectEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCollectTable/rttMonStatsCollectEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCollectTable",
                    "rttMonStatsCollectEntry"
                  ]
                },
                "description": "Retrieve rttMonStatsCollectEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCollectTable/rttMonStatsCollectEntry/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCollectTable",
                    "rttMonStatsCollectEntry",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCaptureStartTimeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCollectTable/rttMonStatsCollectEntry/rttMonStatsCaptureStartTimeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCollectTable",
                    "rttMonStatsCollectEntry",
                    "rttMonStatsCaptureStartTimeIndex"
                  ]
                },
                "description": "Retrieve rttMonStatsCaptureStartTimeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCapturePathIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCollectTable/rttMonStatsCollectEntry/rttMonStatsCapturePathIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCollectTable",
                    "rttMonStatsCollectEntry",
                    "rttMonStatsCapturePathIndex"
                  ]
                },
                "description": "Retrieve rttMonStatsCapturePathIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCaptureHopIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCollectTable/rttMonStatsCollectEntry/rttMonStatsCaptureHopIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCollectTable",
                    "rttMonStatsCollectEntry",
                    "rttMonStatsCaptureHopIndex"
                  ]
                },
                "description": "Retrieve rttMonStatsCaptureHopIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCollectNumDisconnects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCollectTable/rttMonStatsCollectEntry/rttMonStatsCollectNumDisconnects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCollectTable",
                    "rttMonStatsCollectEntry",
                    "rttMonStatsCollectNumDisconnects"
                  ]
                },
                "description": "Retrieve rttMonStatsCollectNumDisconnects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCollectTimeouts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCollectTable/rttMonStatsCollectEntry/rttMonStatsCollectTimeouts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCollectTable",
                    "rttMonStatsCollectEntry",
                    "rttMonStatsCollectTimeouts"
                  ]
                },
                "description": "Retrieve rttMonStatsCollectTimeouts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCollectBusies",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCollectTable/rttMonStatsCollectEntry/rttMonStatsCollectBusies",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCollectTable",
                    "rttMonStatsCollectEntry",
                    "rttMonStatsCollectBusies"
                  ]
                },
                "description": "Retrieve rttMonStatsCollectBusies from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCollectNoConnections",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCollectTable/rttMonStatsCollectEntry/rttMonStatsCollectNoConnections",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCollectTable",
                    "rttMonStatsCollectEntry",
                    "rttMonStatsCollectNoConnections"
                  ]
                },
                "description": "Retrieve rttMonStatsCollectNoConnections from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCollectDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCollectTable/rttMonStatsCollectEntry/rttMonStatsCollectDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCollectTable",
                    "rttMonStatsCollectEntry",
                    "rttMonStatsCollectDrops"
                  ]
                },
                "description": "Retrieve rttMonStatsCollectDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCollectSequenceErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCollectTable/rttMonStatsCollectEntry/rttMonStatsCollectSequenceErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCollectTable",
                    "rttMonStatsCollectEntry",
                    "rttMonStatsCollectSequenceErrors"
                  ]
                },
                "description": "Retrieve rttMonStatsCollectSequenceErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCollectVerifyErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCollectTable/rttMonStatsCollectEntry/rttMonStatsCollectVerifyErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCollectTable",
                    "rttMonStatsCollectEntry",
                    "rttMonStatsCollectVerifyErrors"
                  ]
                },
                "description": "Retrieve rttMonStatsCollectVerifyErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCollectAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCollectTable/rttMonStatsCollectEntry/rttMonStatsCollectAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCollectTable",
                    "rttMonStatsCollectEntry",
                    "rttMonStatsCollectAddress"
                  ]
                },
                "description": "Retrieve rttMonStatsCollectAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCollectCtrlEnErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCollectTable/rttMonStatsCollectEntry/rttMonStatsCollectCtrlEnErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCollectTable",
                    "rttMonStatsCollectEntry",
                    "rttMonStatsCollectCtrlEnErrors"
                  ]
                },
                "description": "Retrieve rttMonStatsCollectCtrlEnErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCollectRetrieveErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsCollectTable/rttMonStatsCollectEntry/rttMonStatsCollectRetrieveErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsCollectTable",
                    "rttMonStatsCollectEntry",
                    "rttMonStatsCollectRetrieveErrors"
                  ]
                },
                "description": "Retrieve rttMonStatsCollectRetrieveErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsTotalsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsTotalsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsTotalsTable"
                  ]
                },
                "description": "Retrieve rttMonStatsTotalsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsTotalsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsTotalsTable/rttMonStatsTotalsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsTotalsTable",
                    "rttMonStatsTotalsEntry"
                  ]
                },
                "description": "Retrieve rttMonStatsTotalsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsTotalsTable/rttMonStatsTotalsEntry/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsTotalsTable",
                    "rttMonStatsTotalsEntry",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsCaptureStartTimeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsTotalsTable/rttMonStatsTotalsEntry/rttMonStatsCaptureStartTimeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsTotalsTable",
                    "rttMonStatsTotalsEntry",
                    "rttMonStatsCaptureStartTimeIndex"
                  ]
                },
                "description": "Retrieve rttMonStatsCaptureStartTimeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsTotalsElapsedTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsTotalsTable/rttMonStatsTotalsEntry/rttMonStatsTotalsElapsedTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsTotalsTable",
                    "rttMonStatsTotalsEntry",
                    "rttMonStatsTotalsElapsedTime"
                  ]
                },
                "description": "Retrieve rttMonStatsTotalsElapsedTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonStatsTotalsInitiations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonStatsTotalsTable/rttMonStatsTotalsEntry/rttMonStatsTotalsInitiations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonStatsTotalsTable",
                    "rttMonStatsTotalsEntry",
                    "rttMonStatsTotalsInitiations"
                  ]
                },
                "description": "Retrieve rttMonStatsTotalsInitiations from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsStartTimeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsStartTimeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsStartTimeIndex"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsStartTimeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsCompletions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsCompletions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsCompletions"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsCompletions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsOverThresholds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsOverThresholds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsOverThresholds"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsOverThresholds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsRTTSum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsRTTSum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsRTTSum"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsRTTSum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsRTTSum2Low",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsRTTSum2Low",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsRTTSum2Low"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsRTTSum2Low from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsRTTSum2High",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsRTTSum2High",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsRTTSum2High"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsRTTSum2High from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsRTTMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsRTTMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsRTTMin"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsRTTMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsRTTMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsRTTMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsRTTMax"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsRTTMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsDNSRTTSum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsDNSRTTSum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsDNSRTTSum"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsDNSRTTSum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsTCPConnectRTTSum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsTCPConnectRTTSum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsTCPConnectRTTSum"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsTCPConnectRTTSum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsTransactionRTTSum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsTransactionRTTSum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsTransactionRTTSum"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsTransactionRTTSum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsMessageBodyOctetsSum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsMessageBodyOctetsSum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsMessageBodyOctetsSum"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsMessageBodyOctetsSum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsDNSServerTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsDNSServerTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsDNSServerTimeout"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsDNSServerTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsTCPConnectTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsTCPConnectTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsTCPConnectTimeout"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsTCPConnectTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsTransactionTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsTransactionTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsTransactionTimeout"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsTransactionTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsDNSQueryError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsDNSQueryError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsDNSQueryError"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsDNSQueryError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsHTTPError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsHTTPError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsHTTPError"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsHTTPError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsError"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHTTPStatsBusies",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHTTPStatsTable/rttMonHTTPStatsEntry/rttMonHTTPStatsBusies",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHTTPStatsTable",
                    "rttMonHTTPStatsEntry",
                    "rttMonHTTPStatsBusies"
                  ]
                },
                "description": "Retrieve rttMonHTTPStatsBusies from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsStartTimeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsStartTimeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsStartTimeIndex"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsStartTimeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsCompletions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsCompletions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsCompletions"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsCompletions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsOverThresholds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsOverThresholds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsOverThresholds"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsOverThresholds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsNumOfRTT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsNumOfRTT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsNumOfRTT"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsNumOfRTT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsRTTSum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsRTTSum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsRTTSum"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsRTTSum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsRTTSum2Low",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsRTTSum2Low",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsRTTSum2Low"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsRTTSum2Low from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsRTTSum2High",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsRTTSum2High",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsRTTSum2High"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsRTTSum2High from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsRTTMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsRTTMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsRTTMin"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsRTTMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsRTTMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsRTTMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsRTTMax"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsRTTMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsMinOfPositivesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsMinOfPositivesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsMinOfPositivesSD"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsMinOfPositivesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsMaxOfPositivesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsMaxOfPositivesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsMaxOfPositivesSD"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsMaxOfPositivesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsNumOfPositivesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsNumOfPositivesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsNumOfPositivesSD"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsNumOfPositivesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsSumOfPositivesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsSumOfPositivesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsSumOfPositivesSD"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsSumOfPositivesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsSum2PositivesSDLow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsSum2PositivesSDLow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsSum2PositivesSDLow"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsSum2PositivesSDLow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsSum2PositivesSDHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsSum2PositivesSDHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsSum2PositivesSDHigh"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsSum2PositivesSDHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsMinOfNegativesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsMinOfNegativesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsMinOfNegativesSD"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsMinOfNegativesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsMaxOfNegativesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsMaxOfNegativesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsMaxOfNegativesSD"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsMaxOfNegativesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsNumOfNegativesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsNumOfNegativesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsNumOfNegativesSD"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsNumOfNegativesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsSumOfNegativesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsSumOfNegativesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsSumOfNegativesSD"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsSumOfNegativesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsSum2NegativesSDLow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsSum2NegativesSDLow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsSum2NegativesSDLow"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsSum2NegativesSDLow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsSum2NegativesSDHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsSum2NegativesSDHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsSum2NegativesSDHigh"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsSum2NegativesSDHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsMinOfPositivesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsMinOfPositivesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsMinOfPositivesDS"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsMinOfPositivesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsMaxOfPositivesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsMaxOfPositivesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsMaxOfPositivesDS"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsMaxOfPositivesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsNumOfPositivesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsNumOfPositivesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsNumOfPositivesDS"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsNumOfPositivesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsSumOfPositivesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsSumOfPositivesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsSumOfPositivesDS"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsSumOfPositivesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsSum2PositivesDSLow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsSum2PositivesDSLow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsSum2PositivesDSLow"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsSum2PositivesDSLow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsSum2PositivesDSHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsSum2PositivesDSHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsSum2PositivesDSHigh"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsSum2PositivesDSHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsMinOfNegativesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsMinOfNegativesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsMinOfNegativesDS"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsMinOfNegativesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsMaxOfNegativesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsMaxOfNegativesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsMaxOfNegativesDS"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsMaxOfNegativesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsNumOfNegativesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsNumOfNegativesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsNumOfNegativesDS"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsNumOfNegativesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsSumOfNegativesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsSumOfNegativesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsSumOfNegativesDS"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsSumOfNegativesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsSum2NegativesDSLow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsSum2NegativesDSLow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsSum2NegativesDSLow"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsSum2NegativesDSLow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsSum2NegativesDSHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsSum2NegativesDSHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsSum2NegativesDSHigh"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsSum2NegativesDSHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsPacketLossSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsPacketLossSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsPacketLossSD"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsPacketLossSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsPacketLossDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsPacketLossDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsPacketLossDS"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsPacketLossDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsPacketOutOfSequence",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsPacketOutOfSequence",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsPacketOutOfSequence"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsPacketOutOfSequence from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsPacketMIA",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsPacketMIA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsPacketMIA"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsPacketMIA from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsPacketLateArrival",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsPacketLateArrival",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsPacketLateArrival"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsPacketLateArrival from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsError"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsBusies",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsBusies",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsBusies"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsBusies from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsOWSumSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsOWSumSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsOWSumSD"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsOWSumSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsOWSum2SDLow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsOWSum2SDLow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsOWSum2SDLow"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsOWSum2SDLow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsOWSum2SDHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsOWSum2SDHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsOWSum2SDHigh"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsOWSum2SDHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsOWSumDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsOWSumDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsOWSumDS"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsOWSumDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsOWSum2DSLow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsOWSum2DSLow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsOWSum2DSLow"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsOWSum2DSLow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsOWSum2DSHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsOWSum2DSHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsOWSum2DSHigh"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsOWSum2DSHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsNumOfOW",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsNumOfOW",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsNumOfOW"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsNumOfOW from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsOWMinSDNew",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsOWMinSDNew",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsOWMinSDNew"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsOWMinSDNew from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsOWMaxSDNew",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsOWMaxSDNew",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsOWMaxSDNew"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsOWMaxSDNew from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsOWMinDSNew",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsOWMinDSNew",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsOWMinDSNew"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsOWMinDSNew from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsOWMaxDSNew",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsOWMaxDSNew",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsOWMaxDSNew"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsOWMaxDSNew from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsMinOfMOS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsMinOfMOS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsMinOfMOS"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsMinOfMOS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsMaxOfMOS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsMaxOfMOS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsMaxOfMOS"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsMaxOfMOS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsMinOfICPIF",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsMinOfICPIF",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsMinOfICPIF"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsMinOfICPIF from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsMaxOfICPIF",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsMaxOfICPIF",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsMaxOfICPIF"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsMaxOfICPIF from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsIAJOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsIAJOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsIAJOut"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsIAJOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsIAJIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsIAJIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsIAJIn"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsIAJIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsAvgJitter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsAvgJitter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsAvgJitter"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsAvgJitter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsAvgJitterSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsAvgJitterSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsAvgJitterSD"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsAvgJitterSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsAvgJitterDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsAvgJitterDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsAvgJitterDS"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsAvgJitterDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsUnSyncRTs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsUnSyncRTs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsUnSyncRTs"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsUnSyncRTs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsRTTSumHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsRTTSumHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsRTTSumHigh"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsRTTSumHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsOWSumSDHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsOWSumSDHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsOWSumSDHigh"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsOWSumSDHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonJitterStatsOWSumDSHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonJitterStatsTable/rttMonJitterStatsEntry/rttMonJitterStatsOWSumDSHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonJitterStatsTable",
                    "rttMonJitterStatsEntry",
                    "rttMonJitterStatsOWSumDSHigh"
                  ]
                },
                "description": "Retrieve rttMonJitterStatsOWSumDSHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsGroupIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsGroupIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsGroupIndex"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsGroupIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsStartTimeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsStartTimeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsStartTimeIndex"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsStartTimeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsTargetPE",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsTargetPE",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsTargetPE"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsTargetPE from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsNumOfPass",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsNumOfPass",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsNumOfPass"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsNumOfPass from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsNumOfFail",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsNumOfFail",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsNumOfFail"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsNumOfFail from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsNumOfTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsNumOfTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsNumOfTimeout"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsNumOfTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsAvgRTT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsAvgRTT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsAvgRTT"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsAvgRTT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsMinRTT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsMinRTT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsMinRTT"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsMinRTT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsMaxRTT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsMaxRTT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsMaxRTT"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsMaxRTT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsMinNumPaths",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsMinNumPaths",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsMinNumPaths"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsMinNumPaths from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsMaxNumPaths",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsMaxNumPaths",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsMaxNumPaths"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsMaxNumPaths from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsLPDStartTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsLPDStartTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsLPDStartTime"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsLPDStartTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsLPDFailOccurred",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsLPDFailOccurred",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsLPDFailOccurred"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsLPDFailOccurred from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsLPDFailCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsLPDFailCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsLPDFailCause"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsLPDFailCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsLPDCompTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsLPDCompTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsLPDCompTime"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsLPDCompTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsGroupStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsGroupStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsGroupStatus"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsGroupStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsGroupProbeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsGroupProbeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsGroupProbeIndex"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsGroupProbeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsPathIds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsPathIds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsPathIds"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsPathIds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsProbeStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsProbeStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsProbeStatus"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsProbeStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsResetTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLpdGrpStatsTable/rttMonLpdGrpStatsEntry/rttMonLpdGrpStatsResetTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLpdGrpStatsTable",
                    "rttMonLpdGrpStatsEntry",
                    "rttMonLpdGrpStatsResetTime"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsResetTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryCollectionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHistoryCollectionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHistoryCollectionTable"
                  ]
                },
                "description": "Retrieve rttMonHistoryCollectionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryCollectionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHistoryCollectionTable/rttMonHistoryCollectionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHistoryCollectionTable",
                    "rttMonHistoryCollectionEntry"
                  ]
                },
                "description": "Retrieve rttMonHistoryCollectionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHistoryCollectionTable/rttMonHistoryCollectionEntry/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHistoryCollectionTable",
                    "rttMonHistoryCollectionEntry",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryCollectionLifeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHistoryCollectionTable/rttMonHistoryCollectionEntry/rttMonHistoryCollectionLifeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHistoryCollectionTable",
                    "rttMonHistoryCollectionEntry",
                    "rttMonHistoryCollectionLifeIndex"
                  ]
                },
                "description": "Retrieve rttMonHistoryCollectionLifeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryCollectionBucketIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHistoryCollectionTable/rttMonHistoryCollectionEntry/rttMonHistoryCollectionBucketIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHistoryCollectionTable",
                    "rttMonHistoryCollectionEntry",
                    "rttMonHistoryCollectionBucketIndex"
                  ]
                },
                "description": "Retrieve rttMonHistoryCollectionBucketIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryCollectionSampleIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHistoryCollectionTable/rttMonHistoryCollectionEntry/rttMonHistoryCollectionSampleIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHistoryCollectionTable",
                    "rttMonHistoryCollectionEntry",
                    "rttMonHistoryCollectionSampleIndex"
                  ]
                },
                "description": "Retrieve rttMonHistoryCollectionSampleIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryCollectionSampleTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHistoryCollectionTable/rttMonHistoryCollectionEntry/rttMonHistoryCollectionSampleTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHistoryCollectionTable",
                    "rttMonHistoryCollectionEntry",
                    "rttMonHistoryCollectionSampleTime"
                  ]
                },
                "description": "Retrieve rttMonHistoryCollectionSampleTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryCollectionAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHistoryCollectionTable/rttMonHistoryCollectionEntry/rttMonHistoryCollectionAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHistoryCollectionTable",
                    "rttMonHistoryCollectionEntry",
                    "rttMonHistoryCollectionAddress"
                  ]
                },
                "description": "Retrieve rttMonHistoryCollectionAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryCollectionCompletionTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHistoryCollectionTable/rttMonHistoryCollectionEntry/rttMonHistoryCollectionCompletionTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHistoryCollectionTable",
                    "rttMonHistoryCollectionEntry",
                    "rttMonHistoryCollectionCompletionTime"
                  ]
                },
                "description": "Retrieve rttMonHistoryCollectionCompletionTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryCollectionSense",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHistoryCollectionTable/rttMonHistoryCollectionEntry/rttMonHistoryCollectionSense",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHistoryCollectionTable",
                    "rttMonHistoryCollectionEntry",
                    "rttMonHistoryCollectionSense"
                  ]
                },
                "description": "Retrieve rttMonHistoryCollectionSense from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryCollectionApplSpecificSense",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHistoryCollectionTable/rttMonHistoryCollectionEntry/rttMonHistoryCollectionApplSpecificSense",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHistoryCollectionTable",
                    "rttMonHistoryCollectionEntry",
                    "rttMonHistoryCollectionApplSpecificSense"
                  ]
                },
                "description": "Retrieve rttMonHistoryCollectionApplSpecificSense from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryCollectionSenseDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonHistoryCollectionTable/rttMonHistoryCollectionEntry/rttMonHistoryCollectionSenseDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonHistoryCollectionTable",
                    "rttMonHistoryCollectionEntry",
                    "rttMonHistoryCollectionSenseDescription"
                  ]
                },
                "description": "Retrieve rttMonHistoryCollectionSenseDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestHTTPOperTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestHTTPOperTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestHTTPOperTable"
                  ]
                },
                "description": "Retrieve rttMonLatestHTTPOperTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestHTTPOperEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestHTTPOperTable/rttMonLatestHTTPOperEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestHTTPOperTable",
                    "rttMonLatestHTTPOperEntry"
                  ]
                },
                "description": "Retrieve rttMonLatestHTTPOperEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestHTTPOperTable/rttMonLatestHTTPOperEntry/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestHTTPOperTable",
                    "rttMonLatestHTTPOperEntry",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestHTTPOperRTT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestHTTPOperTable/rttMonLatestHTTPOperEntry/rttMonLatestHTTPOperRTT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestHTTPOperTable",
                    "rttMonLatestHTTPOperEntry",
                    "rttMonLatestHTTPOperRTT"
                  ]
                },
                "description": "Retrieve rttMonLatestHTTPOperRTT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestHTTPOperDNSRTT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestHTTPOperTable/rttMonLatestHTTPOperEntry/rttMonLatestHTTPOperDNSRTT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestHTTPOperTable",
                    "rttMonLatestHTTPOperEntry",
                    "rttMonLatestHTTPOperDNSRTT"
                  ]
                },
                "description": "Retrieve rttMonLatestHTTPOperDNSRTT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestHTTPOperTCPConnectRTT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestHTTPOperTable/rttMonLatestHTTPOperEntry/rttMonLatestHTTPOperTCPConnectRTT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestHTTPOperTable",
                    "rttMonLatestHTTPOperEntry",
                    "rttMonLatestHTTPOperTCPConnectRTT"
                  ]
                },
                "description": "Retrieve rttMonLatestHTTPOperTCPConnectRTT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestHTTPOperTransactionRTT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestHTTPOperTable/rttMonLatestHTTPOperEntry/rttMonLatestHTTPOperTransactionRTT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestHTTPOperTable",
                    "rttMonLatestHTTPOperEntry",
                    "rttMonLatestHTTPOperTransactionRTT"
                  ]
                },
                "description": "Retrieve rttMonLatestHTTPOperTransactionRTT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestHTTPOperMessageBodyOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestHTTPOperTable/rttMonLatestHTTPOperEntry/rttMonLatestHTTPOperMessageBodyOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestHTTPOperTable",
                    "rttMonLatestHTTPOperEntry",
                    "rttMonLatestHTTPOperMessageBodyOctets"
                  ]
                },
                "description": "Retrieve rttMonLatestHTTPOperMessageBodyOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestHTTPOperSense",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestHTTPOperTable/rttMonLatestHTTPOperEntry/rttMonLatestHTTPOperSense",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestHTTPOperTable",
                    "rttMonLatestHTTPOperEntry",
                    "rttMonLatestHTTPOperSense"
                  ]
                },
                "description": "Retrieve rttMonLatestHTTPOperSense from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestHTTPErrorSenseDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestHTTPOperTable/rttMonLatestHTTPOperEntry/rttMonLatestHTTPErrorSenseDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestHTTPOperTable",
                    "rttMonLatestHTTPOperEntry",
                    "rttMonLatestHTTPErrorSenseDescription"
                  ]
                },
                "description": "Retrieve rttMonLatestHTTPErrorSenseDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperNumOfRTT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperNumOfRTT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperNumOfRTT"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperNumOfRTT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperRTTSum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperRTTSum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperRTTSum"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperRTTSum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperRTTSum2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperRTTSum2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperRTTSum2"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperRTTSum2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperRTTMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperRTTMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperRTTMin"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperRTTMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperRTTMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperRTTMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperRTTMax"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperRTTMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperMinOfPositivesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperMinOfPositivesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperMinOfPositivesSD"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperMinOfPositivesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperMaxOfPositivesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperMaxOfPositivesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperMaxOfPositivesSD"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperMaxOfPositivesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperNumOfPositivesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperNumOfPositivesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperNumOfPositivesSD"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperNumOfPositivesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperSumOfPositivesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperSumOfPositivesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperSumOfPositivesSD"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperSumOfPositivesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperSum2PositivesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperSum2PositivesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperSum2PositivesSD"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperSum2PositivesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperMinOfNegativesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperMinOfNegativesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperMinOfNegativesSD"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperMinOfNegativesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperMaxOfNegativesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperMaxOfNegativesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperMaxOfNegativesSD"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperMaxOfNegativesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperNumOfNegativesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperNumOfNegativesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperNumOfNegativesSD"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperNumOfNegativesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperSumOfNegativesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperSumOfNegativesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperSumOfNegativesSD"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperSumOfNegativesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperSum2NegativesSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperSum2NegativesSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperSum2NegativesSD"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperSum2NegativesSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperMinOfPositivesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperMinOfPositivesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperMinOfPositivesDS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperMinOfPositivesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperMaxOfPositivesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperMaxOfPositivesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperMaxOfPositivesDS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperMaxOfPositivesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperNumOfPositivesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperNumOfPositivesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperNumOfPositivesDS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperNumOfPositivesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperSumOfPositivesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperSumOfPositivesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperSumOfPositivesDS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperSumOfPositivesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperSum2PositivesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperSum2PositivesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperSum2PositivesDS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperSum2PositivesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperMinOfNegativesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperMinOfNegativesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperMinOfNegativesDS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperMinOfNegativesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperMaxOfNegativesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperMaxOfNegativesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperMaxOfNegativesDS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperMaxOfNegativesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperNumOfNegativesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperNumOfNegativesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperNumOfNegativesDS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperNumOfNegativesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperSumOfNegativesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperSumOfNegativesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperSumOfNegativesDS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperSumOfNegativesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperSum2NegativesDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperSum2NegativesDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperSum2NegativesDS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperSum2NegativesDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperPacketLossSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperPacketLossSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperPacketLossSD"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperPacketLossSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperPacketLossDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperPacketLossDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperPacketLossDS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperPacketLossDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperPacketOutOfSequence",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperPacketOutOfSequence",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperPacketOutOfSequence"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperPacketOutOfSequence from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperPacketMIA",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperPacketMIA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperPacketMIA"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperPacketMIA from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperPacketLateArrival",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperPacketLateArrival",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperPacketLateArrival"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperPacketLateArrival from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperSense",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperSense",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperSense"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperSense from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterErrorSenseDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterErrorSenseDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterErrorSenseDescription"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterErrorSenseDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperOWSumSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperOWSumSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperOWSumSD"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperOWSumSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperOWSum2SD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperOWSum2SD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperOWSum2SD"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperOWSum2SD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperOWMinSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperOWMinSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperOWMinSD"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperOWMinSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperOWMaxSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperOWMaxSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperOWMaxSD"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperOWMaxSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperOWSumDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperOWSumDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperOWSumDS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperOWSumDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperOWSum2DS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperOWSum2DS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperOWSum2DS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperOWSum2DS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperOWMinDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperOWMinDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperOWMinDS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperOWMinDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperOWMaxDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperOWMaxDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperOWMaxDS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperOWMaxDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperNumOfOW",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperNumOfOW",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperNumOfOW"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperNumOfOW from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperMOS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperMOS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperMOS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperMOS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperICPIF",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperICPIF",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperICPIF"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperICPIF from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperIAJOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperIAJOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperIAJOut"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperIAJOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperIAJIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperIAJIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperIAJIn"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperIAJIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperAvgJitter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperAvgJitter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperAvgJitter"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperAvgJitter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperAvgSDJ",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperAvgSDJ",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperAvgSDJ"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperAvgSDJ from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperAvgDSJ",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperAvgDSJ",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperAvgDSJ"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperAvgDSJ from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperOWAvgSD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperOWAvgSD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperOWAvgSD"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperOWAvgSD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperOWAvgDS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperOWAvgDS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperOWAvgDS"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperOWAvgDS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperNTPState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperNTPState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperNTPState"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperNTPState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperUnSyncRTs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperUnSyncRTs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperUnSyncRTs"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperUnSyncRTs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperRTTSumHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperRTTSumHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperRTTSumHigh"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperRTTSumHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperRTTSum2High",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperRTTSum2High",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperRTTSum2High"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperRTTSum2High from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperOWSumSDHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperOWSumSDHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperOWSumSDHigh"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperOWSumSDHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperOWSum2SDHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperOWSum2SDHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperOWSum2SDHigh"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperOWSum2SDHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperOWSumDSHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperOWSumDSHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperOWSumDSHigh"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperOWSumDSHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLatestJitterOperOWSum2DSHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/rttMonLatestJitterOperEntry/rttMonLatestJitterOperOWSum2DSHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "rttMonLatestJitterOperEntry",
                    "rttMonLatestJitterOperOWSum2DSHigh"
                  ]
                },
                "description": "Retrieve rttMonLatestJitterOperOWSum2DSHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-1/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-1",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminTag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-1/rttMonCtrlAdminTag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-1",
                    "rttMonCtrlAdminTag"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminTag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-2/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-2",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryCollectionLifeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-2/rttMonHistoryCollectionLifeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-2",
                    "rttMonHistoryCollectionLifeIndex"
                  ]
                },
                "description": "Retrieve rttMonHistoryCollectionLifeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryCollectionBucketIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-2/rttMonHistoryCollectionBucketIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-2",
                    "rttMonHistoryCollectionBucketIndex"
                  ]
                },
                "description": "Retrieve rttMonHistoryCollectionBucketIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryCollectionSampleIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-2/rttMonHistoryCollectionSampleIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-2",
                    "rttMonHistoryCollectionSampleIndex"
                  ]
                },
                "description": "Retrieve rttMonHistoryCollectionSampleIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonHistoryCollectionAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-2/rttMonHistoryCollectionAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-2",
                    "rttMonHistoryCollectionAddress"
                  ]
                },
                "description": "Retrieve rttMonHistoryCollectionAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-3/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-3",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlOperConnectionLostOccurred",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-3/rttMonCtrlOperConnectionLostOccurred",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-3",
                    "rttMonCtrlOperConnectionLostOccurred"
                  ]
                },
                "description": "Retrieve rttMonCtrlOperConnectionLostOccurred from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlOperTimeoutOccurred",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-3/rttMonCtrlOperTimeoutOccurred",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-3",
                    "rttMonCtrlOperTimeoutOccurred"
                  ]
                },
                "description": "Retrieve rttMonCtrlOperTimeoutOccurred from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlOperOverThresholdOccurred",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-3/rttMonCtrlOperOverThresholdOccurred",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-3",
                    "rttMonCtrlOperOverThresholdOccurred"
                  ]
                },
                "description": "Retrieve rttMonCtrlOperOverThresholdOccurred from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlOperVerifyErrorOccurred",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-3/rttMonCtrlOperVerifyErrorOccurred",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-3",
                    "rttMonCtrlOperVerifyErrorOccurred"
                  ]
                },
                "description": "Retrieve rttMonCtrlOperVerifyErrorOccurred from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactConfigIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-3/rttMonReactConfigIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-3",
                    "rttMonReactConfigIndex"
                  ]
                },
                "description": "Retrieve rttMonReactConfigIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactVar",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-3/rttMonReactVar",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-3",
                    "rttMonReactVar"
                  ]
                },
                "description": "Retrieve rttMonReactVar from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-4/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-4",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactConfigIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-4/rttMonReactConfigIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-4",
                    "rttMonReactConfigIndex"
                  ]
                },
                "description": "Retrieve rttMonReactConfigIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactOccurred",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-4/rttMonReactOccurred",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-4",
                    "rttMonReactOccurred"
                  ]
                },
                "description": "Retrieve rttMonReactOccurred from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-5/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-5",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactConfigIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-5/rttMonReactConfigIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-5",
                    "rttMonReactConfigIndex"
                  ]
                },
                "description": "Retrieve rttMonReactConfigIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-5/rttMonReactValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-5",
                    "rttMonReactValue"
                  ]
                },
                "description": "Retrieve rttMonReactValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-6"
                  ]
                },
                "description": "Retrieve object-6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-6/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-6",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactConfigIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-6/rttMonReactConfigIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-6",
                    "rttMonReactConfigIndex"
                  ]
                },
                "description": "Retrieve rttMonReactConfigIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactThresholdRising",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-6/rttMonReactThresholdRising",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-6",
                    "rttMonReactThresholdRising"
                  ]
                },
                "description": "Retrieve rttMonReactThresholdRising from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-7",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-7",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-7"
                  ]
                },
                "description": "Retrieve object-7 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-7/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-7",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactConfigIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-7/rttMonReactConfigIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-7",
                    "rttMonReactConfigIndex"
                  ]
                },
                "description": "Retrieve rttMonReactConfigIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonReactThresholdFalling",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-7/rttMonReactThresholdFalling",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-7",
                    "rttMonReactThresholdFalling"
                  ]
                },
                "description": "Retrieve rttMonReactThresholdFalling from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-8",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-8",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-8"
                  ]
                },
                "description": "Retrieve object-8 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonCtrlAdminIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-8/rttMonCtrlAdminIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-8",
                    "rttMonCtrlAdminIndex"
                  ]
                },
                "description": "Retrieve rttMonCtrlAdminIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonEchoAdminLSPSelector",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-8/rttMonEchoAdminLSPSelector",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-8",
                    "rttMonEchoAdminLSPSelector"
                  ]
                },
                "description": "Retrieve rttMonEchoAdminLSPSelector from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-1/rttMplsVpnMonCtrlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-1",
                    "rttMplsVpnMonCtrlIndex"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMplsVpnMonCtrlTag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-1/rttMplsVpnMonCtrlTag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-1",
                    "rttMplsVpnMonCtrlTag"
                  ]
                },
                "description": "Retrieve rttMplsVpnMonCtrlTag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsGroupIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-2/rttMonLpdGrpStatsGroupIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-2",
                    "rttMonLpdGrpStatsGroupIndex"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsGroupIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsStartTimeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-2/rttMonLpdGrpStatsStartTimeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-2",
                    "rttMonLpdGrpStatsStartTimeIndex"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsStartTimeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsTargetPE",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-2/rttMonLpdGrpStatsTargetPE",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-2",
                    "rttMonLpdGrpStatsTargetPE"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsTargetPE from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsGroupIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-3/rttMonLpdGrpStatsGroupIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-3",
                    "rttMonLpdGrpStatsGroupIndex"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsGroupIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsStartTimeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-3/rttMonLpdGrpStatsStartTimeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-3",
                    "rttMonLpdGrpStatsStartTimeIndex"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsStartTimeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsLPDFailCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-3/rttMonLpdGrpStatsLPDFailCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-3",
                    "rttMonLpdGrpStatsLPDFailCause"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsLPDFailCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsGroupIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-4/rttMonLpdGrpStatsGroupIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-4",
                    "rttMonLpdGrpStatsGroupIndex"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsGroupIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsStartTimeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-4/rttMonLpdGrpStatsStartTimeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-4",
                    "rttMonLpdGrpStatsStartTimeIndex"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsStartTimeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsLPDFailOccurred",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-4/rttMonLpdGrpStatsLPDFailOccurred",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-4",
                    "rttMonLpdGrpStatsLPDFailOccurred"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsLPDFailOccurred from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rttMonLpdGrpStatsGroupStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-RTTMON-MIB:CISCO-RTTMON-MIB/rttMonLatestJitterOperTable/object-3/rttMonLpdGrpStatsGroupStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-RTTMON-MIB:CISCO-RTTMON-MIB",
                    "rttMonLatestJitterOperTable",
                    "object-3",
                    "rttMonLpdGrpStatsGroupStatus"
                  ]
                },
                "description": "Retrieve rttMonLpdGrpStatsGroupStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB\n\nMIB data from `CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB` module.\n\n**Root containers:** 1 (CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB)\n**Paths:** 176 | **Descendants:** 177\n\nAll endpoints are read-only (GET).\n\nEndpoints: 176 | Operations: 176",
          "item": [
            {
              "name": "GET Get CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB"
                  ]
                },
                "description": "Retrieve CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsInstanceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsInstanceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsInstanceTable"
                  ]
                },
                "description": "Retrieve csbCallStatsInstanceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsInstanceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsInstanceTable/csbCallStatsInstanceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsInstanceTable",
                    "csbCallStatsInstanceEntry"
                  ]
                },
                "description": "Retrieve csbCallStatsInstanceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsInstanceTable/csbCallStatsInstanceEntry/csbCallStatsInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsInstanceTable",
                    "csbCallStatsInstanceEntry",
                    "csbCallStatsInstanceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsInstancePhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsInstanceTable/csbCallStatsInstanceEntry/csbCallStatsInstancePhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsInstanceTable",
                    "csbCallStatsInstanceEntry",
                    "csbCallStatsInstancePhysicalIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsInstancePhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable"
                  ]
                },
                "description": "Retrieve csbCallStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry"
                  ]
                },
                "description": "Retrieve csbCallStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsInstanceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsServiceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsServiceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsServiceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsServiceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsSbcName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsSbcName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsSbcName"
                  ]
                },
                "description": "Retrieve csbCallStatsSbcName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsCallsHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsCallsHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsCallsHigh"
                  ]
                },
                "description": "Retrieve csbCallStatsCallsHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsRate1Sec",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsRate1Sec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsRate1Sec"
                  ]
                },
                "description": "Retrieve csbCallStatsRate1Sec from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsCallsLow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsCallsLow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsCallsLow"
                  ]
                },
                "description": "Retrieve csbCallStatsCallsLow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsAvailableFlows",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsAvailableFlows",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsAvailableFlows"
                  ]
                },
                "description": "Retrieve csbCallStatsAvailableFlows from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsUsedFlows",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsUsedFlows",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsUsedFlows"
                  ]
                },
                "description": "Retrieve csbCallStatsUsedFlows from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsPeakFlows",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsPeakFlows",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsPeakFlows"
                  ]
                },
                "description": "Retrieve csbCallStatsPeakFlows from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsTotalFlows",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsTotalFlows",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsTotalFlows"
                  ]
                },
                "description": "Retrieve csbCallStatsTotalFlows from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsUsedSigFlows",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsUsedSigFlows",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsUsedSigFlows"
                  ]
                },
                "description": "Retrieve csbCallStatsUsedSigFlows from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsPeakSigFlows",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsPeakSigFlows",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsPeakSigFlows"
                  ]
                },
                "description": "Retrieve csbCallStatsPeakSigFlows from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsTotalSigFlows",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsTotalSigFlows",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsTotalSigFlows"
                  ]
                },
                "description": "Retrieve csbCallStatsTotalSigFlows from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsAvailablePktRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsAvailablePktRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsAvailablePktRate"
                  ]
                },
                "description": "Retrieve csbCallStatsAvailablePktRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsUnclassifiedPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsUnclassifiedPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsUnclassifiedPkts"
                  ]
                },
                "description": "Retrieve csbCallStatsUnclassifiedPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsRTPPktsSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsRTPPktsSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsRTPPktsSent"
                  ]
                },
                "description": "Retrieve csbCallStatsRTPPktsSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsRTPPktsRcvd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsRTPPktsRcvd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsRTPPktsRcvd"
                  ]
                },
                "description": "Retrieve csbCallStatsRTPPktsRcvd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsRTPPktsDiscard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsRTPPktsDiscard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsRTPPktsDiscard"
                  ]
                },
                "description": "Retrieve csbCallStatsRTPPktsDiscard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsRTPOctetsSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsRTPOctetsSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsRTPOctetsSent"
                  ]
                },
                "description": "Retrieve csbCallStatsRTPOctetsSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsRTPOctetsRcvd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsRTPOctetsRcvd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsRTPOctetsRcvd"
                  ]
                },
                "description": "Retrieve csbCallStatsRTPOctetsRcvd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsRTPOctetsDiscard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsRTPOctetsDiscard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsRTPOctetsDiscard"
                  ]
                },
                "description": "Retrieve csbCallStatsRTPOctetsDiscard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsNoMediaCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsNoMediaCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsNoMediaCount"
                  ]
                },
                "description": "Retrieve csbCallStatsNoMediaCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsRouteErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsRouteErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsRouteErrors"
                  ]
                },
                "description": "Retrieve csbCallStatsRouteErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsAvailableTranscodeFlows",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsAvailableTranscodeFlows",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsAvailableTranscodeFlows"
                  ]
                },
                "description": "Retrieve csbCallStatsAvailableTranscodeFlows from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsActiveTranscodeFlows",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsActiveTranscodeFlows",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsActiveTranscodeFlows"
                  ]
                },
                "description": "Retrieve csbCallStatsActiveTranscodeFlows from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsPeakTranscodeFlows",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsPeakTranscodeFlows",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsPeakTranscodeFlows"
                  ]
                },
                "description": "Retrieve csbCallStatsPeakTranscodeFlows from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsTotalTranscodeFlows",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCallStatsTable/csbCallStatsEntry/csbCallStatsTotalTranscodeFlows",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCallStatsTable",
                    "csbCallStatsEntry",
                    "csbCallStatsTotalTranscodeFlows"
                  ]
                },
                "description": "Retrieve csbCallStatsTotalTranscodeFlows from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCallStatsInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCallStatsInstanceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsServiceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCallStatsServiceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCallStatsServiceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsServiceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsInterval"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsActiveCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsActiveCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsActiveCalls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsActiveCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsActivatingCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsActivatingCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsActivatingCalls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsActivatingCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsDeactivatingCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsDeactivatingCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsDeactivatingCalls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsDeactivatingCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsTotalCallAttempts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsTotalCallAttempts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsTotalCallAttempts"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsTotalCallAttempts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsFailedCallAttempts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsFailedCallAttempts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsFailedCallAttempts"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsFailedCallAttempts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsCallRoutingFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsCallRoutingFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsCallRoutingFailure"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsCallRoutingFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsCallResourceFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsCallResourceFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsCallResourceFailure"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsCallResourceFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsCallMediaFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsCallMediaFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsCallMediaFailure"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsCallMediaFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsCallSigFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsCallSigFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsCallSigFailure"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsCallSigFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsActiveCallFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsActiveCallFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsActiveCallFailure"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsActiveCallFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsCongestionFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsCongestionFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsCongestionFailure"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsCongestionFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsCallSetupPolicyFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsCallSetupPolicyFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsCallSetupPolicyFailure"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsCallSetupPolicyFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsCallSetupNAPolicyFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsCallSetupNAPolicyFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsCallSetupNAPolicyFailure"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsCallSetupNAPolicyFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsCallSetupRoutingPolicyFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsCallSetupRoutingPolicyFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsCallSetupRoutingPolicyFailure"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsCallSetupRoutingPolicyFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsCallSetupCACPolicyFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsCallSetupCACPolicyFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsCallSetupCACPolicyFailure"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsCallSetupCACPolicyFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsCallSetupCACCallLimitFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsCallSetupCACCallLimitFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsCallSetupCACCallLimitFailure"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsCallSetupCACCallLimitFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsCallSetupCACRateLimitFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsCallSetupCACRateLimitFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsCallSetupCACRateLimitFailure"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsCallSetupCACRateLimitFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsCallSetupCACBandwidthFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsCallSetupCACBandwidthFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsCallSetupCACBandwidthFailure"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsCallSetupCACBandwidthFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsCallSetupCACMediaLimitFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsCallSetupCACMediaLimitFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsCallSetupCACMediaLimitFailure"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsCallSetupCACMediaLimitFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsCallSetupCACMediaUpdateFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsTimestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsTimestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsTimestamp"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsTimestamp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsTranscodedCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsTranscodedCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsTranscodedCalls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsTranscodedCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsTransratedCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsTransratedCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsTransratedCalls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsTransratedCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsTotalCallUpdateFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsTotalCallUpdateFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsTotalCallUpdateFailure"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsTotalCallUpdateFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsActiveIpv6Calls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsActiveIpv6Calls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsActiveIpv6Calls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsActiveIpv6Calls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsActiveEmergencyCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsActiveEmergencyCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsActiveEmergencyCalls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsActiveEmergencyCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsActiveE2EmergencyCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsActiveE2EmergencyCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsActiveE2EmergencyCalls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsActiveE2EmergencyCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsImsRxActiveCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsImsRxActiveCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsImsRxActiveCalls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsImsRxActiveCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsImsRxCallSetupFaiures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsImsRxCallSetupFaiures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsImsRxCallSetupFaiures"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsImsRxCallSetupFaiures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsImsRxCallRenegotiationAttempts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsImsRxCallRenegotiationAttempts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsImsRxCallRenegotiationAttempts"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsImsRxCallRenegotiationAttempts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsImsRxCallRenegotiationFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsImsRxCallRenegotiationFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsImsRxCallRenegotiationFailures"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsImsRxCallRenegotiationFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsAudioTranscodedCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsAudioTranscodedCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsAudioTranscodedCalls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsAudioTranscodedCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsFaxTranscodedCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsFaxTranscodedCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsFaxTranscodedCalls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsFaxTranscodedCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsRtpDisallowedFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsRtpDisallowedFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsRtpDisallowedFailures"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsRtpDisallowedFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsSrtpDisallowedFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsSrtpDisallowedFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsSrtpDisallowedFailures"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsSrtpDisallowedFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsNonSrtpCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsNonSrtpCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsNonSrtpCalls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsNonSrtpCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsSrtpNonIwCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsSrtpNonIwCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsSrtpNonIwCalls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsSrtpNonIwCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsSrtpIwCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsSrtpIwCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsSrtpIwCalls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsSrtpIwCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsDtmfIw2833Calls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsDtmfIw2833Calls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsDtmfIw2833Calls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsDtmfIw2833Calls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsDtmfIwInbandCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsDtmfIwInbandCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsDtmfIwInbandCalls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsDtmfIwInbandCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsDtmfIw2833InbandCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsDtmfIw2833InbandCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsDtmfIw2833InbandCalls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsDtmfIw2833InbandCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsTotalTapsRequested",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsTotalTapsRequested",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsTotalTapsRequested"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsTotalTapsRequested from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsTotalTapsSucceeded",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsTotalTapsSucceeded",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsTotalTapsSucceeded"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsTotalTapsSucceeded from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicStatsCurrentTaps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicStatsCurrentTaps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicStatsCurrentTaps"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicStatsCurrentTaps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCurrPeriodicIpsecCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbCurrPeriodicStatsTable/csbCurrPeriodicStatsEntry/csbCurrPeriodicIpsecCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbCurrPeriodicStatsTable",
                    "csbCurrPeriodicStatsEntry",
                    "csbCurrPeriodicIpsecCalls"
                  ]
                },
                "description": "Retrieve csbCurrPeriodicIpsecCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable"
                  ]
                },
                "description": "Retrieve csbHistoryStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry"
                  ]
                },
                "description": "Retrieve csbHistoryStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbCallStatsInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbCallStatsInstanceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsServiceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbCallStatsServiceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbCallStatsServiceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsServiceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsInterval"
                  ]
                },
                "description": "Retrieve csbHistoryStatsInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsElements",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsElements",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsElements"
                  ]
                },
                "description": "Retrieve csbHistoryStatsElements from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsActiveCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsActiveCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsActiveCalls"
                  ]
                },
                "description": "Retrieve csbHistoryStatsActiveCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsTotalCallAttempts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsTotalCallAttempts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsTotalCallAttempts"
                  ]
                },
                "description": "Retrieve csbHistoryStatsTotalCallAttempts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsFailedCallAttempts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsFailedCallAttempts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsFailedCallAttempts"
                  ]
                },
                "description": "Retrieve csbHistoryStatsFailedCallAttempts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsCallRoutingFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsCallRoutingFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsCallRoutingFailure"
                  ]
                },
                "description": "Retrieve csbHistoryStatsCallRoutingFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsCallResourceFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsCallResourceFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsCallResourceFailure"
                  ]
                },
                "description": "Retrieve csbHistoryStatsCallResourceFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsCallMediaFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsCallMediaFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsCallMediaFailure"
                  ]
                },
                "description": "Retrieve csbHistoryStatsCallMediaFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsFailSigFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsFailSigFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsFailSigFailure"
                  ]
                },
                "description": "Retrieve csbHistoryStatsFailSigFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsActiveCallFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsActiveCallFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsActiveCallFailure"
                  ]
                },
                "description": "Retrieve csbHistoryStatsActiveCallFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsCongestionFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsCongestionFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsCongestionFailure"
                  ]
                },
                "description": "Retrieve csbHistoryStatsCongestionFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsCallSetupPolicyFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsCallSetupPolicyFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsCallSetupPolicyFailure"
                  ]
                },
                "description": "Retrieve csbHistoryStatsCallSetupPolicyFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsCallSetupNAPolicyFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsCallSetupNAPolicyFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsCallSetupNAPolicyFailure"
                  ]
                },
                "description": "Retrieve csbHistoryStatsCallSetupNAPolicyFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsCallSetupRoutingPolicyFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsCallSetupRoutingPolicyFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsCallSetupRoutingPolicyFailure"
                  ]
                },
                "description": "Retrieve csbHistoryStatsCallSetupRoutingPolicyFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsCallSetupCACPolicyFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsCallSetupCACPolicyFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsCallSetupCACPolicyFailure"
                  ]
                },
                "description": "Retrieve csbHistoryStatsCallSetupCACPolicyFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsCallSetupCACCallLimitFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsCallSetupCACCallLimitFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsCallSetupCACCallLimitFailure"
                  ]
                },
                "description": "Retrieve csbHistoryStatsCallSetupCACCallLimitFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsCallSetupCACRateLimitFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsCallSetupCACRateLimitFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsCallSetupCACRateLimitFailure"
                  ]
                },
                "description": "Retrieve csbHistoryStatsCallSetupCACRateLimitFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsCallSetupCACBandwidthFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsCallSetupCACBandwidthFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsCallSetupCACBandwidthFailure"
                  ]
                },
                "description": "Retrieve csbHistoryStatsCallSetupCACBandwidthFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsCallSetupCACMediaLimitFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsCallSetupCACMediaLimitFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsCallSetupCACMediaLimitFailure"
                  ]
                },
                "description": "Retrieve csbHistoryStatsCallSetupCACMediaLimitFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsCallSetupCACMediaUpdateFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsCallSetupCACMediaUpdateFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsCallSetupCACMediaUpdateFailure"
                  ]
                },
                "description": "Retrieve csbHistoryStatsCallSetupCACMediaUpdateFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsTimestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsTimestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsTimestamp"
                  ]
                },
                "description": "Retrieve csbHistoryStatsTimestamp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistroyStatsTranscodedCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistroyStatsTranscodedCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistroyStatsTranscodedCalls"
                  ]
                },
                "description": "Retrieve csbHistroyStatsTranscodedCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistroyStatsTransratedCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistroyStatsTransratedCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistroyStatsTransratedCalls"
                  ]
                },
                "description": "Retrieve csbHistroyStatsTransratedCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsTotalCallUpdateFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsTotalCallUpdateFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsTotalCallUpdateFailure"
                  ]
                },
                "description": "Retrieve csbHistoryStatsTotalCallUpdateFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsActiveIpv6Calls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsActiveIpv6Calls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsActiveIpv6Calls"
                  ]
                },
                "description": "Retrieve csbHistoryStatsActiveIpv6Calls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsActiveEmergencyCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsActiveEmergencyCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsActiveEmergencyCalls"
                  ]
                },
                "description": "Retrieve csbHistoryStatsActiveEmergencyCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsActiveE2EmergencyCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsActiveE2EmergencyCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsActiveE2EmergencyCalls"
                  ]
                },
                "description": "Retrieve csbHistoryStatsActiveE2EmergencyCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsImsRxActiveCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsImsRxActiveCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsImsRxActiveCalls"
                  ]
                },
                "description": "Retrieve csbHistoryStatsImsRxActiveCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsImsRxCallSetupFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsImsRxCallSetupFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsImsRxCallSetupFailures"
                  ]
                },
                "description": "Retrieve csbHistoryStatsImsRxCallSetupFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsImsRxCallRenegotiationAttempts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsImsRxCallRenegotiationAttempts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsImsRxCallRenegotiationAttempts"
                  ]
                },
                "description": "Retrieve csbHistoryStatsImsRxCallRenegotiationAttempts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsImsRxCallRenegotiationFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsImsRxCallRenegotiationFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsImsRxCallRenegotiationFailures"
                  ]
                },
                "description": "Retrieve csbHistoryStatsImsRxCallRenegotiationFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsAudioTranscodedCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsAudioTranscodedCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsAudioTranscodedCalls"
                  ]
                },
                "description": "Retrieve csbHistoryStatsAudioTranscodedCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsFaxTranscodedCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsFaxTranscodedCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsFaxTranscodedCalls"
                  ]
                },
                "description": "Retrieve csbHistoryStatsFaxTranscodedCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsRtpDisallowedFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsRtpDisallowedFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsRtpDisallowedFailures"
                  ]
                },
                "description": "Retrieve csbHistoryStatsRtpDisallowedFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsSrtpDisallowedFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsSrtpDisallowedFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsSrtpDisallowedFailures"
                  ]
                },
                "description": "Retrieve csbHistoryStatsSrtpDisallowedFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsNonSrtpCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsNonSrtpCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsNonSrtpCalls"
                  ]
                },
                "description": "Retrieve csbHistoryStatsNonSrtpCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsSrtpNonIwCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsSrtpNonIwCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsSrtpNonIwCalls"
                  ]
                },
                "description": "Retrieve csbHistoryStatsSrtpNonIwCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsSrtpIwCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsSrtpIwCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsSrtpIwCalls"
                  ]
                },
                "description": "Retrieve csbHistoryStatsSrtpIwCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsDtmfIw2833Calls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsDtmfIw2833Calls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsDtmfIw2833Calls"
                  ]
                },
                "description": "Retrieve csbHistoryStatsDtmfIw2833Calls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsDtmfIwInbandCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsDtmfIwInbandCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsDtmfIwInbandCalls"
                  ]
                },
                "description": "Retrieve csbHistoryStatsDtmfIwInbandCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsDtmfIw2833InbandCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsDtmfIw2833InbandCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsDtmfIw2833InbandCalls"
                  ]
                },
                "description": "Retrieve csbHistoryStatsDtmfIw2833InbandCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsTotalTapsRequested",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsTotalTapsRequested",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsTotalTapsRequested"
                  ]
                },
                "description": "Retrieve csbHistoryStatsTotalTapsRequested from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsTotalTapsSucceeded",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsTotalTapsSucceeded",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsTotalTapsSucceeded"
                  ]
                },
                "description": "Retrieve csbHistoryStatsTotalTapsSucceeded from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsCurrentTaps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsCurrentTaps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsCurrentTaps"
                  ]
                },
                "description": "Retrieve csbHistoryStatsCurrentTaps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbHistoryStatsIpsecCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbHistoryStatsTable/csbHistoryStatsEntry/csbHistoryStatsIpsecCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbHistoryStatsTable",
                    "csbHistoryStatsEntry",
                    "csbHistoryStatsIpsecCalls"
                  ]
                },
                "description": "Retrieve csbHistoryStatsIpsecCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbCallStatsInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbCallStatsInstanceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsServiceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbCallStatsServiceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbCallStatsServiceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsServiceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsVdbeId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsVdbeId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsVdbeId"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsVdbeId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsGateId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsGateId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsGateId"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsGateId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsFlowPairId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsFlowPairId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsFlowPairId"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsFlowPairId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsSideId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsSideId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsSideId"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsSideId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsFlowType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsFlowType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsFlowType"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsFlowType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsRTPPktsSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsRTPPktsSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsRTPPktsSent"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsRTPPktsSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsRTPPktsRcvd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsRTPPktsRcvd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsRTPPktsRcvd"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsRTPPktsRcvd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsRTPPktsDiscard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsRTPPktsDiscard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsRTPPktsDiscard"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsRTPPktsDiscard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsRTPOctetsSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsRTPOctetsSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsRTPOctetsSent"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsRTPOctetsSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsRTPOctetsRcvd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsRTPOctetsRcvd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsRTPOctetsRcvd"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsRTPOctetsRcvd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsRTPOctetsDiscard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsRTPOctetsDiscard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsRTPOctetsDiscard"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsRTPOctetsDiscard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsRTCPPktsSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsRTCPPktsSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsRTCPPktsSent"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsRTCPPktsSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsRTCPPktsRcvd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsRTCPPktsRcvd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsRTCPPktsRcvd"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsRTCPPktsRcvd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsRTCPPktsLost",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsRTCPPktsLost",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsRTCPPktsLost"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsRTCPPktsLost from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsEPJitter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsEPJitter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsEPJitter"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsEPJitter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsTmanPerMbs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsTmanPerMbs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsTmanPerMbs"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsTmanPerMbs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsTmanPerSdr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsTmanPerSdr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsTmanPerSdr"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsTmanPerSdr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsDscpSettings",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsDscpSettings",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsDscpSettings"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsDscpSettings from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsAdrStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsAdrStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsAdrStatus"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsAdrStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsQASettings",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsQASettings",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsQASettings"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsQASettings from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbPerFlowStatsRTPPktsLost",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbPerFlowStatsTable/csbPerFlowStatsEntry/csbPerFlowStatsRTPPktsLost",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbPerFlowStatsTable",
                    "csbPerFlowStatsEntry",
                    "csbPerFlowStatsRTPPktsLost"
                  ]
                },
                "description": "Retrieve csbPerFlowStatsRTPPktsLost from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbH248StatsRev1Table",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table"
                  ]
                },
                "description": "Retrieve csbH248StatsRev1Table from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbH248StatsRev1Entry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry"
                  ]
                },
                "description": "Retrieve csbH248StatsRev1Entry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry/csbCallStatsInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry",
                    "csbCallStatsInstanceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsServiceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry/csbCallStatsServiceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry",
                    "csbCallStatsServiceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsServiceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbH248StatsVdbeId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry/csbH248StatsVdbeId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry",
                    "csbH248StatsVdbeId"
                  ]
                },
                "description": "Retrieve csbH248StatsVdbeId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbH248StatsRequestsSentRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry/csbH248StatsRequestsSentRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry",
                    "csbH248StatsRequestsSentRev1"
                  ]
                },
                "description": "Retrieve csbH248StatsRequestsSentRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbH248StatsRequestsRcvdRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry/csbH248StatsRequestsRcvdRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry",
                    "csbH248StatsRequestsRcvdRev1"
                  ]
                },
                "description": "Retrieve csbH248StatsRequestsRcvdRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbH248StatsRequestsFailedRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry/csbH248StatsRequestsFailedRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry",
                    "csbH248StatsRequestsFailedRev1"
                  ]
                },
                "description": "Retrieve csbH248StatsRequestsFailedRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbH248StatsRequestsRetriedRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry/csbH248StatsRequestsRetriedRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry",
                    "csbH248StatsRequestsRetriedRev1"
                  ]
                },
                "description": "Retrieve csbH248StatsRequestsRetriedRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbH248StatsRepliesSentRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry/csbH248StatsRepliesSentRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry",
                    "csbH248StatsRepliesSentRev1"
                  ]
                },
                "description": "Retrieve csbH248StatsRepliesSentRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbH248StatsRepliesRcvdRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry/csbH248StatsRepliesRcvdRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry",
                    "csbH248StatsRepliesRcvdRev1"
                  ]
                },
                "description": "Retrieve csbH248StatsRepliesRcvdRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbH248StatsRepliesRetriedRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry/csbH248StatsRepliesRetriedRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry",
                    "csbH248StatsRepliesRetriedRev1"
                  ]
                },
                "description": "Retrieve csbH248StatsRepliesRetriedRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbH248StatsSegPktsSentRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry/csbH248StatsSegPktsSentRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry",
                    "csbH248StatsSegPktsSentRev1"
                  ]
                },
                "description": "Retrieve csbH248StatsSegPktsSentRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbH248StatsSegPktsRcvdRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry/csbH248StatsSegPktsRcvdRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry",
                    "csbH248StatsSegPktsRcvdRev1"
                  ]
                },
                "description": "Retrieve csbH248StatsSegPktsRcvdRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbH248StatsEstablishedTimeRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry/csbH248StatsEstablishedTimeRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry",
                    "csbH248StatsEstablishedTimeRev1"
                  ]
                },
                "description": "Retrieve csbH248StatsEstablishedTimeRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbH248StatsTMaxTimeoutValRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry/csbH248StatsTMaxTimeoutValRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry",
                    "csbH248StatsTMaxTimeoutValRev1"
                  ]
                },
                "description": "Retrieve csbH248StatsTMaxTimeoutValRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbH248StatsRTTRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry/csbH248StatsRTTRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry",
                    "csbH248StatsRTTRev1"
                  ]
                },
                "description": "Retrieve csbH248StatsRTTRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbH248StatsLTRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB/csbH248StatsRev1Table/csbH248StatsRev1Entry/csbH248StatsLTRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB:CISCO-SESS-BORDER-CTRLR-CALL-STATS-MIB",
                    "csbH248StatsRev1Table",
                    "csbH248StatsRev1Entry",
                    "csbH248StatsLTRev1"
                  ]
                },
                "description": "Retrieve csbH248StatsLTRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-SESS-BORDER-CTRLR-STATS-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-SESS-BORDER-CTRLR-STATS-MIB\n\nMIB data from `CISCO-SESS-BORDER-CTRLR-STATS-MIB` module.\n\n**Root containers:** 1 (CISCO-SESS-BORDER-CTRLR-STATS-MIB)\n**Paths:** 107 | **Descendants:** 106\n\nAll endpoints are read-only (GET).\n\nEndpoints: 107 | Operations: 107",
          "item": [
            {
              "name": "GET Get CISCO-SESS-BORDER-CTRLR-STATS-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB"
                  ]
                },
                "description": "Retrieve CISCO-SESS-BORDER-CTRLR-STATS-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable"
                  ]
                },
                "description": "Retrieve csbRadiusStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry"
                  ]
                },
                "description": "Retrieve csbRadiusStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbCallStatsInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbCallStatsInstanceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsServiceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbCallStatsServiceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbCallStatsServiceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsServiceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsEntIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsEntIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsEntIndex"
                  ]
                },
                "description": "Retrieve csbRadiusStatsEntIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsClientName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsClientName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsClientName"
                  ]
                },
                "description": "Retrieve csbRadiusStatsClientName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsClientType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsClientType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsClientType"
                  ]
                },
                "description": "Retrieve csbRadiusStatsClientType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsSrvrName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsSrvrName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsSrvrName"
                  ]
                },
                "description": "Retrieve csbRadiusStatsSrvrName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsAcsReqs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsAcsReqs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsAcsReqs"
                  ]
                },
                "description": "Retrieve csbRadiusStatsAcsReqs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsAcsRtrns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsAcsRtrns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsAcsRtrns"
                  ]
                },
                "description": "Retrieve csbRadiusStatsAcsRtrns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsAcsAccpts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsAcsAccpts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsAcsAccpts"
                  ]
                },
                "description": "Retrieve csbRadiusStatsAcsAccpts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsAcsRejects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsAcsRejects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsAcsRejects"
                  ]
                },
                "description": "Retrieve csbRadiusStatsAcsRejects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsAcsChalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsAcsChalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsAcsChalls"
                  ]
                },
                "description": "Retrieve csbRadiusStatsAcsChalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsActReqs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsActReqs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsActReqs"
                  ]
                },
                "description": "Retrieve csbRadiusStatsActReqs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsActRetrans",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsActRetrans",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsActRetrans"
                  ]
                },
                "description": "Retrieve csbRadiusStatsActRetrans from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsActRsps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsActRsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsActRsps"
                  ]
                },
                "description": "Retrieve csbRadiusStatsActRsps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsMalformedRsps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsMalformedRsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsMalformedRsps"
                  ]
                },
                "description": "Retrieve csbRadiusStatsMalformedRsps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsBadAuths",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsBadAuths",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsBadAuths"
                  ]
                },
                "description": "Retrieve csbRadiusStatsBadAuths from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsPending",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsPending",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsPending"
                  ]
                },
                "description": "Retrieve csbRadiusStatsPending from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsTimeouts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsTimeouts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsTimeouts"
                  ]
                },
                "description": "Retrieve csbRadiusStatsTimeouts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsUnknownType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsUnknownType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsUnknownType"
                  ]
                },
                "description": "Retrieve csbRadiusStatsUnknownType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRadiusStatsDropped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRadiusStatsTable/csbRadiusStatsEntry/csbRadiusStatsDropped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRadiusStatsTable",
                    "csbRadiusStatsEntry",
                    "csbRadiusStatsDropped"
                  ]
                },
                "description": "Retrieve csbRadiusStatsDropped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRfBillRealmStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable"
                  ]
                },
                "description": "Retrieve csbRfBillRealmStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRfBillRealmStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry"
                  ]
                },
                "description": "Retrieve csbRfBillRealmStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry/csbCallStatsInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry",
                    "csbCallStatsInstanceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsServiceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry/csbCallStatsServiceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry",
                    "csbCallStatsServiceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsServiceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRfBillRealmStatsIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry/csbRfBillRealmStatsIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry",
                    "csbRfBillRealmStatsIndex"
                  ]
                },
                "description": "Retrieve csbRfBillRealmStatsIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRfBillRealmStatsRealmName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry/csbRfBillRealmStatsRealmName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry",
                    "csbRfBillRealmStatsRealmName"
                  ]
                },
                "description": "Retrieve csbRfBillRealmStatsRealmName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRfBillRealmStatsTotalStartAcrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry/csbRfBillRealmStatsTotalStartAcrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry",
                    "csbRfBillRealmStatsTotalStartAcrs"
                  ]
                },
                "description": "Retrieve csbRfBillRealmStatsTotalStartAcrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRfBillRealmStatsTotalInterimAcrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry/csbRfBillRealmStatsTotalInterimAcrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry",
                    "csbRfBillRealmStatsTotalInterimAcrs"
                  ]
                },
                "description": "Retrieve csbRfBillRealmStatsTotalInterimAcrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRfBillRealmStatsTotalStopAcrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry/csbRfBillRealmStatsTotalStopAcrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry",
                    "csbRfBillRealmStatsTotalStopAcrs"
                  ]
                },
                "description": "Retrieve csbRfBillRealmStatsTotalStopAcrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRfBillRealmStatsTotalEventAcrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry/csbRfBillRealmStatsTotalEventAcrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry",
                    "csbRfBillRealmStatsTotalEventAcrs"
                  ]
                },
                "description": "Retrieve csbRfBillRealmStatsTotalEventAcrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRfBillRealmStatsSuccStartAcrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry/csbRfBillRealmStatsSuccStartAcrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry",
                    "csbRfBillRealmStatsSuccStartAcrs"
                  ]
                },
                "description": "Retrieve csbRfBillRealmStatsSuccStartAcrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRfBillRealmStatsSuccInterimAcrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry/csbRfBillRealmStatsSuccInterimAcrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry",
                    "csbRfBillRealmStatsSuccInterimAcrs"
                  ]
                },
                "description": "Retrieve csbRfBillRealmStatsSuccInterimAcrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRfBillRealmStatsSuccStopAcrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry/csbRfBillRealmStatsSuccStopAcrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry",
                    "csbRfBillRealmStatsSuccStopAcrs"
                  ]
                },
                "description": "Retrieve csbRfBillRealmStatsSuccStopAcrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRfBillRealmStatsSuccEventAcrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry/csbRfBillRealmStatsSuccEventAcrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry",
                    "csbRfBillRealmStatsSuccEventAcrs"
                  ]
                },
                "description": "Retrieve csbRfBillRealmStatsSuccEventAcrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRfBillRealmStatsFailStartAcrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry/csbRfBillRealmStatsFailStartAcrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry",
                    "csbRfBillRealmStatsFailStartAcrs"
                  ]
                },
                "description": "Retrieve csbRfBillRealmStatsFailStartAcrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRfBillRealmStatsFailInterimAcrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry/csbRfBillRealmStatsFailInterimAcrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry",
                    "csbRfBillRealmStatsFailInterimAcrs"
                  ]
                },
                "description": "Retrieve csbRfBillRealmStatsFailInterimAcrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRfBillRealmStatsFailStopAcrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry/csbRfBillRealmStatsFailStopAcrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry",
                    "csbRfBillRealmStatsFailStopAcrs"
                  ]
                },
                "description": "Retrieve csbRfBillRealmStatsFailStopAcrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbRfBillRealmStatsFailEventAcrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbRfBillRealmStatsTable/csbRfBillRealmStatsEntry/csbRfBillRealmStatsFailEventAcrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbRfBillRealmStatsTable",
                    "csbRfBillRealmStatsEntry",
                    "csbRfBillRealmStatsFailEventAcrs"
                  ]
                },
                "description": "Retrieve csbRfBillRealmStatsFailEventAcrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbCallStatsInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbCallStatsInstanceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsServiceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbCallStatsServiceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbCallStatsServiceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsServiceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsAdjName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsAdjName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsAdjName"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsAdjName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsMethod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsMethod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsMethod"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsMethod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsInterval"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsMethodName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsMethodName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsMethodName"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsMethodName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsReqIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsReqIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsReqIn"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsReqIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsReqOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsReqOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsReqOut"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsReqOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsResp1xxIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsResp1xxIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsResp1xxIn"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsResp1xxIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsResp1xxOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsResp1xxOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsResp1xxOut"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsResp1xxOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsResp2xxIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsResp2xxIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsResp2xxIn"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsResp2xxIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsResp2xxOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsResp2xxOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsResp2xxOut"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsResp2xxOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsResp3xxIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsResp3xxIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsResp3xxIn"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsResp3xxIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsResp3xxOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsResp3xxOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsResp3xxOut"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsResp3xxOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsResp4xxIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsResp4xxIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsResp4xxIn"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsResp4xxIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsResp4xxOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsResp4xxOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsResp4xxOut"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsResp4xxOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsResp5xxIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsResp5xxIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsResp5xxIn"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsResp5xxIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsResp5xxOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsResp5xxOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsResp5xxOut"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsResp5xxOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsResp6xxIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsResp6xxIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsResp6xxIn"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsResp6xxIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdCurrentStatsResp6xxOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdCurrentStatsTable/csbSIPMthdCurrentStatsEntry/csbSIPMthdCurrentStatsResp6xxOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdCurrentStatsTable",
                    "csbSIPMthdCurrentStatsEntry",
                    "csbSIPMthdCurrentStatsResp6xxOut"
                  ]
                },
                "description": "Retrieve csbSIPMthdCurrentStatsResp6xxOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbCallStatsInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbCallStatsInstanceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsServiceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbCallStatsServiceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbCallStatsServiceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsServiceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsAdjName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsAdjName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsAdjName"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsAdjName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsMethod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsMethod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsMethod"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsMethod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsInterval"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsMethodName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsMethodName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsMethodName"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsMethodName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsReqIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsReqIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsReqIn"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsReqIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsReqOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsReqOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsReqOut"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsReqOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsResp1xxIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsResp1xxIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsResp1xxIn"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsResp1xxIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsResp1xxOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsResp1xxOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsResp1xxOut"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsResp1xxOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsResp2xxIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsResp2xxIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsResp2xxIn"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsResp2xxIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsResp2xxOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsResp2xxOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsResp2xxOut"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsResp2xxOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsResp3xxIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsResp3xxIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsResp3xxIn"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsResp3xxIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsResp3xxOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsResp3xxOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsResp3xxOut"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsResp3xxOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsResp4xxIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsResp4xxIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsResp4xxIn"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsResp4xxIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsResp4xxOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsResp4xxOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsResp4xxOut"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsResp4xxOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsResp5xxIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsResp5xxIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsResp5xxIn"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsResp5xxIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsResp5xxOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsResp5xxOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsResp5xxOut"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsResp5xxOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsResp6xxIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsResp6xxIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsResp6xxIn"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsResp6xxIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdHistoryStatsResp6xxOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdHistoryStatsTable/csbSIPMthdHistoryStatsEntry/csbSIPMthdHistoryStatsResp6xxOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdHistoryStatsTable",
                    "csbSIPMthdHistoryStatsEntry",
                    "csbSIPMthdHistoryStatsResp6xxOut"
                  ]
                },
                "description": "Retrieve csbSIPMthdHistoryStatsResp6xxOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCCurrentStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCCurrentStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCCurrentStatsTable"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCCurrentStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCCurrentStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCCurrentStatsTable/csbSIPMthdRCCurrentStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCCurrentStatsTable",
                    "csbSIPMthdRCCurrentStatsEntry"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCCurrentStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCCurrentStatsTable/csbSIPMthdRCCurrentStatsEntry/csbCallStatsInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCCurrentStatsTable",
                    "csbSIPMthdRCCurrentStatsEntry",
                    "csbCallStatsInstanceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsServiceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCCurrentStatsTable/csbSIPMthdRCCurrentStatsEntry/csbCallStatsServiceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCCurrentStatsTable",
                    "csbSIPMthdRCCurrentStatsEntry",
                    "csbCallStatsServiceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsServiceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCCurrentStatsAdjName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCCurrentStatsTable/csbSIPMthdRCCurrentStatsEntry/csbSIPMthdRCCurrentStatsAdjName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCCurrentStatsTable",
                    "csbSIPMthdRCCurrentStatsEntry",
                    "csbSIPMthdRCCurrentStatsAdjName"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCCurrentStatsAdjName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCCurrentStatsMethod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCCurrentStatsTable/csbSIPMthdRCCurrentStatsEntry/csbSIPMthdRCCurrentStatsMethod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCCurrentStatsTable",
                    "csbSIPMthdRCCurrentStatsEntry",
                    "csbSIPMthdRCCurrentStatsMethod"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCCurrentStatsMethod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCCurrentStatsRespCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCCurrentStatsTable/csbSIPMthdRCCurrentStatsEntry/csbSIPMthdRCCurrentStatsRespCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCCurrentStatsTable",
                    "csbSIPMthdRCCurrentStatsEntry",
                    "csbSIPMthdRCCurrentStatsRespCode"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCCurrentStatsRespCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCCurrentStatsInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCCurrentStatsTable/csbSIPMthdRCCurrentStatsEntry/csbSIPMthdRCCurrentStatsInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCCurrentStatsTable",
                    "csbSIPMthdRCCurrentStatsEntry",
                    "csbSIPMthdRCCurrentStatsInterval"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCCurrentStatsInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCCurrentStatsMethodName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCCurrentStatsTable/csbSIPMthdRCCurrentStatsEntry/csbSIPMthdRCCurrentStatsMethodName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCCurrentStatsTable",
                    "csbSIPMthdRCCurrentStatsEntry",
                    "csbSIPMthdRCCurrentStatsMethodName"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCCurrentStatsMethodName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCCurrentStatsRespIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCCurrentStatsTable/csbSIPMthdRCCurrentStatsEntry/csbSIPMthdRCCurrentStatsRespIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCCurrentStatsTable",
                    "csbSIPMthdRCCurrentStatsEntry",
                    "csbSIPMthdRCCurrentStatsRespIn"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCCurrentStatsRespIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCCurrentStatsRespOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCCurrentStatsTable/csbSIPMthdRCCurrentStatsEntry/csbSIPMthdRCCurrentStatsRespOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCCurrentStatsTable",
                    "csbSIPMthdRCCurrentStatsEntry",
                    "csbSIPMthdRCCurrentStatsRespOut"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCCurrentStatsRespOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCHistoryStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCHistoryStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCHistoryStatsTable"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCHistoryStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCHistoryStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCHistoryStatsTable/csbSIPMthdRCHistoryStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCHistoryStatsTable",
                    "csbSIPMthdRCHistoryStatsEntry"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCHistoryStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCHistoryStatsTable/csbSIPMthdRCHistoryStatsEntry/csbCallStatsInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCHistoryStatsTable",
                    "csbSIPMthdRCHistoryStatsEntry",
                    "csbCallStatsInstanceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbCallStatsServiceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCHistoryStatsTable/csbSIPMthdRCHistoryStatsEntry/csbCallStatsServiceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCHistoryStatsTable",
                    "csbSIPMthdRCHistoryStatsEntry",
                    "csbCallStatsServiceIndex"
                  ]
                },
                "description": "Retrieve csbCallStatsServiceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCHistoryStatsAdjName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCHistoryStatsTable/csbSIPMthdRCHistoryStatsEntry/csbSIPMthdRCHistoryStatsAdjName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCHistoryStatsTable",
                    "csbSIPMthdRCHistoryStatsEntry",
                    "csbSIPMthdRCHistoryStatsAdjName"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCHistoryStatsAdjName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCHistoryStatsMethod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCHistoryStatsTable/csbSIPMthdRCHistoryStatsEntry/csbSIPMthdRCHistoryStatsMethod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCHistoryStatsTable",
                    "csbSIPMthdRCHistoryStatsEntry",
                    "csbSIPMthdRCHistoryStatsMethod"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCHistoryStatsMethod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCHistoryStatsMethodName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCHistoryStatsTable/csbSIPMthdRCHistoryStatsEntry/csbSIPMthdRCHistoryStatsMethodName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCHistoryStatsTable",
                    "csbSIPMthdRCHistoryStatsEntry",
                    "csbSIPMthdRCHistoryStatsMethodName"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCHistoryStatsMethodName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCHistoryStatsRespCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCHistoryStatsTable/csbSIPMthdRCHistoryStatsEntry/csbSIPMthdRCHistoryStatsRespCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCHistoryStatsTable",
                    "csbSIPMthdRCHistoryStatsEntry",
                    "csbSIPMthdRCHistoryStatsRespCode"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCHistoryStatsRespCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCHistoryStatsInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCHistoryStatsTable/csbSIPMthdRCHistoryStatsEntry/csbSIPMthdRCHistoryStatsInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCHistoryStatsTable",
                    "csbSIPMthdRCHistoryStatsEntry",
                    "csbSIPMthdRCHistoryStatsInterval"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCHistoryStatsInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCHistoryStatsRespIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCHistoryStatsTable/csbSIPMthdRCHistoryStatsEntry/csbSIPMthdRCHistoryStatsRespIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCHistoryStatsTable",
                    "csbSIPMthdRCHistoryStatsEntry",
                    "csbSIPMthdRCHistoryStatsRespIn"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCHistoryStatsRespIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csbSIPMthdRCHistoryStatsRespOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB/csbSIPMthdRCHistoryStatsTable/csbSIPMthdRCHistoryStatsEntry/csbSIPMthdRCHistoryStatsRespOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SESS-BORDER-CTRLR-STATS-MIB:CISCO-SESS-BORDER-CTRLR-STATS-MIB",
                    "csbSIPMthdRCHistoryStatsTable",
                    "csbSIPMthdRCHistoryStatsEntry",
                    "csbSIPMthdRCHistoryStatsRespOut"
                  ]
                },
                "description": "Retrieve csbSIPMthdRCHistoryStatsRespOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-SIP-UA-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-SIP-UA-MIB\n\nMIB data from `CISCO-SIP-UA-MIB` module.\n\n**Root containers:** 1 (CISCO-SIP-UA-MIB)\n**Paths:** 239 | **Descendants:** 238\n\nAll endpoints are read-only (GET).\n\nEndpoints: 239 | Operations: 239",
          "item": [
            {
              "name": "GET Get CISCO-SIP-UA-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB"
                  ]
                },
                "description": "Retrieve CISCO-SIP-UA-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgBase",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgBase",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgBase"
                  ]
                },
                "description": "Retrieve cSipCfgBase from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgBase/cSipCfgVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgBase",
                    "cSipCfgVersion"
                  ]
                },
                "description": "Retrieve cSipCfgVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgTransport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgBase/cSipCfgTransport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgBase",
                    "cSipCfgTransport"
                  ]
                },
                "description": "Retrieve cSipCfgTransport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgUserLocationServerAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgBase/cSipCfgUserLocationServerAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgBase",
                    "cSipCfgUserLocationServerAddr"
                  ]
                },
                "description": "Retrieve cSipCfgUserLocationServerAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgDnsSrvQueryStringFormat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgBase/cSipCfgDnsSrvQueryStringFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgBase",
                    "cSipCfgDnsSrvQueryStringFormat"
                  ]
                },
                "description": "Retrieve cSipCfgDnsSrvQueryStringFormat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgRedirectionDisabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgBase/cSipCfgRedirectionDisabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgBase",
                    "cSipCfgRedirectionDisabled"
                  ]
                },
                "description": "Retrieve cSipCfgRedirectionDisabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgSymNatEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgBase/cSipCfgSymNatEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgBase",
                    "cSipCfgSymNatEnabled"
                  ]
                },
                "description": "Retrieve cSipCfgSymNatEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgSymNatDirectionRole",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgBase/cSipCfgSymNatDirectionRole",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgBase",
                    "cSipCfgSymNatDirectionRole"
                  ]
                },
                "description": "Retrieve cSipCfgSymNatDirectionRole from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgSuspendResumeEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgBase/cSipCfgSuspendResumeEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgBase",
                    "cSipCfgSuspendResumeEnabled"
                  ]
                },
                "description": "Retrieve cSipCfgSuspendResumeEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgOfferCallHold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgBase/cSipCfgOfferCallHold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgBase",
                    "cSipCfgOfferCallHold"
                  ]
                },
                "description": "Retrieve cSipCfgOfferCallHold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgReasonHeaderOveride",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgBase/cSipCfgReasonHeaderOveride",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgBase",
                    "cSipCfgReasonHeaderOveride"
                  ]
                },
                "description": "Retrieve cSipCfgReasonHeaderOveride from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgMaximumForwards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgBase/cSipCfgMaximumForwards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgBase",
                    "cSipCfgMaximumForwards"
                  ]
                },
                "description": "Retrieve cSipCfgMaximumForwards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgTimer"
                  ]
                },
                "description": "Retrieve cSipCfgTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgTimerTrying",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgTimer/cSipCfgTimerTrying",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgTimer",
                    "cSipCfgTimerTrying"
                  ]
                },
                "description": "Retrieve cSipCfgTimerTrying from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgTimerExpires",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgTimer/cSipCfgTimerExpires",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgTimer",
                    "cSipCfgTimerExpires"
                  ]
                },
                "description": "Retrieve cSipCfgTimerExpires from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgTimerConnect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgTimer/cSipCfgTimerConnect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgTimer",
                    "cSipCfgTimerConnect"
                  ]
                },
                "description": "Retrieve cSipCfgTimerConnect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgTimerDisconnect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgTimer/cSipCfgTimerDisconnect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgTimer",
                    "cSipCfgTimerDisconnect"
                  ]
                },
                "description": "Retrieve cSipCfgTimerDisconnect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgTimerPrack",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgTimer/cSipCfgTimerPrack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgTimer",
                    "cSipCfgTimerPrack"
                  ]
                },
                "description": "Retrieve cSipCfgTimerPrack from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgTimerComet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgTimer/cSipCfgTimerComet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgTimer",
                    "cSipCfgTimerComet"
                  ]
                },
                "description": "Retrieve cSipCfgTimerComet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgTimerReliableRsp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgTimer/cSipCfgTimerReliableRsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgTimer",
                    "cSipCfgTimerReliableRsp"
                  ]
                },
                "description": "Retrieve cSipCfgTimerReliableRsp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgTimerNotify",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgTimer/cSipCfgTimerNotify",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgTimer",
                    "cSipCfgTimerNotify"
                  ]
                },
                "description": "Retrieve cSipCfgTimerNotify from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgTimerRefer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgTimer/cSipCfgTimerRefer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgTimer",
                    "cSipCfgTimerRefer"
                  ]
                },
                "description": "Retrieve cSipCfgTimerRefer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgTimerSessionTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgTimer/cSipCfgTimerSessionTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgTimer",
                    "cSipCfgTimerSessionTimer"
                  ]
                },
                "description": "Retrieve cSipCfgTimerSessionTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgTimerHold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgTimer/cSipCfgTimerHold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgTimer",
                    "cSipCfgTimerHold"
                  ]
                },
                "description": "Retrieve cSipCfgTimerHold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgTimerInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgTimer/cSipCfgTimerInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgTimer",
                    "cSipCfgTimerInfo"
                  ]
                },
                "description": "Retrieve cSipCfgTimerInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgTimerConnectionAging",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgTimer/cSipCfgTimerConnectionAging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgTimer",
                    "cSipCfgTimerConnectionAging"
                  ]
                },
                "description": "Retrieve cSipCfgTimerConnectionAging from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgTimerBufferInvite",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgTimer/cSipCfgTimerBufferInvite",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgTimer",
                    "cSipCfgTimerBufferInvite"
                  ]
                },
                "description": "Retrieve cSipCfgTimerBufferInvite from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgRetry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgRetry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgRetry"
                  ]
                },
                "description": "Retrieve cSipCfgRetry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgRetryInvite",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgRetry/cSipCfgRetryInvite",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgRetry",
                    "cSipCfgRetryInvite"
                  ]
                },
                "description": "Retrieve cSipCfgRetryInvite from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgRetryBye",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgRetry/cSipCfgRetryBye",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgRetry",
                    "cSipCfgRetryBye"
                  ]
                },
                "description": "Retrieve cSipCfgRetryBye from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgRetryCancel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgRetry/cSipCfgRetryCancel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgRetry",
                    "cSipCfgRetryCancel"
                  ]
                },
                "description": "Retrieve cSipCfgRetryCancel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgRetryRegister",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgRetry/cSipCfgRetryRegister",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgRetry",
                    "cSipCfgRetryRegister"
                  ]
                },
                "description": "Retrieve cSipCfgRetryRegister from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgRetryResponse",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgRetry/cSipCfgRetryResponse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgRetry",
                    "cSipCfgRetryResponse"
                  ]
                },
                "description": "Retrieve cSipCfgRetryResponse from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgRetryPrack",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgRetry/cSipCfgRetryPrack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgRetry",
                    "cSipCfgRetryPrack"
                  ]
                },
                "description": "Retrieve cSipCfgRetryPrack from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgRetryComet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgRetry/cSipCfgRetryComet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgRetry",
                    "cSipCfgRetryComet"
                  ]
                },
                "description": "Retrieve cSipCfgRetryComet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgRetryReliableRsp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgRetry/cSipCfgRetryReliableRsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgRetry",
                    "cSipCfgRetryReliableRsp"
                  ]
                },
                "description": "Retrieve cSipCfgRetryReliableRsp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgRetryNotify",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgRetry/cSipCfgRetryNotify",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgRetry",
                    "cSipCfgRetryNotify"
                  ]
                },
                "description": "Retrieve cSipCfgRetryNotify from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgRetryRefer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgRetry/cSipCfgRetryRefer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgRetry",
                    "cSipCfgRetryRefer"
                  ]
                },
                "description": "Retrieve cSipCfgRetryRefer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgRetryInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgRetry/cSipCfgRetryInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgRetry",
                    "cSipCfgRetryInfo"
                  ]
                },
                "description": "Retrieve cSipCfgRetryInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgRetrySubscribe",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgRetry/cSipCfgRetrySubscribe",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgRetry",
                    "cSipCfgRetrySubscribe"
                  ]
                },
                "description": "Retrieve cSipCfgRetrySubscribe from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgPeer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgPeer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgPeer"
                  ]
                },
                "description": "Retrieve cSipCfgPeer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgOutSessionTransport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgPeer/cSipCfgOutSessionTransport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgPeer",
                    "cSipCfgOutSessionTransport"
                  ]
                },
                "description": "Retrieve cSipCfgOutSessionTransport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgReliable1xxRspStr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgPeer/cSipCfgReliable1xxRspStr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgPeer",
                    "cSipCfgReliable1xxRspStr"
                  ]
                },
                "description": "Retrieve cSipCfgReliable1xxRspStr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgReliable1xxRspHdr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgPeer/cSipCfgReliable1xxRspHdr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgPeer",
                    "cSipCfgReliable1xxRspHdr"
                  ]
                },
                "description": "Retrieve cSipCfgReliable1xxRspHdr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgUrlType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgPeer/cSipCfgUrlType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgPeer",
                    "cSipCfgUrlType"
                  ]
                },
                "description": "Retrieve cSipCfgUrlType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgAaa",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgAaa",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgAaa"
                  ]
                },
                "description": "Retrieve cSipCfgAaa from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgAaaUsername",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgAaa/cSipCfgAaaUsername",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgAaa",
                    "cSipCfgAaaUsername"
                  ]
                },
                "description": "Retrieve cSipCfgAaaUsername from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgVoiceServiceVoip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgVoiceServiceVoip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgVoiceServiceVoip"
                  ]
                },
                "description": "Retrieve cSipCfgVoiceServiceVoip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgHeaderPassingEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgVoiceServiceVoip/cSipCfgHeaderPassingEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgVoiceServiceVoip",
                    "cSipCfgHeaderPassingEnabled"
                  ]
                },
                "description": "Retrieve cSipCfgHeaderPassingEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgMaxSubscriptionAccept",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgVoiceServiceVoip/cSipCfgMaxSubscriptionAccept",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgVoiceServiceVoip",
                    "cSipCfgMaxSubscriptionAccept"
                  ]
                },
                "description": "Retrieve cSipCfgMaxSubscriptionAccept from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgMaxSubscriptionOriginate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgVoiceServiceVoip/cSipCfgMaxSubscriptionOriginate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgVoiceServiceVoip",
                    "cSipCfgMaxSubscriptionOriginate"
                  ]
                },
                "description": "Retrieve cSipCfgMaxSubscriptionOriginate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgSwitchTransportEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgVoiceServiceVoip/cSipCfgSwitchTransportEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgVoiceServiceVoip",
                    "cSipCfgSwitchTransportEnabled"
                  ]
                },
                "description": "Retrieve cSipCfgSwitchTransportEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsInfo"
                  ]
                },
                "description": "Retrieve cSipStatsInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsInfoTryingIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsInfo/cSipStatsInfoTryingIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsInfo",
                    "cSipStatsInfoTryingIns"
                  ]
                },
                "description": "Retrieve cSipStatsInfoTryingIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsInfoTryingOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsInfo/cSipStatsInfoTryingOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsInfo",
                    "cSipStatsInfoTryingOuts"
                  ]
                },
                "description": "Retrieve cSipStatsInfoTryingOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsInfoRingingIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsInfo/cSipStatsInfoRingingIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsInfo",
                    "cSipStatsInfoRingingIns"
                  ]
                },
                "description": "Retrieve cSipStatsInfoRingingIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsInfoRingingOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsInfo/cSipStatsInfoRingingOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsInfo",
                    "cSipStatsInfoRingingOuts"
                  ]
                },
                "description": "Retrieve cSipStatsInfoRingingOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsInfoForwardedIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsInfo/cSipStatsInfoForwardedIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsInfo",
                    "cSipStatsInfoForwardedIns"
                  ]
                },
                "description": "Retrieve cSipStatsInfoForwardedIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsInfoForwardedOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsInfo/cSipStatsInfoForwardedOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsInfo",
                    "cSipStatsInfoForwardedOuts"
                  ]
                },
                "description": "Retrieve cSipStatsInfoForwardedOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsInfoQueuedIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsInfo/cSipStatsInfoQueuedIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsInfo",
                    "cSipStatsInfoQueuedIns"
                  ]
                },
                "description": "Retrieve cSipStatsInfoQueuedIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsInfoQueuedOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsInfo/cSipStatsInfoQueuedOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsInfo",
                    "cSipStatsInfoQueuedOuts"
                  ]
                },
                "description": "Retrieve cSipStatsInfoQueuedOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsInfoSessionProgIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsInfo/cSipStatsInfoSessionProgIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsInfo",
                    "cSipStatsInfoSessionProgIns"
                  ]
                },
                "description": "Retrieve cSipStatsInfoSessionProgIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsInfoSessionProgOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsInfo/cSipStatsInfoSessionProgOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsInfo",
                    "cSipStatsInfoSessionProgOuts"
                  ]
                },
                "description": "Retrieve cSipStatsInfoSessionProgOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsSuccess",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsSuccess",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsSuccess"
                  ]
                },
                "description": "Retrieve cSipStatsSuccess from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsSuccessAcceptedIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsSuccess/cSipStatsSuccessAcceptedIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsSuccess",
                    "cSipStatsSuccessAcceptedIns"
                  ]
                },
                "description": "Retrieve cSipStatsSuccessAcceptedIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsSuccessAcceptedOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsSuccess/cSipStatsSuccessAcceptedOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsSuccess",
                    "cSipStatsSuccessAcceptedOuts"
                  ]
                },
                "description": "Retrieve cSipStatsSuccessAcceptedOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRedirect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRedirect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRedirect"
                  ]
                },
                "description": "Retrieve cSipStatsRedirect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRedirMultipleChoices",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRedirect/cSipStatsRedirMultipleChoices",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRedirect",
                    "cSipStatsRedirMultipleChoices"
                  ]
                },
                "description": "Retrieve cSipStatsRedirMultipleChoices from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRedirMovedPerms",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRedirect/cSipStatsRedirMovedPerms",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRedirect",
                    "cSipStatsRedirMovedPerms"
                  ]
                },
                "description": "Retrieve cSipStatsRedirMovedPerms from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRedirSeeOthers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRedirect/cSipStatsRedirSeeOthers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRedirect",
                    "cSipStatsRedirSeeOthers"
                  ]
                },
                "description": "Retrieve cSipStatsRedirSeeOthers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRedirUseProxys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRedirect/cSipStatsRedirUseProxys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRedirect",
                    "cSipStatsRedirUseProxys"
                  ]
                },
                "description": "Retrieve cSipStatsRedirUseProxys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRedirAltServices",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRedirect/cSipStatsRedirAltServices",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRedirect",
                    "cSipStatsRedirAltServices"
                  ]
                },
                "description": "Retrieve cSipStatsRedirAltServices from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRedirMovedTempsIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRedirect/cSipStatsRedirMovedTempsIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRedirect",
                    "cSipStatsRedirMovedTempsIns"
                  ]
                },
                "description": "Retrieve cSipStatsRedirMovedTempsIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRedirMovedTempsOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRedirect/cSipStatsRedirMovedTempsOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRedirect",
                    "cSipStatsRedirMovedTempsOuts"
                  ]
                },
                "description": "Retrieve cSipStatsRedirMovedTempsOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsErrClient",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient"
                  ]
                },
                "description": "Retrieve cSipStatsErrClient from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientBadRequestIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientBadRequestIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientBadRequestIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientBadRequestIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientBadRequestOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientBadRequestOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientBadRequestOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientBadRequestOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientUnauthorizedIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientUnauthorizedIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientUnauthorizedIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientUnauthorizedIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientUnauthorizedOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientUnauthorizedOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientUnauthorizedOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientUnauthorizedOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientPaymentReqdIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientPaymentReqdIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientPaymentReqdIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientPaymentReqdIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientPaymentReqdOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientPaymentReqdOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientPaymentReqdOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientPaymentReqdOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientForbiddenIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientForbiddenIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientForbiddenIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientForbiddenIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientForbiddenOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientForbiddenOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientForbiddenOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientForbiddenOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientNotFoundIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientNotFoundIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientNotFoundIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientNotFoundIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientNotFoundOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientNotFoundOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientNotFoundOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientNotFoundOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientMethNotAllowedIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientMethNotAllowedIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientMethNotAllowedIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientMethNotAllowedIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientMethNotAllowedOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientMethNotAllowedOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientMethNotAllowedOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientMethNotAllowedOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientNotAcceptableIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientNotAcceptableIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientNotAcceptableIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientNotAcceptableIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientNotAcceptableOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientNotAcceptableOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientNotAcceptableOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientNotAcceptableOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientProxyAuthReqdIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientProxyAuthReqdIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientProxyAuthReqdIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientProxyAuthReqdIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientProxyAuthReqdOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientProxyAuthReqdOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientProxyAuthReqdOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientProxyAuthReqdOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientReqTimeoutIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientReqTimeoutIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientReqTimeoutIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientReqTimeoutIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientReqTimeoutOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientReqTimeoutOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientReqTimeoutOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientReqTimeoutOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientConflictIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientConflictIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientConflictIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientConflictIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientConflictOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientConflictOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientConflictOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientConflictOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientGoneIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientGoneIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientGoneIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientGoneIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientGoneOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientGoneOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientGoneOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientGoneOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientLengthRequiredIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientLengthRequiredIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientLengthRequiredIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientLengthRequiredIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientLengthRequiredOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientLengthRequiredOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientLengthRequiredOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientLengthRequiredOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientReqEntTooLargeIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientReqEntTooLargeIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientReqEntTooLargeIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientReqEntTooLargeIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientReqEntTooLargeOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientReqEntTooLargeOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientReqEntTooLargeOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientReqEntTooLargeOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientReqURITooLargeIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientReqURITooLargeIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientReqURITooLargeIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientReqURITooLargeIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientReqURITooLargeOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientReqURITooLargeOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientReqURITooLargeOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientReqURITooLargeOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientNoSupMediaTypeIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientNoSupMediaTypeIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientNoSupMediaTypeIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientNoSupMediaTypeIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientNoSupMediaTypeOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientNoSupMediaTypeOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientNoSupMediaTypeOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientNoSupMediaTypeOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientBadExtensionIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientBadExtensionIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientBadExtensionIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientBadExtensionIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientBadExtensionOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientBadExtensionOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientBadExtensionOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientBadExtensionOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientTempNotAvailIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientTempNotAvailIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientTempNotAvailIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientTempNotAvailIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientTempNotAvailOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientTempNotAvailOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientTempNotAvailOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientTempNotAvailOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientCallLegNoExistIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientCallLegNoExistIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientCallLegNoExistIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientCallLegNoExistIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientCallLegNoExistOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientCallLegNoExistOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientCallLegNoExistOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientCallLegNoExistOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientLoopDetectedIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientLoopDetectedIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientLoopDetectedIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientLoopDetectedIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientLoopDetectedOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientLoopDetectedOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientLoopDetectedOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientLoopDetectedOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientTooManyHopsIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientTooManyHopsIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientTooManyHopsIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientTooManyHopsIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientTooManyHopsOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientTooManyHopsOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientTooManyHopsOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientTooManyHopsOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientAddrIncompleteIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientAddrIncompleteIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientAddrIncompleteIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientAddrIncompleteIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientAddrIncompleteOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientAddrIncompleteOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientAddrIncompleteOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientAddrIncompleteOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientAmbiguousIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientAmbiguousIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientAmbiguousIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientAmbiguousIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientAmbiguousOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientAmbiguousOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientAmbiguousOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientAmbiguousOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientBusyHereIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientBusyHereIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientBusyHereIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientBusyHereIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientBusyHereOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientBusyHereOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientBusyHereOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientBusyHereOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientReqTermIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientReqTermIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientReqTermIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientReqTermIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientReqTermOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientReqTermOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientReqTermOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientReqTermOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientNoAcceptHereIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientNoAcceptHereIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientNoAcceptHereIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientNoAcceptHereIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientNoAcceptHereOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientNoAcceptHereOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientNoAcceptHereOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientNoAcceptHereOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientBadEventIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientBadEventIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientBadEventIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientBadEventIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientBadEventOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientBadEventOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientBadEventOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientBadEventOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientSTTooSmallIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientSTTooSmallIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientSTTooSmallIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientSTTooSmallIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientSTTooSmallOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientSTTooSmallOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientSTTooSmallOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientSTTooSmallOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientReqPendingIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientReqPendingIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientReqPendingIns"
                  ]
                },
                "description": "Retrieve cSipStatsClientReqPendingIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsClientReqPendingOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrClient/cSipStatsClientReqPendingOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrClient",
                    "cSipStatsClientReqPendingOuts"
                  ]
                },
                "description": "Retrieve cSipStatsClientReqPendingOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsErrServer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrServer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrServer"
                  ]
                },
                "description": "Retrieve cSipStatsErrServer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsServerIntErrorIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrServer/cSipStatsServerIntErrorIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrServer",
                    "cSipStatsServerIntErrorIns"
                  ]
                },
                "description": "Retrieve cSipStatsServerIntErrorIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsServerIntErrorOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrServer/cSipStatsServerIntErrorOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrServer",
                    "cSipStatsServerIntErrorOuts"
                  ]
                },
                "description": "Retrieve cSipStatsServerIntErrorOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsServerNotImplementedIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrServer/cSipStatsServerNotImplementedIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrServer",
                    "cSipStatsServerNotImplementedIns"
                  ]
                },
                "description": "Retrieve cSipStatsServerNotImplementedIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsServerNotImplementedOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrServer/cSipStatsServerNotImplementedOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrServer",
                    "cSipStatsServerNotImplementedOuts"
                  ]
                },
                "description": "Retrieve cSipStatsServerNotImplementedOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsServerBadGatewayIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrServer/cSipStatsServerBadGatewayIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrServer",
                    "cSipStatsServerBadGatewayIns"
                  ]
                },
                "description": "Retrieve cSipStatsServerBadGatewayIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsServerBadGatewayOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrServer/cSipStatsServerBadGatewayOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrServer",
                    "cSipStatsServerBadGatewayOuts"
                  ]
                },
                "description": "Retrieve cSipStatsServerBadGatewayOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsServerServiceUnavailIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrServer/cSipStatsServerServiceUnavailIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrServer",
                    "cSipStatsServerServiceUnavailIns"
                  ]
                },
                "description": "Retrieve cSipStatsServerServiceUnavailIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsServerServiceUnavailOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrServer/cSipStatsServerServiceUnavailOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrServer",
                    "cSipStatsServerServiceUnavailOuts"
                  ]
                },
                "description": "Retrieve cSipStatsServerServiceUnavailOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsServerGatewayTimeoutIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrServer/cSipStatsServerGatewayTimeoutIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrServer",
                    "cSipStatsServerGatewayTimeoutIns"
                  ]
                },
                "description": "Retrieve cSipStatsServerGatewayTimeoutIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsServerGatewayTimeoutOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrServer/cSipStatsServerGatewayTimeoutOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrServer",
                    "cSipStatsServerGatewayTimeoutOuts"
                  ]
                },
                "description": "Retrieve cSipStatsServerGatewayTimeoutOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsServerBadSipVersionIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrServer/cSipStatsServerBadSipVersionIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrServer",
                    "cSipStatsServerBadSipVersionIns"
                  ]
                },
                "description": "Retrieve cSipStatsServerBadSipVersionIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsServerBadSipVersionOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrServer/cSipStatsServerBadSipVersionOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrServer",
                    "cSipStatsServerBadSipVersionOuts"
                  ]
                },
                "description": "Retrieve cSipStatsServerBadSipVersionOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsServerPrecondFailureIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrServer/cSipStatsServerPrecondFailureIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrServer",
                    "cSipStatsServerPrecondFailureIns"
                  ]
                },
                "description": "Retrieve cSipStatsServerPrecondFailureIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsServerPrecondFailureOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsErrServer/cSipStatsServerPrecondFailureOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsErrServer",
                    "cSipStatsServerPrecondFailureOuts"
                  ]
                },
                "description": "Retrieve cSipStatsServerPrecondFailureOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsGlobalFail",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsGlobalFail",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsGlobalFail"
                  ]
                },
                "description": "Retrieve cSipStatsGlobalFail from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsGlobalBusyEverywhereIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsGlobalFail/cSipStatsGlobalBusyEverywhereIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsGlobalFail",
                    "cSipStatsGlobalBusyEverywhereIns"
                  ]
                },
                "description": "Retrieve cSipStatsGlobalBusyEverywhereIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsGlobalBusyEverywhereOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsGlobalFail/cSipStatsGlobalBusyEverywhereOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsGlobalFail",
                    "cSipStatsGlobalBusyEverywhereOuts"
                  ]
                },
                "description": "Retrieve cSipStatsGlobalBusyEverywhereOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsGlobalDeclineIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsGlobalFail/cSipStatsGlobalDeclineIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsGlobalFail",
                    "cSipStatsGlobalDeclineIns"
                  ]
                },
                "description": "Retrieve cSipStatsGlobalDeclineIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsGlobalDeclineOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsGlobalFail/cSipStatsGlobalDeclineOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsGlobalFail",
                    "cSipStatsGlobalDeclineOuts"
                  ]
                },
                "description": "Retrieve cSipStatsGlobalDeclineOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsGlobalNotAnywhereIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsGlobalFail/cSipStatsGlobalNotAnywhereIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsGlobalFail",
                    "cSipStatsGlobalNotAnywhereIns"
                  ]
                },
                "description": "Retrieve cSipStatsGlobalNotAnywhereIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsGlobalNotAnywhereOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsGlobalFail/cSipStatsGlobalNotAnywhereOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsGlobalFail",
                    "cSipStatsGlobalNotAnywhereOuts"
                  ]
                },
                "description": "Retrieve cSipStatsGlobalNotAnywhereOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsGlobalNotAcceptableIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsGlobalFail/cSipStatsGlobalNotAcceptableIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsGlobalFail",
                    "cSipStatsGlobalNotAcceptableIns"
                  ]
                },
                "description": "Retrieve cSipStatsGlobalNotAcceptableIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsGlobalNotAcceptableOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsGlobalFail/cSipStatsGlobalNotAcceptableOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsGlobalFail",
                    "cSipStatsGlobalNotAcceptableOuts"
                  ]
                },
                "description": "Retrieve cSipStatsGlobalNotAcceptableOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTraffic",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic"
                  ]
                },
                "description": "Retrieve cSipStatsTraffic from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficInviteIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficInviteIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficInviteIns"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficInviteIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficInviteOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficInviteOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficInviteOuts"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficInviteOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficAckIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficAckIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficAckIns"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficAckIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficAckOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficAckOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficAckOuts"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficAckOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficByeIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficByeIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficByeIns"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficByeIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficByeOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficByeOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficByeOuts"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficByeOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficCancelIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficCancelIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficCancelIns"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficCancelIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficCancelOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficCancelOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficCancelOuts"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficCancelOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficOptionsIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficOptionsIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficOptionsIns"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficOptionsIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficOptionsOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficOptionsOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficOptionsOuts"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficOptionsOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficRegisterIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficRegisterIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficRegisterIns"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficRegisterIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficRegisterOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficRegisterOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficRegisterOuts"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficRegisterOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficCometIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficCometIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficCometIns"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficCometIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficCometOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficCometOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficCometOuts"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficCometOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficPrackIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficPrackIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficPrackIns"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficPrackIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficPrackOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficPrackOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficPrackOuts"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficPrackOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficReferIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficReferIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficReferIns"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficReferIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficReferOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficReferOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficReferOuts"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficReferOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficNotifyIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficNotifyIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficNotifyIns"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficNotifyIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficNotifyOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficNotifyOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficNotifyOuts"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficNotifyOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficInfoIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficInfoIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficInfoIns"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficInfoIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficInfoOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficInfoOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficInfoOuts"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficInfoOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficSubscribeIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficSubscribeIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficSubscribeIns"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficSubscribeIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficSubscribeOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficSubscribeOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficSubscribeOuts"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficSubscribeOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficUpdateIns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficUpdateIns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficUpdateIns"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficUpdateIns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsTrafficUpdateOuts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsTraffic/cSipStatsTrafficUpdateOuts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsTraffic",
                    "cSipStatsTrafficUpdateOuts"
                  ]
                },
                "description": "Retrieve cSipStatsTrafficUpdateOuts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRetry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRetry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRetry"
                  ]
                },
                "description": "Retrieve cSipStatsRetry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRetryInvites",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRetry/cSipStatsRetryInvites",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRetry",
                    "cSipStatsRetryInvites"
                  ]
                },
                "description": "Retrieve cSipStatsRetryInvites from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRetryByes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRetry/cSipStatsRetryByes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRetry",
                    "cSipStatsRetryByes"
                  ]
                },
                "description": "Retrieve cSipStatsRetryByes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRetryCancels",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRetry/cSipStatsRetryCancels",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRetry",
                    "cSipStatsRetryCancels"
                  ]
                },
                "description": "Retrieve cSipStatsRetryCancels from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRetryRegisters",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRetry/cSipStatsRetryRegisters",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRetry",
                    "cSipStatsRetryRegisters"
                  ]
                },
                "description": "Retrieve cSipStatsRetryRegisters from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRetryResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRetry/cSipStatsRetryResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRetry",
                    "cSipStatsRetryResponses"
                  ]
                },
                "description": "Retrieve cSipStatsRetryResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRetryPracks",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRetry/cSipStatsRetryPracks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRetry",
                    "cSipStatsRetryPracks"
                  ]
                },
                "description": "Retrieve cSipStatsRetryPracks from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRetryComets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRetry/cSipStatsRetryComets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRetry",
                    "cSipStatsRetryComets"
                  ]
                },
                "description": "Retrieve cSipStatsRetryComets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRetryReliable1xxRsps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRetry/cSipStatsRetryReliable1xxRsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRetry",
                    "cSipStatsRetryReliable1xxRsps"
                  ]
                },
                "description": "Retrieve cSipStatsRetryReliable1xxRsps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRetryNotifys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRetry/cSipStatsRetryNotifys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRetry",
                    "cSipStatsRetryNotifys"
                  ]
                },
                "description": "Retrieve cSipStatsRetryNotifys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRetryRefers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRetry/cSipStatsRetryRefers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRetry",
                    "cSipStatsRetryRefers"
                  ]
                },
                "description": "Retrieve cSipStatsRetryRefers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRetryInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRetry/cSipStatsRetryInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRetry",
                    "cSipStatsRetryInfo"
                  ]
                },
                "description": "Retrieve cSipStatsRetryInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsRetrySubscribe",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsRetry/cSipStatsRetrySubscribe",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsRetry",
                    "cSipStatsRetrySubscribe"
                  ]
                },
                "description": "Retrieve cSipStatsRetrySubscribe from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsMisc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsMisc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsMisc"
                  ]
                },
                "description": "Retrieve cSipStatsMisc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsMisc3xxMappedTo4xxRsps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsMisc/cSipStatsMisc3xxMappedTo4xxRsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsMisc",
                    "cSipStatsMisc3xxMappedTo4xxRsps"
                  ]
                },
                "description": "Retrieve cSipStatsMisc3xxMappedTo4xxRsps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsConnection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsConnection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsConnection"
                  ]
                },
                "description": "Retrieve cSipStatsConnection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsConnTCPSendFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsConnection/cSipStatsConnTCPSendFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsConnection",
                    "cSipStatsConnTCPSendFailures"
                  ]
                },
                "description": "Retrieve cSipStatsConnTCPSendFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsConnUDPSendFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsConnection/cSipStatsConnUDPSendFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsConnection",
                    "cSipStatsConnUDPSendFailures"
                  ]
                },
                "description": "Retrieve cSipStatsConnUDPSendFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsConnTCPRemoteClosures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsConnection/cSipStatsConnTCPRemoteClosures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsConnection",
                    "cSipStatsConnTCPRemoteClosures"
                  ]
                },
                "description": "Retrieve cSipStatsConnTCPRemoteClosures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsConnUDPCreateFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsConnection/cSipStatsConnUDPCreateFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsConnection",
                    "cSipStatsConnUDPCreateFailures"
                  ]
                },
                "description": "Retrieve cSipStatsConnUDPCreateFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsConnTCPCreateFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsConnection/cSipStatsConnTCPCreateFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsConnection",
                    "cSipStatsConnTCPCreateFailures"
                  ]
                },
                "description": "Retrieve cSipStatsConnTCPCreateFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsConnUDPInactiveTimeouts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsConnection/cSipStatsConnUDPInactiveTimeouts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsConnection",
                    "cSipStatsConnUDPInactiveTimeouts"
                  ]
                },
                "description": "Retrieve cSipStatsConnUDPInactiveTimeouts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsConnTCPInactiveTimeouts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsConnection/cSipStatsConnTCPInactiveTimeouts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsConnection",
                    "cSipStatsConnTCPInactiveTimeouts"
                  ]
                },
                "description": "Retrieve cSipStatsConnTCPInactiveTimeouts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsActiveUDPConnections",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsConnection/cSipStatsActiveUDPConnections",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsConnection",
                    "cSipStatsActiveUDPConnections"
                  ]
                },
                "description": "Retrieve cSipStatsActiveUDPConnections from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsActiveTCPConnections",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsConnection/cSipStatsActiveTCPConnections",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsConnection",
                    "cSipStatsActiveTCPConnections"
                  ]
                },
                "description": "Retrieve cSipStatsActiveTCPConnections from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgEarlyMediaTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgEarlyMediaTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgEarlyMediaTable"
                  ]
                },
                "description": "Retrieve cSipCfgEarlyMediaTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgEarlyMediaEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgEarlyMediaTable/cSipCfgEarlyMediaEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgEarlyMediaTable",
                    "cSipCfgEarlyMediaEntry"
                  ]
                },
                "description": "Retrieve cSipCfgEarlyMediaEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgEarlyMediaStatusCodeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgEarlyMediaTable/cSipCfgEarlyMediaEntry/cSipCfgEarlyMediaStatusCodeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgEarlyMediaTable",
                    "cSipCfgEarlyMediaEntry",
                    "cSipCfgEarlyMediaStatusCodeIndex"
                  ]
                },
                "description": "Retrieve cSipCfgEarlyMediaStatusCodeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgEarlyMediaCutThruDisabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgEarlyMediaTable/cSipCfgEarlyMediaEntry/cSipCfgEarlyMediaCutThruDisabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgEarlyMediaTable",
                    "cSipCfgEarlyMediaEntry",
                    "cSipCfgEarlyMediaCutThruDisabled"
                  ]
                },
                "description": "Retrieve cSipCfgEarlyMediaCutThruDisabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgBindSourceAddrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgBindSourceAddrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgBindSourceAddrTable"
                  ]
                },
                "description": "Retrieve cSipCfgBindSourceAddrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgBindSourceAddrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgBindSourceAddrTable/cSipCfgBindSourceAddrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgBindSourceAddrTable",
                    "cSipCfgBindSourceAddrEntry"
                  ]
                },
                "description": "Retrieve cSipCfgBindSourceAddrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgBindSourceAddrScope",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgBindSourceAddrTable/cSipCfgBindSourceAddrEntry/cSipCfgBindSourceAddrScope",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgBindSourceAddrTable",
                    "cSipCfgBindSourceAddrEntry",
                    "cSipCfgBindSourceAddrScope"
                  ]
                },
                "description": "Retrieve cSipCfgBindSourceAddrScope from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgBindSourceAddrInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgBindSourceAddrTable/cSipCfgBindSourceAddrEntry/cSipCfgBindSourceAddrInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgBindSourceAddrTable",
                    "cSipCfgBindSourceAddrEntry",
                    "cSipCfgBindSourceAddrInterface"
                  ]
                },
                "description": "Retrieve cSipCfgBindSourceAddrInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgPeerTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgPeerTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgPeerTable"
                  ]
                },
                "description": "Retrieve cSipCfgPeerTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgPeerEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgPeerTable/cSipCfgPeerEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgPeerTable",
                    "cSipCfgPeerEntry"
                  ]
                },
                "description": "Retrieve cSipCfgPeerEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgPeerIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgPeerTable/cSipCfgPeerEntry/cSipCfgPeerIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgPeerTable",
                    "cSipCfgPeerEntry",
                    "cSipCfgPeerIndex"
                  ]
                },
                "description": "Retrieve cSipCfgPeerIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgPeerOutSessionTransport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgPeerTable/cSipCfgPeerEntry/cSipCfgPeerOutSessionTransport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgPeerTable",
                    "cSipCfgPeerEntry",
                    "cSipCfgPeerOutSessionTransport"
                  ]
                },
                "description": "Retrieve cSipCfgPeerOutSessionTransport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgPeerReliable1xxRspStr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgPeerTable/cSipCfgPeerEntry/cSipCfgPeerReliable1xxRspStr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgPeerTable",
                    "cSipCfgPeerEntry",
                    "cSipCfgPeerReliable1xxRspStr"
                  ]
                },
                "description": "Retrieve cSipCfgPeerReliable1xxRspStr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgPeerReliable1xxRspHdr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgPeerTable/cSipCfgPeerEntry/cSipCfgPeerReliable1xxRspHdr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgPeerTable",
                    "cSipCfgPeerEntry",
                    "cSipCfgPeerReliable1xxRspHdr"
                  ]
                },
                "description": "Retrieve cSipCfgPeerReliable1xxRspHdr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgPeerUrlType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgPeerTable/cSipCfgPeerEntry/cSipCfgPeerUrlType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgPeerTable",
                    "cSipCfgPeerEntry",
                    "cSipCfgPeerUrlType"
                  ]
                },
                "description": "Retrieve cSipCfgPeerUrlType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgPeerSwitchTransEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgPeerTable/cSipCfgPeerEntry/cSipCfgPeerSwitchTransEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgPeerTable",
                    "cSipCfgPeerEntry",
                    "cSipCfgPeerSwitchTransEnabled"
                  ]
                },
                "description": "Retrieve cSipCfgPeerSwitchTransEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgStatusCauseTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgStatusCauseTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgStatusCauseTable"
                  ]
                },
                "description": "Retrieve cSipCfgStatusCauseTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgStatusCauseEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgStatusCauseTable/cSipCfgStatusCauseEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgStatusCauseTable",
                    "cSipCfgStatusCauseEntry"
                  ]
                },
                "description": "Retrieve cSipCfgStatusCauseEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgStatusCodeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgStatusCauseTable/cSipCfgStatusCauseEntry/cSipCfgStatusCodeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgStatusCauseTable",
                    "cSipCfgStatusCauseEntry",
                    "cSipCfgStatusCodeIndex"
                  ]
                },
                "description": "Retrieve cSipCfgStatusCodeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgPstnCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgStatusCauseTable/cSipCfgStatusCauseEntry/cSipCfgPstnCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgStatusCauseTable",
                    "cSipCfgStatusCauseEntry",
                    "cSipCfgPstnCause"
                  ]
                },
                "description": "Retrieve cSipCfgPstnCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgStatusCauseStoreStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgStatusCauseTable/cSipCfgStatusCauseEntry/cSipCfgStatusCauseStoreStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgStatusCauseTable",
                    "cSipCfgStatusCauseEntry",
                    "cSipCfgStatusCauseStoreStatus"
                  ]
                },
                "description": "Retrieve cSipCfgStatusCauseStoreStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgCauseStatusTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgCauseStatusTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgCauseStatusTable"
                  ]
                },
                "description": "Retrieve cSipCfgCauseStatusTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgCauseStatusEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgCauseStatusTable/cSipCfgCauseStatusEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgCauseStatusTable",
                    "cSipCfgCauseStatusEntry"
                  ]
                },
                "description": "Retrieve cSipCfgCauseStatusEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgPstnCauseIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgCauseStatusTable/cSipCfgCauseStatusEntry/cSipCfgPstnCauseIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgCauseStatusTable",
                    "cSipCfgCauseStatusEntry",
                    "cSipCfgPstnCauseIndex"
                  ]
                },
                "description": "Retrieve cSipCfgPstnCauseIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgStatusCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgCauseStatusTable/cSipCfgCauseStatusEntry/cSipCfgStatusCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgCauseStatusTable",
                    "cSipCfgCauseStatusEntry",
                    "cSipCfgStatusCode"
                  ]
                },
                "description": "Retrieve cSipCfgStatusCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipCfgCauseStatusStoreStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipCfgCauseStatusTable/cSipCfgCauseStatusEntry/cSipCfgCauseStatusStoreStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipCfgCauseStatusTable",
                    "cSipCfgCauseStatusEntry",
                    "cSipCfgCauseStatusStoreStatus"
                  ]
                },
                "description": "Retrieve cSipCfgCauseStatusStoreStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsSuccessOkTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsSuccessOkTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsSuccessOkTable"
                  ]
                },
                "description": "Retrieve cSipStatsSuccessOkTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsSuccessOkEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsSuccessOkTable/cSipStatsSuccessOkEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsSuccessOkTable",
                    "cSipStatsSuccessOkEntry"
                  ]
                },
                "description": "Retrieve cSipStatsSuccessOkEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsSuccessOkMethod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsSuccessOkTable/cSipStatsSuccessOkEntry/cSipStatsSuccessOkMethod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsSuccessOkTable",
                    "cSipStatsSuccessOkEntry",
                    "cSipStatsSuccessOkMethod"
                  ]
                },
                "description": "Retrieve cSipStatsSuccessOkMethod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsSuccessOkInbounds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsSuccessOkTable/cSipStatsSuccessOkEntry/cSipStatsSuccessOkInbounds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsSuccessOkTable",
                    "cSipStatsSuccessOkEntry",
                    "cSipStatsSuccessOkInbounds"
                  ]
                },
                "description": "Retrieve cSipStatsSuccessOkInbounds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSipStatsSuccessOkOutbounds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB/cSipStatsSuccessOkTable/cSipStatsSuccessOkEntry/cSipStatsSuccessOkOutbounds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SIP-UA-MIB:CISCO-SIP-UA-MIB",
                    "cSipStatsSuccessOkTable",
                    "cSipStatsSuccessOkEntry",
                    "cSipStatsSuccessOkOutbounds"
                  ]
                },
                "description": "Retrieve cSipStatsSuccessOkOutbounds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-SONET-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-SONET-MIB\n\nMIB data from `CISCO-SONET-MIB` module.\n\n**Root containers:** 1 (CISCO-SONET-MIB)\n**Paths:** 105 | **Descendants:** 128\n\nAll endpoints are read-only (GET).\n\nEndpoints: 105 | Operations: 105",
          "item": [
            {
              "name": "GET Get CISCO-SONET-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB"
                  ]
                },
                "description": "Retrieve CISCO-SONET-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfig"
                  ]
                },
                "description": "Retrieve csApsConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsLineFailureCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfig/csApsLineFailureCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfig",
                    "csApsLineFailureCode"
                  ]
                },
                "description": "Retrieve csApsLineFailureCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsLineSwitchReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfig/csApsLineSwitchReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfig",
                    "csApsLineSwitchReason"
                  ]
                },
                "description": "Retrieve csApsLineSwitchReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csNotifications",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csNotifications",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csNotifications"
                  ]
                },
                "description": "Retrieve csNotifications from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csNotificationsEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csNotifications/csNotificationsEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csNotifications",
                    "csNotificationsEnabled"
                  ]
                },
                "description": "Retrieve csNotificationsEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csConfigTable"
                  ]
                },
                "description": "Retrieve csConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csConfigTable/csConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csConfigTable",
                    "csConfigEntry"
                  ]
                },
                "description": "Retrieve csConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csConfigTable/csConfigEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csConfigTable",
                    "csConfigEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csConfigLoopbackType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csConfigTable/csConfigEntry/csConfigLoopbackType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csConfigTable",
                    "csConfigEntry",
                    "csConfigLoopbackType"
                  ]
                },
                "description": "Retrieve csConfigLoopbackType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csConfigXmtClockSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csConfigTable/csConfigEntry/csConfigXmtClockSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csConfigTable",
                    "csConfigEntry",
                    "csConfigXmtClockSource"
                  ]
                },
                "description": "Retrieve csConfigXmtClockSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csConfigFrameScramble",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csConfigTable/csConfigEntry/csConfigFrameScramble",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csConfigTable",
                    "csConfigEntry",
                    "csConfigFrameScramble"
                  ]
                },
                "description": "Retrieve csConfigFrameScramble from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csConfigType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csConfigTable/csConfigEntry/csConfigType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csConfigTable",
                    "csConfigEntry",
                    "csConfigType"
                  ]
                },
                "description": "Retrieve csConfigType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csConfigRDIVType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csConfigTable/csConfigEntry/csConfigRDIVType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csConfigTable",
                    "csConfigEntry",
                    "csConfigRDIVType"
                  ]
                },
                "description": "Retrieve csConfigRDIVType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csConfigRDIPType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csConfigTable/csConfigEntry/csConfigRDIPType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csConfigTable",
                    "csConfigEntry",
                    "csConfigRDIPType"
                  ]
                },
                "description": "Retrieve csConfigRDIPType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csTributaryType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csConfigTable/csConfigEntry/csTributaryType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csConfigTable",
                    "csConfigEntry",
                    "csTributaryType"
                  ]
                },
                "description": "Retrieve csTributaryType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csTributaryMappingType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csConfigTable/csConfigEntry/csTributaryMappingType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csConfigTable",
                    "csConfigEntry",
                    "csTributaryMappingType"
                  ]
                },
                "description": "Retrieve csTributaryMappingType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csTributaryFramingType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csConfigTable/csConfigEntry/csTributaryFramingType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csConfigTable",
                    "csConfigEntry",
                    "csTributaryFramingType"
                  ]
                },
                "description": "Retrieve csTributaryFramingType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csSignallingTransportMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csConfigTable/csConfigEntry/csSignallingTransportMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csConfigTable",
                    "csConfigEntry",
                    "csSignallingTransportMode"
                  ]
                },
                "description": "Retrieve csSignallingTransportMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csTributaryGroupingType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csConfigTable/csConfigEntry/csTributaryGroupingType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csConfigTable",
                    "csConfigEntry",
                    "csTributaryGroupingType"
                  ]
                },
                "description": "Retrieve csTributaryGroupingType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable"
                  ]
                },
                "description": "Retrieve csApsConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry"
                  ]
                },
                "description": "Retrieve csApsConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsWorkingIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry/csApsWorkingIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry",
                    "csApsWorkingIndex"
                  ]
                },
                "description": "Retrieve csApsWorkingIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsProtectionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry/csApsProtectionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry",
                    "csApsProtectionIndex"
                  ]
                },
                "description": "Retrieve csApsProtectionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry/csApsEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry",
                    "csApsEnable"
                  ]
                },
                "description": "Retrieve csApsEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsArchMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry/csApsArchMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry",
                    "csApsArchMode"
                  ]
                },
                "description": "Retrieve csApsArchMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsActiveLine",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry/csApsActiveLine",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry",
                    "csApsActiveLine"
                  ]
                },
                "description": "Retrieve csApsActiveLine from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsSigFaultBER",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry/csApsSigFaultBER",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry",
                    "csApsSigFaultBER"
                  ]
                },
                "description": "Retrieve csApsSigFaultBER from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsSigDegradeBER",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry/csApsSigDegradeBER",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry",
                    "csApsSigDegradeBER"
                  ]
                },
                "description": "Retrieve csApsSigDegradeBER from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsWaitToRestore",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry/csApsWaitToRestore",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry",
                    "csApsWaitToRestore"
                  ]
                },
                "description": "Retrieve csApsWaitToRestore from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsDirection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry/csApsDirection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry",
                    "csApsDirection"
                  ]
                },
                "description": "Retrieve csApsDirection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsRevertive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry/csApsRevertive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry",
                    "csApsRevertive"
                  ]
                },
                "description": "Retrieve csApsRevertive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsDirectionOperational",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry/csApsDirectionOperational",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry",
                    "csApsDirectionOperational"
                  ]
                },
                "description": "Retrieve csApsDirectionOperational from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsArchModeOperational",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry/csApsArchModeOperational",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry",
                    "csApsArchModeOperational"
                  ]
                },
                "description": "Retrieve csApsArchModeOperational from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsChannelProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry/csApsChannelProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry",
                    "csApsChannelProtocol"
                  ]
                },
                "description": "Retrieve csApsChannelProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsFailureStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry/csApsFailureStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry",
                    "csApsFailureStatus"
                  ]
                },
                "description": "Retrieve csApsFailureStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsSwitchReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry/csApsSwitchReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry",
                    "csApsSwitchReason"
                  ]
                },
                "description": "Retrieve csApsSwitchReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csApsPrimarySection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csApsConfigTable/csApsConfigEntry/csApsPrimarySection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csApsConfigTable",
                    "csApsConfigEntry",
                    "csApsPrimarySection"
                  ]
                },
                "description": "Retrieve csApsPrimarySection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cssTotalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cssTotalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cssTotalTable"
                  ]
                },
                "description": "Retrieve cssTotalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cssTotalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cssTotalTable/cssTotalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cssTotalTable",
                    "cssTotalEntry"
                  ]
                },
                "description": "Retrieve cssTotalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cssTotalTable/cssTotalEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cssTotalTable",
                    "cssTotalEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cssTotalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cssTotalTable/cssTotalEntry/cssTotalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cssTotalTable",
                    "cssTotalEntry",
                    "cssTotalESs"
                  ]
                },
                "description": "Retrieve cssTotalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cssTotalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cssTotalTable/cssTotalEntry/cssTotalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cssTotalTable",
                    "cssTotalEntry",
                    "cssTotalSESs"
                  ]
                },
                "description": "Retrieve cssTotalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cssTotalSEFSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cssTotalTable/cssTotalEntry/cssTotalSEFSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cssTotalTable",
                    "cssTotalEntry",
                    "cssTotalSEFSs"
                  ]
                },
                "description": "Retrieve cssTotalSEFSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cssTotalCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cssTotalTable/cssTotalEntry/cssTotalCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cssTotalTable",
                    "cssTotalEntry",
                    "cssTotalCVs"
                  ]
                },
                "description": "Retrieve cssTotalCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cssTraceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cssTraceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cssTraceTable"
                  ]
                },
                "description": "Retrieve cssTraceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cssTraceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cssTraceTable/cssTraceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cssTraceTable",
                    "cssTraceEntry"
                  ]
                },
                "description": "Retrieve cssTraceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cssTraceTable/cssTraceEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cssTraceTable",
                    "cssTraceEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cssTraceToTransmit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cssTraceTable/cssTraceEntry/cssTraceToTransmit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cssTraceTable",
                    "cssTraceEntry",
                    "cssTraceToTransmit"
                  ]
                },
                "description": "Retrieve cssTraceToTransmit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cssTraceToExpect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cssTraceTable/cssTraceEntry/cssTraceToExpect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cssTraceTable",
                    "cssTraceEntry",
                    "cssTraceToExpect"
                  ]
                },
                "description": "Retrieve cssTraceToExpect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cssTraceFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cssTraceTable/cssTraceEntry/cssTraceFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cssTraceTable",
                    "cssTraceEntry",
                    "cssTraceFailure"
                  ]
                },
                "description": "Retrieve cssTraceFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cssTraceReceived",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cssTraceTable/cssTraceEntry/cssTraceReceived",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cssTraceTable",
                    "cssTraceEntry",
                    "cssTraceReceived"
                  ]
                },
                "description": "Retrieve cssTraceReceived from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cslTotalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cslTotalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cslTotalTable"
                  ]
                },
                "description": "Retrieve cslTotalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cslTotalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cslTotalTable/cslTotalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cslTotalTable",
                    "cslTotalEntry"
                  ]
                },
                "description": "Retrieve cslTotalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cslTotalTable/cslTotalEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cslTotalTable",
                    "cslTotalEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cslTotalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cslTotalTable/cslTotalEntry/cslTotalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cslTotalTable",
                    "cslTotalEntry",
                    "cslTotalESs"
                  ]
                },
                "description": "Retrieve cslTotalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cslTotalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cslTotalTable/cslTotalEntry/cslTotalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cslTotalTable",
                    "cslTotalEntry",
                    "cslTotalSESs"
                  ]
                },
                "description": "Retrieve cslTotalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cslTotalCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cslTotalTable/cslTotalEntry/cslTotalCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cslTotalTable",
                    "cslTotalEntry",
                    "cslTotalCVs"
                  ]
                },
                "description": "Retrieve cslTotalCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cslTotalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cslTotalTable/cslTotalEntry/cslTotalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cslTotalTable",
                    "cslTotalEntry",
                    "cslTotalUASs"
                  ]
                },
                "description": "Retrieve cslTotalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cslFarEndTotalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cslFarEndTotalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cslFarEndTotalTable"
                  ]
                },
                "description": "Retrieve cslFarEndTotalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cslFarEndTotalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cslFarEndTotalTable/cslFarEndTotalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cslFarEndTotalTable",
                    "cslFarEndTotalEntry"
                  ]
                },
                "description": "Retrieve cslFarEndTotalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cslFarEndTotalTable/cslFarEndTotalEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cslFarEndTotalTable",
                    "cslFarEndTotalEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cslFarEndTotalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cslFarEndTotalTable/cslFarEndTotalEntry/cslFarEndTotalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cslFarEndTotalTable",
                    "cslFarEndTotalEntry",
                    "cslFarEndTotalESs"
                  ]
                },
                "description": "Retrieve cslFarEndTotalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cslFarEndTotalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cslFarEndTotalTable/cslFarEndTotalEntry/cslFarEndTotalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cslFarEndTotalTable",
                    "cslFarEndTotalEntry",
                    "cslFarEndTotalSESs"
                  ]
                },
                "description": "Retrieve cslFarEndTotalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cslFarEndTotalCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cslFarEndTotalTable/cslFarEndTotalEntry/cslFarEndTotalCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cslFarEndTotalTable",
                    "cslFarEndTotalEntry",
                    "cslFarEndTotalCVs"
                  ]
                },
                "description": "Retrieve cslFarEndTotalCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cslFarEndTotalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cslFarEndTotalTable/cslFarEndTotalEntry/cslFarEndTotalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cslFarEndTotalTable",
                    "cslFarEndTotalEntry",
                    "cslFarEndTotalUASs"
                  ]
                },
                "description": "Retrieve cslFarEndTotalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspTotalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspTotalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspTotalTable"
                  ]
                },
                "description": "Retrieve cspTotalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspTotalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspTotalTable/cspTotalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspTotalTable",
                    "cspTotalEntry"
                  ]
                },
                "description": "Retrieve cspTotalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspTotalTable/cspTotalEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspTotalTable",
                    "cspTotalEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspTotalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspTotalTable/cspTotalEntry/cspTotalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspTotalTable",
                    "cspTotalEntry",
                    "cspTotalESs"
                  ]
                },
                "description": "Retrieve cspTotalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspTotalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspTotalTable/cspTotalEntry/cspTotalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspTotalTable",
                    "cspTotalEntry",
                    "cspTotalSESs"
                  ]
                },
                "description": "Retrieve cspTotalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspTotalCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspTotalTable/cspTotalEntry/cspTotalCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspTotalTable",
                    "cspTotalEntry",
                    "cspTotalCVs"
                  ]
                },
                "description": "Retrieve cspTotalCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspTotalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspTotalTable/cspTotalEntry/cspTotalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspTotalTable",
                    "cspTotalEntry",
                    "cspTotalUASs"
                  ]
                },
                "description": "Retrieve cspTotalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspFarEndTotalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspFarEndTotalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspFarEndTotalTable"
                  ]
                },
                "description": "Retrieve cspFarEndTotalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspFarEndTotalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspFarEndTotalTable/cspFarEndTotalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspFarEndTotalTable",
                    "cspFarEndTotalEntry"
                  ]
                },
                "description": "Retrieve cspFarEndTotalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspFarEndTotalTable/cspFarEndTotalEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspFarEndTotalTable",
                    "cspFarEndTotalEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspFarEndTotalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspFarEndTotalTable/cspFarEndTotalEntry/cspFarEndTotalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspFarEndTotalTable",
                    "cspFarEndTotalEntry",
                    "cspFarEndTotalESs"
                  ]
                },
                "description": "Retrieve cspFarEndTotalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspFarEndTotalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspFarEndTotalTable/cspFarEndTotalEntry/cspFarEndTotalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspFarEndTotalTable",
                    "cspFarEndTotalEntry",
                    "cspFarEndTotalSESs"
                  ]
                },
                "description": "Retrieve cspFarEndTotalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspFarEndTotalCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspFarEndTotalTable/cspFarEndTotalEntry/cspFarEndTotalCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspFarEndTotalTable",
                    "cspFarEndTotalEntry",
                    "cspFarEndTotalCVs"
                  ]
                },
                "description": "Retrieve cspFarEndTotalCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspFarEndTotalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspFarEndTotalTable/cspFarEndTotalEntry/cspFarEndTotalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspFarEndTotalTable",
                    "cspFarEndTotalEntry",
                    "cspFarEndTotalUASs"
                  ]
                },
                "description": "Retrieve cspFarEndTotalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspTraceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspTraceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspTraceTable"
                  ]
                },
                "description": "Retrieve cspTraceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspTraceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspTraceTable/cspTraceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspTraceTable",
                    "cspTraceEntry"
                  ]
                },
                "description": "Retrieve cspTraceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspTraceTable/cspTraceEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspTraceTable",
                    "cspTraceEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspTraceToTransmit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspTraceTable/cspTraceEntry/cspTraceToTransmit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspTraceTable",
                    "cspTraceEntry",
                    "cspTraceToTransmit"
                  ]
                },
                "description": "Retrieve cspTraceToTransmit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspTraceToExpect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspTraceTable/cspTraceEntry/cspTraceToExpect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspTraceTable",
                    "cspTraceEntry",
                    "cspTraceToExpect"
                  ]
                },
                "description": "Retrieve cspTraceToExpect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspTraceFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspTraceTable/cspTraceEntry/cspTraceFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspTraceTable",
                    "cspTraceEntry",
                    "cspTraceFailure"
                  ]
                },
                "description": "Retrieve cspTraceFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspTraceReceived",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspTraceTable/cspTraceEntry/cspTraceReceived",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspTraceTable",
                    "cspTraceEntry",
                    "cspTraceReceived"
                  ]
                },
                "description": "Retrieve cspTraceReceived from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csStatsTable"
                  ]
                },
                "description": "Retrieve csStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csStatsTable/csStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csStatsTable",
                    "csStatsEntry"
                  ]
                },
                "description": "Retrieve csStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csStatsTable/csStatsEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csStatsTable",
                    "csStatsEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cssLOSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csStatsTable/csStatsEntry/cssLOSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csStatsTable",
                    "csStatsEntry",
                    "cssLOSs"
                  ]
                },
                "description": "Retrieve cssLOSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cssLOFs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csStatsTable/csStatsEntry/cssLOFs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csStatsTable",
                    "csStatsEntry",
                    "cssLOFs"
                  ]
                },
                "description": "Retrieve cssLOFs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cslAISs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csStatsTable/csStatsEntry/cslAISs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csStatsTable",
                    "csStatsEntry",
                    "cslAISs"
                  ]
                },
                "description": "Retrieve cslAISs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cslRFIs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csStatsTable/csStatsEntry/cslRFIs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csStatsTable",
                    "csStatsEntry",
                    "cslRFIs"
                  ]
                },
                "description": "Retrieve cslRFIs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspAISs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csStatsTable/csStatsEntry/cspAISs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csStatsTable",
                    "csStatsEntry",
                    "cspAISs"
                  ]
                },
                "description": "Retrieve cspAISs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspRFIs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csStatsTable/csStatsEntry/cspRFIs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csStatsTable",
                    "csStatsEntry",
                    "cspRFIs"
                  ]
                },
                "description": "Retrieve cspRFIs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csAu4Tug3ConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csAu4Tug3ConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csAu4Tug3ConfigTable"
                  ]
                },
                "description": "Retrieve csAu4Tug3ConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csAu4Tug3ConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csAu4Tug3ConfigTable/csAu4Tug3ConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csAu4Tug3ConfigTable",
                    "csAu4Tug3ConfigEntry"
                  ]
                },
                "description": "Retrieve csAu4Tug3ConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csAu4Tug3ConfigTable/csAu4Tug3ConfigEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csAu4Tug3ConfigTable",
                    "csAu4Tug3ConfigEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csAu4Tug3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csAu4Tug3ConfigTable/csAu4Tug3ConfigEntry/csAu4Tug3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csAu4Tug3ConfigTable",
                    "csAu4Tug3ConfigEntry",
                    "csAu4Tug3"
                  ]
                },
                "description": "Retrieve csAu4Tug3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csAu4Tug3Payload",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/csAu4Tug3ConfigTable/csAu4Tug3ConfigEntry/csAu4Tug3Payload",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "csAu4Tug3ConfigTable",
                    "csAu4Tug3ConfigEntry",
                    "csAu4Tug3Payload"
                  ]
                },
                "description": "Retrieve csAu4Tug3Payload from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspSonetPathPayload",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspSonetPathPayload",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspSonetPathPayload"
                  ]
                },
                "description": "Retrieve cspSonetPathPayload from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspTributaryMappingType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspTributaryMappingType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspTributaryMappingType"
                  ]
                },
                "description": "Retrieve cspTributaryMappingType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspSignallingTransportMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspSignallingTransportMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspSignallingTransportMode"
                  ]
                },
                "description": "Retrieve cspSignallingTransportMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cspTributaryGroupingType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SONET-MIB:CISCO-SONET-MIB/cspTributaryGroupingType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SONET-MIB:CISCO-SONET-MIB",
                    "cspTributaryGroupingType"
                  ]
                },
                "description": "Retrieve cspTributaryGroupingType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-STACKWISE-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-STACKWISE-MIB\n\nMIB data from `CISCO-STACKWISE-MIB` module.\n\n**Root containers:** 1 (CISCO-STACKWISE-MIB)\n**Paths:** 87 | **Descendants:** 171\n\nAll endpoints are read-only (GET).\n\nEndpoints: 87 | Operations: 87",
          "item": [
            {
              "name": "GET Get CISCO-STACKWISE-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB"
                  ]
                },
                "description": "Retrieve CISCO-STACKWISE-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswGlobals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswGlobals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswGlobals"
                  ]
                },
                "description": "Retrieve cswGlobals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswMaxSwitchNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswGlobals/cswMaxSwitchNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswGlobals",
                    "cswMaxSwitchNum"
                  ]
                },
                "description": "Retrieve cswMaxSwitchNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswMaxSwitchConfigPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswGlobals/cswMaxSwitchConfigPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswGlobals",
                    "cswMaxSwitchConfigPriority"
                  ]
                },
                "description": "Retrieve cswMaxSwitchConfigPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswRingRedundant",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswGlobals/cswRingRedundant",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswGlobals",
                    "cswRingRedundant"
                  ]
                },
                "description": "Retrieve cswRingRedundant from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswEnableIndividualStackNotifications",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswGlobals/cswEnableIndividualStackNotifications",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswGlobals",
                    "cswEnableIndividualStackNotifications"
                  ]
                },
                "description": "Retrieve cswEnableIndividualStackNotifications from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackDomainNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswGlobals/cswStackDomainNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswGlobals",
                    "cswStackDomainNum"
                  ]
                },
                "description": "Retrieve cswStackDomainNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswGlobals/cswStackType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswGlobals",
                    "cswStackType"
                  ]
                },
                "description": "Retrieve cswStackType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackBandWidth",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswGlobals/cswStackBandWidth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswGlobals",
                    "cswStackBandWidth"
                  ]
                },
                "description": "Retrieve cswStackBandWidth from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchInfoTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable"
                  ]
                },
                "description": "Retrieve cswSwitchInfoTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchInfoEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable/cswSwitchInfoEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable",
                    "cswSwitchInfoEntry"
                  ]
                },
                "description": "Retrieve cswSwitchInfoEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable/cswSwitchInfoEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable",
                    "cswSwitchInfoEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchNumCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable/cswSwitchInfoEntry/cswSwitchNumCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable",
                    "cswSwitchInfoEntry",
                    "cswSwitchNumCurrent"
                  ]
                },
                "description": "Retrieve cswSwitchNumCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchNumNextReload",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable/cswSwitchInfoEntry/cswSwitchNumNextReload",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable",
                    "cswSwitchInfoEntry",
                    "cswSwitchNumNextReload"
                  ]
                },
                "description": "Retrieve cswSwitchNumNextReload from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchRole",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable/cswSwitchInfoEntry/cswSwitchRole",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable",
                    "cswSwitchInfoEntry",
                    "cswSwitchRole"
                  ]
                },
                "description": "Retrieve cswSwitchRole from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchSwPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable/cswSwitchInfoEntry/cswSwitchSwPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable",
                    "cswSwitchInfoEntry",
                    "cswSwitchSwPriority"
                  ]
                },
                "description": "Retrieve cswSwitchSwPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchHwPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable/cswSwitchInfoEntry/cswSwitchHwPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable",
                    "cswSwitchInfoEntry",
                    "cswSwitchHwPriority"
                  ]
                },
                "description": "Retrieve cswSwitchHwPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable/cswSwitchInfoEntry/cswSwitchState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable",
                    "cswSwitchInfoEntry",
                    "cswSwitchState"
                  ]
                },
                "description": "Retrieve cswSwitchState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable/cswSwitchInfoEntry/cswSwitchMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable",
                    "cswSwitchInfoEntry",
                    "cswSwitchMacAddress"
                  ]
                },
                "description": "Retrieve cswSwitchMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchSoftwareImage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable/cswSwitchInfoEntry/cswSwitchSoftwareImage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable",
                    "cswSwitchInfoEntry",
                    "cswSwitchSoftwareImage"
                  ]
                },
                "description": "Retrieve cswSwitchSoftwareImage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchPowerBudget",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable/cswSwitchInfoEntry/cswSwitchPowerBudget",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable",
                    "cswSwitchInfoEntry",
                    "cswSwitchPowerBudget"
                  ]
                },
                "description": "Retrieve cswSwitchPowerBudget from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchPowerCommited",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable/cswSwitchInfoEntry/cswSwitchPowerCommited",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable",
                    "cswSwitchInfoEntry",
                    "cswSwitchPowerCommited"
                  ]
                },
                "description": "Retrieve cswSwitchPowerCommited from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchSystemPowerPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable/cswSwitchInfoEntry/cswSwitchSystemPowerPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable",
                    "cswSwitchInfoEntry",
                    "cswSwitchSystemPowerPriority"
                  ]
                },
                "description": "Retrieve cswSwitchSystemPowerPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchPoeDevicesLowPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable/cswSwitchInfoEntry/cswSwitchPoeDevicesLowPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable",
                    "cswSwitchInfoEntry",
                    "cswSwitchPoeDevicesLowPriority"
                  ]
                },
                "description": "Retrieve cswSwitchPoeDevicesLowPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchPoeDevicesHighPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable/cswSwitchInfoEntry/cswSwitchPoeDevicesHighPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable",
                    "cswSwitchInfoEntry",
                    "cswSwitchPoeDevicesHighPriority"
                  ]
                },
                "description": "Retrieve cswSwitchPoeDevicesHighPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchPowerAllocated",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswSwitchInfoTable/cswSwitchInfoEntry/cswSwitchPowerAllocated",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswSwitchInfoTable",
                    "cswSwitchInfoEntry",
                    "cswSwitchPowerAllocated"
                  ]
                },
                "description": "Retrieve cswSwitchPowerAllocated from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPortInfoTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPortInfoTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPortInfoTable"
                  ]
                },
                "description": "Retrieve cswStackPortInfoTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPortInfoEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPortInfoTable/cswStackPortInfoEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPortInfoTable",
                    "cswStackPortInfoEntry"
                  ]
                },
                "description": "Retrieve cswStackPortInfoEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPortInfoTable/cswStackPortInfoEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPortInfoTable",
                    "cswStackPortInfoEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPortOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPortInfoTable/cswStackPortInfoEntry/cswStackPortOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPortInfoTable",
                    "cswStackPortInfoEntry",
                    "cswStackPortOperStatus"
                  ]
                },
                "description": "Retrieve cswStackPortOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPortNeighbor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPortInfoTable/cswStackPortInfoEntry/cswStackPortNeighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPortInfoTable",
                    "cswStackPortInfoEntry",
                    "cswStackPortNeighbor"
                  ]
                },
                "description": "Retrieve cswStackPortNeighbor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswDistrStackLinkInfoTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswDistrStackLinkInfoTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswDistrStackLinkInfoTable"
                  ]
                },
                "description": "Retrieve cswDistrStackLinkInfoTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswDistrStackLinkInfoEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswDistrStackLinkInfoTable/cswDistrStackLinkInfoEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswDistrStackLinkInfoTable",
                    "cswDistrStackLinkInfoEntry"
                  ]
                },
                "description": "Retrieve cswDistrStackLinkInfoEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswDistrStackLinkInfoTable/cswDistrStackLinkInfoEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswDistrStackLinkInfoTable",
                    "cswDistrStackLinkInfoEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswDSLindex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswDistrStackLinkInfoTable/cswDistrStackLinkInfoEntry/cswDSLindex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswDistrStackLinkInfoTable",
                    "cswDistrStackLinkInfoEntry",
                    "cswDSLindex"
                  ]
                },
                "description": "Retrieve cswDSLindex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswDistrStackLinkBundleOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswDistrStackLinkInfoTable/cswDistrStackLinkInfoEntry/cswDistrStackLinkBundleOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswDistrStackLinkInfoTable",
                    "cswDistrStackLinkInfoEntry",
                    "cswDistrStackLinkBundleOperStatus"
                  ]
                },
                "description": "Retrieve cswDistrStackLinkBundleOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswDistrStackPhyPortInfoTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswDistrStackPhyPortInfoTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswDistrStackPhyPortInfoTable"
                  ]
                },
                "description": "Retrieve cswDistrStackPhyPortInfoTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswDistrStackPhyPortInfoEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswDistrStackPhyPortInfoTable/cswDistrStackPhyPortInfoEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswDistrStackPhyPortInfoTable",
                    "cswDistrStackPhyPortInfoEntry"
                  ]
                },
                "description": "Retrieve cswDistrStackPhyPortInfoEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswDistrStackPhyPortInfoTable/cswDistrStackPhyPortInfoEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswDistrStackPhyPortInfoTable",
                    "cswDistrStackPhyPortInfoEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswDSLindex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswDistrStackPhyPortInfoTable/cswDistrStackPhyPortInfoEntry/cswDSLindex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswDistrStackPhyPortInfoTable",
                    "cswDistrStackPhyPortInfoEntry",
                    "cswDSLindex"
                  ]
                },
                "description": "Retrieve cswDSLindex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswDistrStackPhyPortInfoTable/cswDistrStackPhyPortInfoEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswDistrStackPhyPortInfoTable",
                    "cswDistrStackPhyPortInfoEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswDistrStackPhyPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswDistrStackPhyPortInfoTable/cswDistrStackPhyPortInfoEntry/cswDistrStackPhyPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswDistrStackPhyPortInfoTable",
                    "cswDistrStackPhyPortInfoEntry",
                    "cswDistrStackPhyPort"
                  ]
                },
                "description": "Retrieve cswDistrStackPhyPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswDistrStackPhyPortOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswDistrStackPhyPortInfoTable/cswDistrStackPhyPortInfoEntry/cswDistrStackPhyPortOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswDistrStackPhyPortInfoTable",
                    "cswDistrStackPhyPortInfoEntry",
                    "cswDistrStackPhyPortOperStatus"
                  ]
                },
                "description": "Retrieve cswDistrStackPhyPortOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswDistrStackPhyPortNbr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswDistrStackPhyPortInfoTable/cswDistrStackPhyPortInfoEntry/cswDistrStackPhyPortNbr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswDistrStackPhyPortInfoTable",
                    "cswDistrStackPhyPortInfoEntry",
                    "cswDistrStackPhyPortNbr"
                  ]
                },
                "description": "Retrieve cswDistrStackPhyPortNbr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswDistrStackPhyPortNbrsw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswDistrStackPhyPortInfoTable/cswDistrStackPhyPortInfoEntry/cswDistrStackPhyPortNbrsw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswDistrStackPhyPortInfoTable",
                    "cswDistrStackPhyPortInfoEntry",
                    "cswDistrStackPhyPortNbrsw"
                  ]
                },
                "description": "Retrieve cswDistrStackPhyPortNbrsw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerInfoTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerInfoTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerInfoTable"
                  ]
                },
                "description": "Retrieve cswStackPowerInfoTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerInfoEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerInfoTable/cswStackPowerInfoEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerInfoTable",
                    "cswStackPowerInfoEntry"
                  ]
                },
                "description": "Retrieve cswStackPowerInfoEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerStackNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerInfoTable/cswStackPowerInfoEntry/cswStackPowerStackNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerInfoTable",
                    "cswStackPowerInfoEntry",
                    "cswStackPowerStackNumber"
                  ]
                },
                "description": "Retrieve cswStackPowerStackNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerInfoTable/cswStackPowerInfoEntry/cswStackPowerMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerInfoTable",
                    "cswStackPowerInfoEntry",
                    "cswStackPowerMode"
                  ]
                },
                "description": "Retrieve cswStackPowerMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerMasterMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerInfoTable/cswStackPowerInfoEntry/cswStackPowerMasterMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerInfoTable",
                    "cswStackPowerInfoEntry",
                    "cswStackPowerMasterMacAddress"
                  ]
                },
                "description": "Retrieve cswStackPowerMasterMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerMasterSwitchNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerInfoTable/cswStackPowerInfoEntry/cswStackPowerMasterSwitchNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerInfoTable",
                    "cswStackPowerInfoEntry",
                    "cswStackPowerMasterSwitchNum"
                  ]
                },
                "description": "Retrieve cswStackPowerMasterSwitchNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerNumMembers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerInfoTable/cswStackPowerInfoEntry/cswStackPowerNumMembers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerInfoTable",
                    "cswStackPowerInfoEntry",
                    "cswStackPowerNumMembers"
                  ]
                },
                "description": "Retrieve cswStackPowerNumMembers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerInfoTable/cswStackPowerInfoEntry/cswStackPowerType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerInfoTable",
                    "cswStackPowerInfoEntry",
                    "cswStackPowerType"
                  ]
                },
                "description": "Retrieve cswStackPowerType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerInfoTable/cswStackPowerInfoEntry/cswStackPowerName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerInfoTable",
                    "cswStackPowerInfoEntry",
                    "cswStackPowerName"
                  ]
                },
                "description": "Retrieve cswStackPowerName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerPortInfoTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable"
                  ]
                },
                "description": "Retrieve cswStackPowerPortInfoTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerPortInfoEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/cswStackPowerPortInfoEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "cswStackPowerPortInfoEntry"
                  ]
                },
                "description": "Retrieve cswStackPowerPortInfoEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/cswStackPowerPortInfoEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "cswStackPowerPortInfoEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerPortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/cswStackPowerPortInfoEntry/cswStackPowerPortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "cswStackPowerPortInfoEntry",
                    "cswStackPowerPortIndex"
                  ]
                },
                "description": "Retrieve cswStackPowerPortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerPortOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/cswStackPowerPortInfoEntry/cswStackPowerPortOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "cswStackPowerPortInfoEntry",
                    "cswStackPowerPortOperStatus"
                  ]
                },
                "description": "Retrieve cswStackPowerPortOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerPortNeighborMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/cswStackPowerPortInfoEntry/cswStackPowerPortNeighborMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "cswStackPowerPortInfoEntry",
                    "cswStackPowerPortNeighborMacAddress"
                  ]
                },
                "description": "Retrieve cswStackPowerPortNeighborMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerPortNeighborSwitchNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/cswStackPowerPortInfoEntry/cswStackPowerPortNeighborSwitchNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "cswStackPowerPortInfoEntry",
                    "cswStackPowerPortNeighborSwitchNum"
                  ]
                },
                "description": "Retrieve cswStackPowerPortNeighborSwitchNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerPortLinkStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/cswStackPowerPortInfoEntry/cswStackPowerPortLinkStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "cswStackPowerPortInfoEntry",
                    "cswStackPowerPortLinkStatus"
                  ]
                },
                "description": "Retrieve cswStackPowerPortLinkStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerPortOverCurrentThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/cswStackPowerPortInfoEntry/cswStackPowerPortOverCurrentThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "cswStackPowerPortInfoEntry",
                    "cswStackPowerPortOverCurrentThreshold"
                  ]
                },
                "description": "Retrieve cswStackPowerPortOverCurrentThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerPortName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/cswStackPowerPortInfoEntry/cswStackPowerPortName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "cswStackPowerPortInfoEntry",
                    "cswStackPowerPortName"
                  ]
                },
                "description": "Retrieve cswStackPowerPortName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-1/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-1",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-2/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-2",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPortOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-2/cswStackPortOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-2",
                    "cswStackPortOperStatus"
                  ]
                },
                "description": "Retrieve cswStackPortOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-3/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-3",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchNumCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-3/cswSwitchNumCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-3",
                    "cswSwitchNumCurrent"
                  ]
                },
                "description": "Retrieve cswSwitchNumCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-1/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-1",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchNumCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-1/cswSwitchNumCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-1",
                    "cswSwitchNumCurrent"
                  ]
                },
                "description": "Retrieve cswSwitchNumCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-1/cswSwitchState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-1",
                    "cswSwitchState"
                  ]
                },
                "description": "Retrieve cswSwitchState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-2/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-2",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswSwitchNumCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-2/cswSwitchNumCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-2",
                    "cswSwitchNumCurrent"
                  ]
                },
                "description": "Retrieve cswSwitchNumCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswRingRedundant",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-1/cswRingRedundant",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-1",
                    "cswRingRedundant"
                  ]
                },
                "description": "Retrieve cswRingRedundant from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerPortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-1/cswStackPowerPortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-1",
                    "cswStackPowerPortIndex"
                  ]
                },
                "description": "Retrieve cswStackPowerPortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerPortLinkStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-1/cswStackPowerPortLinkStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-1",
                    "cswStackPowerPortLinkStatus"
                  ]
                },
                "description": "Retrieve cswStackPowerPortLinkStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerPortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-3/cswStackPowerPortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-3",
                    "cswStackPowerPortIndex"
                  ]
                },
                "description": "Retrieve cswStackPowerPortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerPortName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-3/cswStackPowerPortName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-3",
                    "cswStackPowerPortName"
                  ]
                },
                "description": "Retrieve cswStackPowerPortName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerPortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-2/cswStackPowerPortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-2",
                    "cswStackPowerPortIndex"
                  ]
                },
                "description": "Retrieve cswStackPowerPortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerPortOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-2/cswStackPowerPortOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-2",
                    "cswStackPowerPortOperStatus"
                  ]
                },
                "description": "Retrieve cswStackPowerPortOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerPortOverCurrentThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-2/cswStackPowerPortOverCurrentThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-2",
                    "cswStackPowerPortOverCurrentThreshold"
                  ]
                },
                "description": "Retrieve cswStackPowerPortOverCurrentThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerStackNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-1/cswStackPowerStackNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-1",
                    "cswStackPowerStackNumber"
                  ]
                },
                "description": "Retrieve cswStackPowerStackNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cswStackPowerName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB/cswStackPowerPortInfoTable/object-1/cswStackPowerName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STACKWISE-MIB:CISCO-STACKWISE-MIB",
                    "cswStackPowerPortInfoTable",
                    "object-1",
                    "cswStackPowerName"
                  ]
                },
                "description": "Retrieve cswStackPowerName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-STP-EXTENSIONS-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-STP-EXTENSIONS-MIB\n\nMIB data from `CISCO-STP-EXTENSIONS-MIB` module.\n\n**Root containers:** 1 (CISCO-STP-EXTENSIONS-MIB)\n**Paths:** 147 | **Descendants:** 162\n\nAll endpoints are read-only (GET).\n\nEndpoints: 147 | Operations: 147",
          "item": [
            {
              "name": "GET Get CISCO-STP-EXTENSIONS-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB"
                  ]
                },
                "description": "Retrieve CISCO-STP-EXTENSIONS-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxUplinkFastObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxUplinkFastObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxUplinkFastObjects"
                  ]
                },
                "description": "Retrieve stpxUplinkFastObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxUplinkFastEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxUplinkFastObjects/stpxUplinkFastEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxUplinkFastObjects",
                    "stpxUplinkFastEnabled"
                  ]
                },
                "description": "Retrieve stpxUplinkFastEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxUplinkFastTransitions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxUplinkFastObjects/stpxUplinkFastTransitions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxUplinkFastObjects",
                    "stpxUplinkFastTransitions"
                  ]
                },
                "description": "Retrieve stpxUplinkFastTransitions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxUplinkStationLearningGenRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxUplinkFastObjects/stpxUplinkStationLearningGenRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxUplinkFastObjects",
                    "stpxUplinkStationLearningGenRate"
                  ]
                },
                "description": "Retrieve stpxUplinkStationLearningGenRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxUplinkStationLearningFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxUplinkFastObjects/stpxUplinkStationLearningFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxUplinkFastObjects",
                    "stpxUplinkStationLearningFrames"
                  ]
                },
                "description": "Retrieve stpxUplinkStationLearningFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxUplinkFastOperEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxUplinkFastObjects/stpxUplinkFastOperEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxUplinkFastObjects",
                    "stpxUplinkFastOperEnabled"
                  ]
                },
                "description": "Retrieve stpxUplinkFastOperEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBackboneFastObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBackboneFastObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBackboneFastObjects"
                  ]
                },
                "description": "Retrieve stpxBackboneFastObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBackboneFastEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBackboneFastObjects/stpxBackboneFastEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBackboneFastObjects",
                    "stpxBackboneFastEnabled"
                  ]
                },
                "description": "Retrieve stpxBackboneFastEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBackboneFastInInferiorBPDUs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBackboneFastObjects/stpxBackboneFastInInferiorBPDUs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBackboneFastObjects",
                    "stpxBackboneFastInInferiorBPDUs"
                  ]
                },
                "description": "Retrieve stpxBackboneFastInInferiorBPDUs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBackboneFastInRLQRequestPDUs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBackboneFastObjects/stpxBackboneFastInRLQRequestPDUs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBackboneFastObjects",
                    "stpxBackboneFastInRLQRequestPDUs"
                  ]
                },
                "description": "Retrieve stpxBackboneFastInRLQRequestPDUs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBackboneFastInRLQResponsePDUs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBackboneFastObjects/stpxBackboneFastInRLQResponsePDUs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBackboneFastObjects",
                    "stpxBackboneFastInRLQResponsePDUs"
                  ]
                },
                "description": "Retrieve stpxBackboneFastInRLQResponsePDUs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBackboneFastOutRLQRequestPDUs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBackboneFastObjects/stpxBackboneFastOutRLQRequestPDUs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBackboneFastObjects",
                    "stpxBackboneFastOutRLQRequestPDUs"
                  ]
                },
                "description": "Retrieve stpxBackboneFastOutRLQRequestPDUs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBackboneFastOutRLQResponsePDUs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBackboneFastObjects/stpxBackboneFastOutRLQResponsePDUs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBackboneFastObjects",
                    "stpxBackboneFastOutRLQResponsePDUs"
                  ]
                },
                "description": "Retrieve stpxBackboneFastOutRLQResponsePDUs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBackboneFastOperEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBackboneFastObjects/stpxBackboneFastOperEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBackboneFastObjects",
                    "stpxBackboneFastOperEnabled"
                  ]
                },
                "description": "Retrieve stpxBackboneFastOperEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSpanningTreeObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSpanningTreeObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSpanningTreeObjects"
                  ]
                },
                "description": "Retrieve stpxSpanningTreeObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSpanningTreeType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSpanningTreeObjects/stpxSpanningTreeType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSpanningTreeObjects",
                    "stpxSpanningTreeType"
                  ]
                },
                "description": "Retrieve stpxSpanningTreeType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSpanningTreePathCostMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSpanningTreeObjects/stpxSpanningTreePathCostMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSpanningTreeObjects",
                    "stpxSpanningTreePathCostMode"
                  ]
                },
                "description": "Retrieve stpxSpanningTreePathCostMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxExtendedSysIDAdminEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSpanningTreeObjects/stpxExtendedSysIDAdminEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSpanningTreeObjects",
                    "stpxExtendedSysIDAdminEnabled"
                  ]
                },
                "description": "Retrieve stpxExtendedSysIDAdminEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxExtendedSysIDOperEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSpanningTreeObjects/stpxExtendedSysIDOperEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSpanningTreeObjects",
                    "stpxExtendedSysIDOperEnabled"
                  ]
                },
                "description": "Retrieve stpxExtendedSysIDOperEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxNotificationEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSpanningTreeObjects/stpxNotificationEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSpanningTreeObjects",
                    "stpxNotificationEnable"
                  ]
                },
                "description": "Retrieve stpxNotificationEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSpanningTreePathCostOperMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSpanningTreeObjects/stpxSpanningTreePathCostOperMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSpanningTreeObjects",
                    "stpxSpanningTreePathCostOperMode"
                  ]
                },
                "description": "Retrieve stpxSpanningTreePathCostOperMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxMISTPObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxMISTPObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxMISTPObjects"
                  ]
                },
                "description": "Retrieve stpxMISTPObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxMISTPInstanceNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxMISTPObjects/stpxMISTPInstanceNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxMISTPObjects",
                    "stpxMISTPInstanceNumber"
                  ]
                },
                "description": "Retrieve stpxMISTPInstanceNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxLoopGuardObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxLoopGuardObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxLoopGuardObjects"
                  ]
                },
                "description": "Retrieve stpxLoopGuardObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxLoopGuardGlobalDefaultMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxLoopGuardObjects/stpxLoopGuardGlobalDefaultMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxLoopGuardObjects",
                    "stpxLoopGuardGlobalDefaultMode"
                  ]
                },
                "description": "Retrieve stpxLoopGuardGlobalDefaultMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxFastStartObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxFastStartObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxFastStartObjects"
                  ]
                },
                "description": "Retrieve stpxFastStartObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxFastStartBpduGuardEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxFastStartObjects/stpxFastStartBpduGuardEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxFastStartObjects",
                    "stpxFastStartBpduGuardEnable"
                  ]
                },
                "description": "Retrieve stpxFastStartBpduGuardEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxFastStartBpduFilterEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxFastStartObjects/stpxFastStartBpduFilterEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxFastStartObjects",
                    "stpxFastStartBpduFilterEnable"
                  ]
                },
                "description": "Retrieve stpxFastStartBpduFilterEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxFastStartGlobalDefaultMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxFastStartObjects/stpxFastStartGlobalDefaultMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxFastStartObjects",
                    "stpxFastStartGlobalDefaultMode"
                  ]
                },
                "description": "Retrieve stpxFastStartGlobalDefaultMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBpduSkewingObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBpduSkewingObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBpduSkewingObjects"
                  ]
                },
                "description": "Retrieve stpxBpduSkewingObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBpduSkewingDetectionEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBpduSkewingObjects/stpxBpduSkewingDetectionEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBpduSkewingObjects",
                    "stpxBpduSkewingDetectionEnable"
                  ]
                },
                "description": "Retrieve stpxBpduSkewingDetectionEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxMSTObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxMSTObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxMSTObjects"
                  ]
                },
                "description": "Retrieve stpxMSTObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxMSTRegionName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxMSTObjects/stpxMSTRegionName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxMSTObjects",
                    "stpxMSTRegionName"
                  ]
                },
                "description": "Retrieve stpxMSTRegionName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxMSTRegionEditBufferStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxMSTObjects/stpxMSTRegionEditBufferStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxMSTObjects",
                    "stpxMSTRegionEditBufferStatus"
                  ]
                },
                "description": "Retrieve stpxMSTRegionEditBufferStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxMSTRegionEditBufferOperation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxMSTObjects/stpxMSTRegionEditBufferOperation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxMSTObjects",
                    "stpxMSTRegionEditBufferOperation"
                  ]
                },
                "description": "Retrieve stpxMSTRegionEditBufferOperation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxMSTRegionEditName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxMSTObjects/stpxMSTRegionEditName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxMSTObjects",
                    "stpxMSTRegionEditName"
                  ]
                },
                "description": "Retrieve stpxMSTRegionEditName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRSTPObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRSTPObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRSTPObjects"
                  ]
                },
                "description": "Retrieve stpxRSTPObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRSTPTransmitHoldCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRSTPObjects/stpxRSTPTransmitHoldCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRSTPObjects",
                    "stpxRSTPTransmitHoldCount"
                  ]
                },
                "description": "Retrieve stpxRSTPTransmitHoldCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTObjects"
                  ]
                },
                "description": "Retrieve stpxSMSTObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTMaxInstances",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTObjects/stpxSMSTMaxInstances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTObjects",
                    "stpxSMSTMaxInstances"
                  ]
                },
                "description": "Retrieve stpxSMSTMaxInstances from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTMaxInstanceID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTObjects/stpxSMSTMaxInstanceID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTObjects",
                    "stpxSMSTMaxInstanceID"
                  ]
                },
                "description": "Retrieve stpxSMSTMaxInstanceID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTRegionRevision",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTObjects/stpxSMSTRegionRevision",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTObjects",
                    "stpxSMSTRegionRevision"
                  ]
                },
                "description": "Retrieve stpxSMSTRegionRevision from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTRegionEditRevision",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTObjects/stpxSMSTRegionEditRevision",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTObjects",
                    "stpxSMSTRegionEditRevision"
                  ]
                },
                "description": "Retrieve stpxSMSTRegionEditRevision from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTMaxHopCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTObjects/stpxSMSTMaxHopCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTObjects",
                    "stpxSMSTMaxHopCount"
                  ]
                },
                "description": "Retrieve stpxSMSTMaxHopCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTConfigDigest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTObjects/stpxSMSTConfigDigest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTObjects",
                    "stpxSMSTConfigDigest"
                  ]
                },
                "description": "Retrieve stpxSMSTConfigDigest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTConfigPreStandardDigest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTObjects/stpxSMSTConfigPreStandardDigest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTObjects",
                    "stpxSMSTConfigPreStandardDigest"
                  ]
                },
                "description": "Retrieve stpxSMSTConfigPreStandardDigest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxPVSTVlanTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxPVSTVlanTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxPVSTVlanTable"
                  ]
                },
                "description": "Retrieve stpxPVSTVlanTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxPVSTVlanEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxPVSTVlanTable/stpxPVSTVlanEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxPVSTVlanTable",
                    "stpxPVSTVlanEntry"
                  ]
                },
                "description": "Retrieve stpxPVSTVlanEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxPVSTVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxPVSTVlanTable/stpxPVSTVlanEntry/stpxPVSTVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxPVSTVlanTable",
                    "stpxPVSTVlanEntry",
                    "stpxPVSTVlanIndex"
                  ]
                },
                "description": "Retrieve stpxPVSTVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxPVSTVlanEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxPVSTVlanTable/stpxPVSTVlanEntry/stpxPVSTVlanEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxPVSTVlanTable",
                    "stpxPVSTVlanEntry",
                    "stpxPVSTVlanEnable"
                  ]
                },
                "description": "Retrieve stpxPVSTVlanEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxInconsistencyTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxInconsistencyTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxInconsistencyTable"
                  ]
                },
                "description": "Retrieve stpxInconsistencyTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxInconsistencyEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxInconsistencyTable/stpxInconsistencyEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxInconsistencyTable",
                    "stpxInconsistencyEntry"
                  ]
                },
                "description": "Retrieve stpxInconsistencyEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxInconsistencyTable/stpxInconsistencyEntry/stpxVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxInconsistencyTable",
                    "stpxInconsistencyEntry",
                    "stpxVlanIndex"
                  ]
                },
                "description": "Retrieve stpxVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxPortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxInconsistencyTable/stpxInconsistencyEntry/stpxPortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxInconsistencyTable",
                    "stpxInconsistencyEntry",
                    "stpxPortIndex"
                  ]
                },
                "description": "Retrieve stpxPortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxInconsistentState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxInconsistencyTable/stpxInconsistencyEntry/stpxInconsistentState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxInconsistencyTable",
                    "stpxInconsistencyEntry",
                    "stpxInconsistentState"
                  ]
                },
                "description": "Retrieve stpxInconsistentState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRootGuardConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRootGuardConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRootGuardConfigTable"
                  ]
                },
                "description": "Retrieve stpxRootGuardConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRootGuardConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRootGuardConfigTable/stpxRootGuardConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRootGuardConfigTable",
                    "stpxRootGuardConfigEntry"
                  ]
                },
                "description": "Retrieve stpxRootGuardConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRootGuardConfigPortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRootGuardConfigTable/stpxRootGuardConfigEntry/stpxRootGuardConfigPortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRootGuardConfigTable",
                    "stpxRootGuardConfigEntry",
                    "stpxRootGuardConfigPortIndex"
                  ]
                },
                "description": "Retrieve stpxRootGuardConfigPortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRootGuardConfigEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRootGuardConfigTable/stpxRootGuardConfigEntry/stpxRootGuardConfigEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRootGuardConfigTable",
                    "stpxRootGuardConfigEntry",
                    "stpxRootGuardConfigEnabled"
                  ]
                },
                "description": "Retrieve stpxRootGuardConfigEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRootInconsistencyTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRootInconsistencyTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRootInconsistencyTable"
                  ]
                },
                "description": "Retrieve stpxRootInconsistencyTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRootInconsistencyEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRootInconsistencyTable/stpxRootInconsistencyEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRootInconsistencyTable",
                    "stpxRootInconsistencyEntry"
                  ]
                },
                "description": "Retrieve stpxRootInconsistencyEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRootInconsistencyIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRootInconsistencyTable/stpxRootInconsistencyEntry/stpxRootInconsistencyIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRootInconsistencyTable",
                    "stpxRootInconsistencyEntry",
                    "stpxRootInconsistencyIndex"
                  ]
                },
                "description": "Retrieve stpxRootInconsistencyIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRootInconsistencyPortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRootInconsistencyTable/stpxRootInconsistencyEntry/stpxRootInconsistencyPortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRootInconsistencyTable",
                    "stpxRootInconsistencyEntry",
                    "stpxRootInconsistencyPortIndex"
                  ]
                },
                "description": "Retrieve stpxRootInconsistencyPortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRootInconsistencyState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRootInconsistencyTable/stpxRootInconsistencyEntry/stpxRootInconsistencyState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRootInconsistencyTable",
                    "stpxRootInconsistencyEntry",
                    "stpxRootInconsistencyState"
                  ]
                },
                "description": "Retrieve stpxRootInconsistencyState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxMISTPInstanceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxMISTPInstanceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxMISTPInstanceTable"
                  ]
                },
                "description": "Retrieve stpxMISTPInstanceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxMISTPInstanceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxMISTPInstanceTable/stpxMISTPInstanceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxMISTPInstanceTable",
                    "stpxMISTPInstanceEntry"
                  ]
                },
                "description": "Retrieve stpxMISTPInstanceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxMISTPInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxMISTPInstanceTable/stpxMISTPInstanceEntry/stpxMISTPInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxMISTPInstanceTable",
                    "stpxMISTPInstanceEntry",
                    "stpxMISTPInstanceIndex"
                  ]
                },
                "description": "Retrieve stpxMISTPInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxMISTPInstanceEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxMISTPInstanceTable/stpxMISTPInstanceEntry/stpxMISTPInstanceEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxMISTPInstanceTable",
                    "stpxMISTPInstanceEntry",
                    "stpxMISTPInstanceEnable"
                  ]
                },
                "description": "Retrieve stpxMISTPInstanceEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxMISTPInstanceVlansMapped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxMISTPInstanceTable/stpxMISTPInstanceEntry/stpxMISTPInstanceVlansMapped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxMISTPInstanceTable",
                    "stpxMISTPInstanceEntry",
                    "stpxMISTPInstanceVlansMapped"
                  ]
                },
                "description": "Retrieve stpxMISTPInstanceVlansMapped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxMISTPInstanceVlansMapped2k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxMISTPInstanceTable/stpxMISTPInstanceEntry/stpxMISTPInstanceVlansMapped2k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxMISTPInstanceTable",
                    "stpxMISTPInstanceEntry",
                    "stpxMISTPInstanceVlansMapped2k"
                  ]
                },
                "description": "Retrieve stpxMISTPInstanceVlansMapped2k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxMISTPInstanceVlansMapped3k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxMISTPInstanceTable/stpxMISTPInstanceEntry/stpxMISTPInstanceVlansMapped3k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxMISTPInstanceTable",
                    "stpxMISTPInstanceEntry",
                    "stpxMISTPInstanceVlansMapped3k"
                  ]
                },
                "description": "Retrieve stpxMISTPInstanceVlansMapped3k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxMISTPInstanceVlansMapped4k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxMISTPInstanceTable/stpxMISTPInstanceEntry/stpxMISTPInstanceVlansMapped4k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxMISTPInstanceTable",
                    "stpxMISTPInstanceEntry",
                    "stpxMISTPInstanceVlansMapped4k"
                  ]
                },
                "description": "Retrieve stpxMISTPInstanceVlansMapped4k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxLoopGuardConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxLoopGuardConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxLoopGuardConfigTable"
                  ]
                },
                "description": "Retrieve stpxLoopGuardConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxLoopGuardConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxLoopGuardConfigTable/stpxLoopGuardConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxLoopGuardConfigTable",
                    "stpxLoopGuardConfigEntry"
                  ]
                },
                "description": "Retrieve stpxLoopGuardConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxLoopGuardConfigPortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxLoopGuardConfigTable/stpxLoopGuardConfigEntry/stpxLoopGuardConfigPortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxLoopGuardConfigTable",
                    "stpxLoopGuardConfigEntry",
                    "stpxLoopGuardConfigPortIndex"
                  ]
                },
                "description": "Retrieve stpxLoopGuardConfigPortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxLoopGuardConfigMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxLoopGuardConfigTable/stpxLoopGuardConfigEntry/stpxLoopGuardConfigMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxLoopGuardConfigTable",
                    "stpxLoopGuardConfigEntry",
                    "stpxLoopGuardConfigMode"
                  ]
                },
                "description": "Retrieve stpxLoopGuardConfigMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxLoopInconsistencyTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxLoopInconsistencyTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxLoopInconsistencyTable"
                  ]
                },
                "description": "Retrieve stpxLoopInconsistencyTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxLoopInconsistencyEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxLoopInconsistencyTable/stpxLoopInconsistencyEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxLoopInconsistencyTable",
                    "stpxLoopInconsistencyEntry"
                  ]
                },
                "description": "Retrieve stpxLoopInconsistencyEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxLoopInconsistencyIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxLoopInconsistencyTable/stpxLoopInconsistencyEntry/stpxLoopInconsistencyIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxLoopInconsistencyTable",
                    "stpxLoopInconsistencyEntry",
                    "stpxLoopInconsistencyIndex"
                  ]
                },
                "description": "Retrieve stpxLoopInconsistencyIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxLoopInconsistencyPortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxLoopInconsistencyTable/stpxLoopInconsistencyEntry/stpxLoopInconsistencyPortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxLoopInconsistencyTable",
                    "stpxLoopInconsistencyEntry",
                    "stpxLoopInconsistencyPortIndex"
                  ]
                },
                "description": "Retrieve stpxLoopInconsistencyPortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxLoopInconsistencyState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxLoopInconsistencyTable/stpxLoopInconsistencyEntry/stpxLoopInconsistencyState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxLoopInconsistencyTable",
                    "stpxLoopInconsistencyEntry",
                    "stpxLoopInconsistencyState"
                  ]
                },
                "description": "Retrieve stpxLoopInconsistencyState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxFastStartPortTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxFastStartPortTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxFastStartPortTable"
                  ]
                },
                "description": "Retrieve stpxFastStartPortTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxFastStartPortEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxFastStartPortTable/stpxFastStartPortEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxFastStartPortTable",
                    "stpxFastStartPortEntry"
                  ]
                },
                "description": "Retrieve stpxFastStartPortEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxFastStartPortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxFastStartPortTable/stpxFastStartPortEntry/stpxFastStartPortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxFastStartPortTable",
                    "stpxFastStartPortEntry",
                    "stpxFastStartPortIndex"
                  ]
                },
                "description": "Retrieve stpxFastStartPortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxFastStartPortMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxFastStartPortTable/stpxFastStartPortEntry/stpxFastStartPortMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxFastStartPortTable",
                    "stpxFastStartPortEntry",
                    "stpxFastStartPortMode"
                  ]
                },
                "description": "Retrieve stpxFastStartPortMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxFastStartPortBpduGuardMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxFastStartPortTable/stpxFastStartPortEntry/stpxFastStartPortBpduGuardMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxFastStartPortTable",
                    "stpxFastStartPortEntry",
                    "stpxFastStartPortBpduGuardMode"
                  ]
                },
                "description": "Retrieve stpxFastStartPortBpduGuardMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxFastStartPortBpduFilterMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxFastStartPortTable/stpxFastStartPortEntry/stpxFastStartPortBpduFilterMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxFastStartPortTable",
                    "stpxFastStartPortEntry",
                    "stpxFastStartPortBpduFilterMode"
                  ]
                },
                "description": "Retrieve stpxFastStartPortBpduFilterMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxFastStartOperModeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxFastStartOperModeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxFastStartOperModeTable"
                  ]
                },
                "description": "Retrieve stpxFastStartOperModeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxFastStartOperModeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxFastStartOperModeTable/stpxFastStartOperModeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxFastStartOperModeTable",
                    "stpxFastStartOperModeEntry"
                  ]
                },
                "description": "Retrieve stpxFastStartOperModeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxFastStartOperModeInstIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxFastStartOperModeTable/stpxFastStartOperModeEntry/stpxFastStartOperModeInstIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxFastStartOperModeTable",
                    "stpxFastStartOperModeEntry",
                    "stpxFastStartOperModeInstIndex"
                  ]
                },
                "description": "Retrieve stpxFastStartOperModeInstIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxFastStartOperModePortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxFastStartOperModeTable/stpxFastStartOperModeEntry/stpxFastStartOperModePortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxFastStartOperModeTable",
                    "stpxFastStartOperModeEntry",
                    "stpxFastStartOperModePortIndex"
                  ]
                },
                "description": "Retrieve stpxFastStartOperModePortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxFastStartOperMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxFastStartOperModeTable/stpxFastStartOperModeEntry/stpxFastStartOperMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxFastStartOperModeTable",
                    "stpxFastStartOperModeEntry",
                    "stpxFastStartOperMode"
                  ]
                },
                "description": "Retrieve stpxFastStartOperMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBpduSkewingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBpduSkewingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBpduSkewingTable"
                  ]
                },
                "description": "Retrieve stpxBpduSkewingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBpduSkewingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBpduSkewingTable/stpxBpduSkewingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBpduSkewingTable",
                    "stpxBpduSkewingEntry"
                  ]
                },
                "description": "Retrieve stpxBpduSkewingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBpduSkewingInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBpduSkewingTable/stpxBpduSkewingEntry/stpxBpduSkewingInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBpduSkewingTable",
                    "stpxBpduSkewingEntry",
                    "stpxBpduSkewingInstanceIndex"
                  ]
                },
                "description": "Retrieve stpxBpduSkewingInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBpduSkewingPortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBpduSkewingTable/stpxBpduSkewingEntry/stpxBpduSkewingPortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBpduSkewingTable",
                    "stpxBpduSkewingEntry",
                    "stpxBpduSkewingPortIndex"
                  ]
                },
                "description": "Retrieve stpxBpduSkewingPortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBpduSkewingLastSkewDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBpduSkewingTable/stpxBpduSkewingEntry/stpxBpduSkewingLastSkewDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBpduSkewingTable",
                    "stpxBpduSkewingEntry",
                    "stpxBpduSkewingLastSkewDuration"
                  ]
                },
                "description": "Retrieve stpxBpduSkewingLastSkewDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBpduSkewingWorstSkewDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBpduSkewingTable/stpxBpduSkewingEntry/stpxBpduSkewingWorstSkewDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBpduSkewingTable",
                    "stpxBpduSkewingEntry",
                    "stpxBpduSkewingWorstSkewDuration"
                  ]
                },
                "description": "Retrieve stpxBpduSkewingWorstSkewDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxBpduSkewingWorstSkewTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxBpduSkewingTable/stpxBpduSkewingEntry/stpxBpduSkewingWorstSkewTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxBpduSkewingTable",
                    "stpxBpduSkewingEntry",
                    "stpxBpduSkewingWorstSkewTime"
                  ]
                },
                "description": "Retrieve stpxBpduSkewingWorstSkewTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRSTPPortTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRSTPPortTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRSTPPortTable"
                  ]
                },
                "description": "Retrieve stpxRSTPPortTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRSTPPortEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRSTPPortTable/stpxRSTPPortEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRSTPPortTable",
                    "stpxRSTPPortEntry"
                  ]
                },
                "description": "Retrieve stpxRSTPPortEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRSTPPortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRSTPPortTable/stpxRSTPPortEntry/stpxRSTPPortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRSTPPortTable",
                    "stpxRSTPPortEntry",
                    "stpxRSTPPortIndex"
                  ]
                },
                "description": "Retrieve stpxRSTPPortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRSTPPortAdminLinkType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRSTPPortTable/stpxRSTPPortEntry/stpxRSTPPortAdminLinkType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRSTPPortTable",
                    "stpxRSTPPortEntry",
                    "stpxRSTPPortAdminLinkType"
                  ]
                },
                "description": "Retrieve stpxRSTPPortAdminLinkType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRSTPPortOperLinkType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRSTPPortTable/stpxRSTPPortEntry/stpxRSTPPortOperLinkType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRSTPPortTable",
                    "stpxRSTPPortEntry",
                    "stpxRSTPPortOperLinkType"
                  ]
                },
                "description": "Retrieve stpxRSTPPortOperLinkType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRSTPPortProtocolMigration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRSTPPortTable/stpxRSTPPortEntry/stpxRSTPPortProtocolMigration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRSTPPortTable",
                    "stpxRSTPPortEntry",
                    "stpxRSTPPortProtocolMigration"
                  ]
                },
                "description": "Retrieve stpxRSTPPortProtocolMigration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRSTPPortRoleTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRSTPPortRoleTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRSTPPortRoleTable"
                  ]
                },
                "description": "Retrieve stpxRSTPPortRoleTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRSTPPortRoleEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRSTPPortRoleTable/stpxRSTPPortRoleEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRSTPPortRoleTable",
                    "stpxRSTPPortRoleEntry"
                  ]
                },
                "description": "Retrieve stpxRSTPPortRoleEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRSTPPortRoleInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRSTPPortRoleTable/stpxRSTPPortRoleEntry/stpxRSTPPortRoleInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRSTPPortRoleTable",
                    "stpxRSTPPortRoleEntry",
                    "stpxRSTPPortRoleInstanceIndex"
                  ]
                },
                "description": "Retrieve stpxRSTPPortRoleInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRSTPPortRolePortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRSTPPortRoleTable/stpxRSTPPortRoleEntry/stpxRSTPPortRolePortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRSTPPortRoleTable",
                    "stpxRSTPPortRoleEntry",
                    "stpxRSTPPortRolePortIndex"
                  ]
                },
                "description": "Retrieve stpxRSTPPortRolePortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRSTPPortRoleValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRSTPPortRoleTable/stpxRSTPPortRoleEntry/stpxRSTPPortRoleValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRSTPPortRoleTable",
                    "stpxRSTPPortRoleEntry",
                    "stpxRSTPPortRoleValue"
                  ]
                },
                "description": "Retrieve stpxRSTPPortRoleValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRPVSTPortTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRPVSTPortTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRPVSTPortTable"
                  ]
                },
                "description": "Retrieve stpxRPVSTPortTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRPVSTPortEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRPVSTPortTable/stpxRPVSTPortEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRPVSTPortTable",
                    "stpxRPVSTPortEntry"
                  ]
                },
                "description": "Retrieve stpxRPVSTPortEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRPVSTPortVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRPVSTPortTable/stpxRPVSTPortEntry/stpxRPVSTPortVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRPVSTPortTable",
                    "stpxRPVSTPortEntry",
                    "stpxRPVSTPortVlanIndex"
                  ]
                },
                "description": "Retrieve stpxRPVSTPortVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRPVSTPortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRPVSTPortTable/stpxRPVSTPortEntry/stpxRPVSTPortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRPVSTPortTable",
                    "stpxRPVSTPortEntry",
                    "stpxRPVSTPortIndex"
                  ]
                },
                "description": "Retrieve stpxRPVSTPortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxRPVSTPortStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxRPVSTPortTable/stpxRPVSTPortEntry/stpxRPVSTPortStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxRPVSTPortTable",
                    "stpxRPVSTPortEntry",
                    "stpxRPVSTPortStatus"
                  ]
                },
                "description": "Retrieve stpxRPVSTPortStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTInstanceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTInstanceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTInstanceTable"
                  ]
                },
                "description": "Retrieve stpxSMSTInstanceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTInstanceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTInstanceTable/stpxSMSTInstanceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTInstanceTable",
                    "stpxSMSTInstanceEntry"
                  ]
                },
                "description": "Retrieve stpxSMSTInstanceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTInstanceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTInstanceTable/stpxSMSTInstanceEntry/stpxSMSTInstanceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTInstanceTable",
                    "stpxSMSTInstanceEntry",
                    "stpxSMSTInstanceIndex"
                  ]
                },
                "description": "Retrieve stpxSMSTInstanceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTInstanceVlansMapped1k2k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTInstanceTable/stpxSMSTInstanceEntry/stpxSMSTInstanceVlansMapped1k2k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTInstanceTable",
                    "stpxSMSTInstanceEntry",
                    "stpxSMSTInstanceVlansMapped1k2k"
                  ]
                },
                "description": "Retrieve stpxSMSTInstanceVlansMapped1k2k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTInstanceVlansMapped3k4k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTInstanceTable/stpxSMSTInstanceEntry/stpxSMSTInstanceVlansMapped3k4k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTInstanceTable",
                    "stpxSMSTInstanceEntry",
                    "stpxSMSTInstanceVlansMapped3k4k"
                  ]
                },
                "description": "Retrieve stpxSMSTInstanceVlansMapped3k4k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTInstanceRemainingHopCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTInstanceTable/stpxSMSTInstanceEntry/stpxSMSTInstanceRemainingHopCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTInstanceTable",
                    "stpxSMSTInstanceEntry",
                    "stpxSMSTInstanceRemainingHopCount"
                  ]
                },
                "description": "Retrieve stpxSMSTInstanceRemainingHopCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTInstanceCISTRegionalRoot",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTInstanceTable/stpxSMSTInstanceEntry/stpxSMSTInstanceCISTRegionalRoot",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTInstanceTable",
                    "stpxSMSTInstanceEntry",
                    "stpxSMSTInstanceCISTRegionalRoot"
                  ]
                },
                "description": "Retrieve stpxSMSTInstanceCISTRegionalRoot from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTInstanceCISTIntRootCost",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTInstanceTable/stpxSMSTInstanceEntry/stpxSMSTInstanceCISTIntRootCost",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTInstanceTable",
                    "stpxSMSTInstanceEntry",
                    "stpxSMSTInstanceCISTIntRootCost"
                  ]
                },
                "description": "Retrieve stpxSMSTInstanceCISTIntRootCost from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTInstanceEditTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTInstanceEditTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTInstanceEditTable"
                  ]
                },
                "description": "Retrieve stpxSMSTInstanceEditTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTInstanceEditEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTInstanceEditTable/stpxSMSTInstanceEditEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTInstanceEditTable",
                    "stpxSMSTInstanceEditEntry"
                  ]
                },
                "description": "Retrieve stpxSMSTInstanceEditEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTInstanceEditIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTInstanceEditTable/stpxSMSTInstanceEditEntry/stpxSMSTInstanceEditIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTInstanceEditTable",
                    "stpxSMSTInstanceEditEntry",
                    "stpxSMSTInstanceEditIndex"
                  ]
                },
                "description": "Retrieve stpxSMSTInstanceEditIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTInstanceEditVlansMap1k2k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTInstanceEditTable/stpxSMSTInstanceEditEntry/stpxSMSTInstanceEditVlansMap1k2k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTInstanceEditTable",
                    "stpxSMSTInstanceEditEntry",
                    "stpxSMSTInstanceEditVlansMap1k2k"
                  ]
                },
                "description": "Retrieve stpxSMSTInstanceEditVlansMap1k2k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTInstanceEditVlansMap3k4k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTInstanceEditTable/stpxSMSTInstanceEditEntry/stpxSMSTInstanceEditVlansMap3k4k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTInstanceEditTable",
                    "stpxSMSTInstanceEditEntry",
                    "stpxSMSTInstanceEditVlansMap3k4k"
                  ]
                },
                "description": "Retrieve stpxSMSTInstanceEditVlansMap3k4k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTInstanceEditRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTInstanceEditTable/stpxSMSTInstanceEditEntry/stpxSMSTInstanceEditRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTInstanceEditTable",
                    "stpxSMSTInstanceEditEntry",
                    "stpxSMSTInstanceEditRowStatus"
                  ]
                },
                "description": "Retrieve stpxSMSTInstanceEditRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTPortTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTPortTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTPortTable"
                  ]
                },
                "description": "Retrieve stpxSMSTPortTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTPortEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTPortTable/stpxSMSTPortEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTPortTable",
                    "stpxSMSTPortEntry"
                  ]
                },
                "description": "Retrieve stpxSMSTPortEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTPortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTPortTable/stpxSMSTPortEntry/stpxSMSTPortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTPortTable",
                    "stpxSMSTPortEntry",
                    "stpxSMSTPortIndex"
                  ]
                },
                "description": "Retrieve stpxSMSTPortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTPortStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTPortTable/stpxSMSTPortEntry/stpxSMSTPortStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTPortTable",
                    "stpxSMSTPortEntry",
                    "stpxSMSTPortStatus"
                  ]
                },
                "description": "Retrieve stpxSMSTPortStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTPortAdminHelloTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTPortTable/stpxSMSTPortEntry/stpxSMSTPortAdminHelloTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTPortTable",
                    "stpxSMSTPortEntry",
                    "stpxSMSTPortAdminHelloTime"
                  ]
                },
                "description": "Retrieve stpxSMSTPortAdminHelloTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTPortConfigedHelloTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTPortTable/stpxSMSTPortEntry/stpxSMSTPortConfigedHelloTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTPortTable",
                    "stpxSMSTPortEntry",
                    "stpxSMSTPortConfigedHelloTime"
                  ]
                },
                "description": "Retrieve stpxSMSTPortConfigedHelloTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTPortOperHelloTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTPortTable/stpxSMSTPortEntry/stpxSMSTPortOperHelloTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTPortTable",
                    "stpxSMSTPortEntry",
                    "stpxSMSTPortOperHelloTime"
                  ]
                },
                "description": "Retrieve stpxSMSTPortOperHelloTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTPortAdminMSTMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTPortTable/stpxSMSTPortEntry/stpxSMSTPortAdminMSTMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTPortTable",
                    "stpxSMSTPortEntry",
                    "stpxSMSTPortAdminMSTMode"
                  ]
                },
                "description": "Retrieve stpxSMSTPortAdminMSTMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxSMSTPortOperMSTMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxSMSTPortTable/stpxSMSTPortEntry/stpxSMSTPortOperMSTMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxSMSTPortTable",
                    "stpxSMSTPortEntry",
                    "stpxSMSTPortOperMSTMode"
                  ]
                },
                "description": "Retrieve stpxSMSTPortOperMSTMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxPreferredVlansMap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxPreferredVlansMap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxPreferredVlansMap"
                  ]
                },
                "description": "Retrieve stpxPreferredVlansMap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxPreferredVlansMap2k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxPreferredVlansMap2k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxPreferredVlansMap2k"
                  ]
                },
                "description": "Retrieve stpxPreferredVlansMap2k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxPreferredVlansMap3k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxPreferredVlansMap3k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxPreferredVlansMap3k"
                  ]
                },
                "description": "Retrieve stpxPreferredVlansMap3k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxPreferredVlansMap4k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxPreferredVlansMap4k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxPreferredVlansMap4k"
                  ]
                },
                "description": "Retrieve stpxPreferredVlansMap4k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxLongStpPortPathCost",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxLongStpPortPathCost",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxLongStpPortPathCost"
                  ]
                },
                "description": "Retrieve stpxLongStpPortPathCost from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxVlanMISTPInstMapInstIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxVlanMISTPInstMapInstIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxVlanMISTPInstMapInstIndex"
                  ]
                },
                "description": "Retrieve stpxVlanMISTPInstMapInstIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxVlanMISTPInstMapEditInstIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxVlanMISTPInstMapEditInstIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxVlanMISTPInstMapEditInstIndex"
                  ]
                },
                "description": "Retrieve stpxVlanMISTPInstMapEditInstIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stpxPreferredMISTPInstancesMap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB/stpxPreferredMISTPInstancesMap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-STP-EXTENSIONS-MIB:CISCO-STP-EXTENSIONS-MIB",
                    "stpxPreferredMISTPInstancesMap"
                  ]
                },
                "description": "Retrieve stpxPreferredMISTPInstancesMap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-SUBSCRIBER-SESSION-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-SUBSCRIBER-SESSION-MIB\n\nMIB data from `CISCO-SUBSCRIBER-SESSION-MIB` module.\n\n**Root containers:** 1 (CISCO-SUBSCRIBER-SESSION-MIB)\n**Paths:** 186 | **Descendants:** 201\n\nAll endpoints are read-only (GET).\n\nEndpoints: 186 | Operations: 186",
          "item": [
            {
              "name": "GET Get CISCO-SUBSCRIBER-SESSION-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB"
                  ]
                },
                "description": "Retrieve CISCO-SUBSCRIBER-SESSION-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJob",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJob",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJob"
                  ]
                },
                "description": "Retrieve csubJob from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobFinishedNotifyEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJob/csubJobFinishedNotifyEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJob",
                    "csubJobFinishedNotifyEnable"
                  ]
                },
                "description": "Retrieve csubJobFinishedNotifyEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobIndexedAttributes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJob/csubJobIndexedAttributes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJob",
                    "csubJobIndexedAttributes"
                  ]
                },
                "description": "Retrieve csubJobIndexedAttributes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobIdNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJob/csubJobIdNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJob",
                    "csubJobIdNext"
                  ]
                },
                "description": "Retrieve csubJobIdNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMaxNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJob/csubJobMaxNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJob",
                    "csubJobMaxNumber"
                  ]
                },
                "description": "Retrieve csubJobMaxNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMaxLife",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJob/csubJobMaxLife",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJob",
                    "csubJobMaxLife"
                  ]
                },
                "description": "Retrieve csubJobMaxLife from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJob/csubJobCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJob",
                    "csubJobCount"
                  ]
                },
                "description": "Retrieve csubJobCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggThresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggThresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggThresh"
                  ]
                },
                "description": "Retrieve csubAggThresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsThreshNotifEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggThresh/csubAggStatsThreshNotifEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggThresh",
                    "csubAggStatsThreshNotifEnable"
                  ]
                },
                "description": "Retrieve csubAggStatsThreshNotifEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable"
                  ]
                },
                "description": "Retrieve csubSessionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry"
                  ]
                },
                "description": "Retrieve csubSessionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionType"
                  ]
                },
                "description": "Retrieve csubSessionType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionIpAddrAssignment",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionIpAddrAssignment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionIpAddrAssignment"
                  ]
                },
                "description": "Retrieve csubSessionIpAddrAssignment from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionState"
                  ]
                },
                "description": "Retrieve csubSessionState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionAuthenticated",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionAuthenticated",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionAuthenticated"
                  ]
                },
                "description": "Retrieve csubSessionAuthenticated from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionRedundancyMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionRedundancyMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionRedundancyMode"
                  ]
                },
                "description": "Retrieve csubSessionRedundancyMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionCreationTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionCreationTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionCreationTime"
                  ]
                },
                "description": "Retrieve csubSessionCreationTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionDerivedCfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionDerivedCfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionDerivedCfg"
                  ]
                },
                "description": "Retrieve csubSessionDerivedCfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionAvailableIdentities",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionAvailableIdentities",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionAvailableIdentities"
                  ]
                },
                "description": "Retrieve csubSessionAvailableIdentities from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionSubscriberLabel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionSubscriberLabel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionSubscriberLabel"
                  ]
                },
                "description": "Retrieve csubSessionSubscriberLabel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionMacAddress"
                  ]
                },
                "description": "Retrieve csubSessionMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionNativeVrf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionNativeVrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionNativeVrf"
                  ]
                },
                "description": "Retrieve csubSessionNativeVrf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionNativeIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionNativeIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionNativeIpAddrType"
                  ]
                },
                "description": "Retrieve csubSessionNativeIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionNativeIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionNativeIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionNativeIpAddr"
                  ]
                },
                "description": "Retrieve csubSessionNativeIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionNativeIpMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionNativeIpMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionNativeIpMask"
                  ]
                },
                "description": "Retrieve csubSessionNativeIpMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionDomainVrf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionDomainVrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionDomainVrf"
                  ]
                },
                "description": "Retrieve csubSessionDomainVrf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionDomainIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionDomainIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionDomainIpAddrType"
                  ]
                },
                "description": "Retrieve csubSessionDomainIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionDomainIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionDomainIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionDomainIpAddr"
                  ]
                },
                "description": "Retrieve csubSessionDomainIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionDomainIpMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionDomainIpMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionDomainIpMask"
                  ]
                },
                "description": "Retrieve csubSessionDomainIpMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionPbhk",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionPbhk",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionPbhk"
                  ]
                },
                "description": "Retrieve csubSessionPbhk from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionRemoteId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionRemoteId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionRemoteId"
                  ]
                },
                "description": "Retrieve csubSessionRemoteId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionCircuitId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionCircuitId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionCircuitId"
                  ]
                },
                "description": "Retrieve csubSessionCircuitId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionNasPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionNasPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionNasPort"
                  ]
                },
                "description": "Retrieve csubSessionNasPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionDomain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionDomain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionDomain"
                  ]
                },
                "description": "Retrieve csubSessionDomain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionUsername",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionUsername",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionUsername"
                  ]
                },
                "description": "Retrieve csubSessionUsername from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionAcctSessionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionAcctSessionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionAcctSessionId"
                  ]
                },
                "description": "Retrieve csubSessionAcctSessionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionDnis",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionDnis",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionDnis"
                  ]
                },
                "description": "Retrieve csubSessionDnis from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionMedia",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionMedia",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionMedia"
                  ]
                },
                "description": "Retrieve csubSessionMedia from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionMlpNegotiated",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionMlpNegotiated",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionMlpNegotiated"
                  ]
                },
                "description": "Retrieve csubSessionMlpNegotiated from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionProtocol"
                  ]
                },
                "description": "Retrieve csubSessionProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionDhcpClass",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionDhcpClass",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionDhcpClass"
                  ]
                },
                "description": "Retrieve csubSessionDhcpClass from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionTunnelName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionTunnelName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionTunnelName"
                  ]
                },
                "description": "Retrieve csubSessionTunnelName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionLocationIdentifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionLocationIdentifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionLocationIdentifier"
                  ]
                },
                "description": "Retrieve csubSessionLocationIdentifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionServiceIdentifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionServiceIdentifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionServiceIdentifier"
                  ]
                },
                "description": "Retrieve csubSessionServiceIdentifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionLastChanged",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionLastChanged",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionLastChanged"
                  ]
                },
                "description": "Retrieve csubSessionLastChanged from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionNativeIpAddrType2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionNativeIpAddrType2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionNativeIpAddrType2"
                  ]
                },
                "description": "Retrieve csubSessionNativeIpAddrType2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionNativeIpAddr2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionNativeIpAddr2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionNativeIpAddr2"
                  ]
                },
                "description": "Retrieve csubSessionNativeIpAddr2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionNativeIpMask2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionTable/csubSessionEntry/csubSessionNativeIpMask2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionTable",
                    "csubSessionEntry",
                    "csubSessionNativeIpMask2"
                  ]
                },
                "description": "Retrieve csubSessionNativeIpMask2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionByTypeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionByTypeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionByTypeTable"
                  ]
                },
                "description": "Retrieve csubSessionByTypeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionByTypeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionByTypeTable/csubSessionByTypeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionByTypeTable",
                    "csubSessionByTypeEntry"
                  ]
                },
                "description": "Retrieve csubSessionByTypeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionByType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionByTypeTable/csubSessionByTypeEntry/csubSessionByType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionByTypeTable",
                    "csubSessionByTypeEntry",
                    "csubSessionByType"
                  ]
                },
                "description": "Retrieve csubSessionByType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubSessionByTypeTable/csubSessionByTypeEntry/csubSessionIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubSessionByTypeTable",
                    "csubSessionByTypeEntry",
                    "csubSessionIfIndex"
                  ]
                },
                "description": "Retrieve csubSessionIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable"
                  ]
                },
                "description": "Retrieve csubAggStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry"
                  ]
                },
                "description": "Retrieve csubAggStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsPointType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsPointType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsPointType"
                  ]
                },
                "description": "Retrieve csubAggStatsPointType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsPoint",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsPoint",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsPoint"
                  ]
                },
                "description": "Retrieve csubAggStatsPoint from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsSessionType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsSessionType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsSessionType"
                  ]
                },
                "description": "Retrieve csubAggStatsSessionType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsPendingSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsPendingSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsPendingSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsPendingSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsUpSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsUpSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsUpSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsUpSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsAuthSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsAuthSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsAuthSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsAuthSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsUnAuthSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsUnAuthSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsUnAuthSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsUnAuthSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsLightWeightSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsLightWeightSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsLightWeightSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsLightWeightSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsRedSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsRedSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsRedSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsRedSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsHighUpSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsHighUpSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsHighUpSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsHighUpSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsAvgSessionUptime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsAvgSessionUptime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsAvgSessionUptime"
                  ]
                },
                "description": "Retrieve csubAggStatsAvgSessionUptime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsAvgSessionRPM",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsAvgSessionRPM",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsAvgSessionRPM"
                  ]
                },
                "description": "Retrieve csubAggStatsAvgSessionRPM from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsAvgSessionRPH",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsAvgSessionRPH",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsAvgSessionRPH"
                  ]
                },
                "description": "Retrieve csubAggStatsAvgSessionRPH from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsThrottleEngagements",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsThrottleEngagements",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsThrottleEngagements"
                  ]
                },
                "description": "Retrieve csubAggStatsThrottleEngagements from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsTotalCreatedSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsTotalCreatedSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsTotalCreatedSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsTotalCreatedSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsTotalFailedSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsTotalFailedSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsTotalFailedSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsTotalFailedSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsTotalUpSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsTotalUpSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsTotalUpSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsTotalUpSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsTotalAuthSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsTotalAuthSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsTotalAuthSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsTotalAuthSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsTotalDiscSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsTotalDiscSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsTotalDiscSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsTotalDiscSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsTotalLightWeightSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsTotalLightWeightSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsTotalLightWeightSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsTotalLightWeightSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsTotalFlowsUp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsTotalFlowsUp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsTotalFlowsUp"
                  ]
                },
                "description": "Retrieve csubAggStatsTotalFlowsUp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsDayCreatedSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsDayCreatedSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsDayCreatedSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsDayCreatedSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsDayFailedSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsDayFailedSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsDayFailedSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsDayFailedSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsDayUpSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsDayUpSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsDayUpSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsDayUpSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsDayAuthSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsDayAuthSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsDayAuthSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsDayAuthSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsDayDiscSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsDayDiscSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsDayDiscSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsDayDiscSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsCurrTimeElapsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsCurrTimeElapsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsCurrTimeElapsed"
                  ]
                },
                "description": "Retrieve csubAggStatsCurrTimeElapsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsCurrValidIntervals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsCurrValidIntervals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsCurrValidIntervals"
                  ]
                },
                "description": "Retrieve csubAggStatsCurrValidIntervals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsCurrInvalidIntervals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsCurrInvalidIntervals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsCurrInvalidIntervals"
                  ]
                },
                "description": "Retrieve csubAggStatsCurrInvalidIntervals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsCurrFlowsUp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsCurrFlowsUp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsCurrFlowsUp"
                  ]
                },
                "description": "Retrieve csubAggStatsCurrFlowsUp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsCurrCreatedSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsCurrCreatedSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsCurrCreatedSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsCurrCreatedSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsCurrFailedSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsCurrFailedSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsCurrFailedSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsCurrFailedSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsCurrUpSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsCurrUpSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsCurrUpSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsCurrUpSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsCurrAuthSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsCurrAuthSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsCurrAuthSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsCurrAuthSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsCurrDiscSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsCurrDiscSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsCurrDiscSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsCurrDiscSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsTable/csubAggStatsEntry/csubAggStatsDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsTable",
                    "csubAggStatsEntry",
                    "csubAggStatsDiscontinuityTime"
                  ]
                },
                "description": "Retrieve csubAggStatsDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsIntTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsIntTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsIntTable"
                  ]
                },
                "description": "Retrieve csubAggStatsIntTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsIntEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsIntTable/csubAggStatsIntEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsIntTable",
                    "csubAggStatsIntEntry"
                  ]
                },
                "description": "Retrieve csubAggStatsIntEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsPointType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsIntTable/csubAggStatsIntEntry/csubAggStatsPointType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsIntTable",
                    "csubAggStatsIntEntry",
                    "csubAggStatsPointType"
                  ]
                },
                "description": "Retrieve csubAggStatsPointType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsPoint",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsIntTable/csubAggStatsIntEntry/csubAggStatsPoint",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsIntTable",
                    "csubAggStatsIntEntry",
                    "csubAggStatsPoint"
                  ]
                },
                "description": "Retrieve csubAggStatsPoint from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsSessionType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsIntTable/csubAggStatsIntEntry/csubAggStatsSessionType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsIntTable",
                    "csubAggStatsIntEntry",
                    "csubAggStatsSessionType"
                  ]
                },
                "description": "Retrieve csubAggStatsSessionType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsIntNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsIntTable/csubAggStatsIntEntry/csubAggStatsIntNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsIntTable",
                    "csubAggStatsIntEntry",
                    "csubAggStatsIntNumber"
                  ]
                },
                "description": "Retrieve csubAggStatsIntNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsIntValid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsIntTable/csubAggStatsIntEntry/csubAggStatsIntValid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsIntTable",
                    "csubAggStatsIntEntry",
                    "csubAggStatsIntValid"
                  ]
                },
                "description": "Retrieve csubAggStatsIntValid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsIntCreatedSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsIntTable/csubAggStatsIntEntry/csubAggStatsIntCreatedSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsIntTable",
                    "csubAggStatsIntEntry",
                    "csubAggStatsIntCreatedSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsIntCreatedSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsIntFailedSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsIntTable/csubAggStatsIntEntry/csubAggStatsIntFailedSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsIntTable",
                    "csubAggStatsIntEntry",
                    "csubAggStatsIntFailedSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsIntFailedSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsIntUpSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsIntTable/csubAggStatsIntEntry/csubAggStatsIntUpSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsIntTable",
                    "csubAggStatsIntEntry",
                    "csubAggStatsIntUpSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsIntUpSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsIntAuthSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsIntTable/csubAggStatsIntEntry/csubAggStatsIntAuthSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsIntTable",
                    "csubAggStatsIntEntry",
                    "csubAggStatsIntAuthSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsIntAuthSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsIntDiscSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsIntTable/csubAggStatsIntEntry/csubAggStatsIntDiscSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsIntTable",
                    "csubAggStatsIntEntry",
                    "csubAggStatsIntDiscSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsIntDiscSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsThreshTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsThreshTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsThreshTable"
                  ]
                },
                "description": "Retrieve csubAggStatsThreshTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsThreshEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsThreshTable/csubAggStatsThreshEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsThreshTable",
                    "csubAggStatsThreshEntry"
                  ]
                },
                "description": "Retrieve csubAggStatsThreshEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionRisingThresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsThreshTable/csubAggStatsThreshEntry/csubSessionRisingThresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsThreshTable",
                    "csubAggStatsThreshEntry",
                    "csubSessionRisingThresh"
                  ]
                },
                "description": "Retrieve csubSessionRisingThresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionFallingThresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsThreshTable/csubAggStatsThreshEntry/csubSessionFallingThresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsThreshTable",
                    "csubAggStatsThreshEntry",
                    "csubSessionFallingThresh"
                  ]
                },
                "description": "Retrieve csubSessionFallingThresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionDeltaPercentFallingThresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsThreshTable/csubAggStatsThreshEntry/csubSessionDeltaPercentFallingThresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsThreshTable",
                    "csubAggStatsThreshEntry",
                    "csubSessionDeltaPercentFallingThresh"
                  ]
                },
                "description": "Retrieve csubSessionDeltaPercentFallingThresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionThreshEvalInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubAggStatsThreshTable/csubAggStatsThreshEntry/csubSessionThreshEvalInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubAggStatsThreshTable",
                    "csubAggStatsThreshEntry",
                    "csubSessionThreshEvalInterval"
                  ]
                },
                "description": "Retrieve csubSessionThreshEvalInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobTable"
                  ]
                },
                "description": "Retrieve csubJobTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobTable/csubJobEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobTable",
                    "csubJobEntry"
                  ]
                },
                "description": "Retrieve csubJobEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobTable/csubJobEntry/csubJobId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobTable",
                    "csubJobEntry",
                    "csubJobId"
                  ]
                },
                "description": "Retrieve csubJobId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobTable/csubJobEntry/csubJobStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobTable",
                    "csubJobEntry",
                    "csubJobStatus"
                  ]
                },
                "description": "Retrieve csubJobStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobTable/csubJobEntry/csubJobStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobTable",
                    "csubJobEntry",
                    "csubJobStorage"
                  ]
                },
                "description": "Retrieve csubJobStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobTable/csubJobEntry/csubJobType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobTable",
                    "csubJobEntry",
                    "csubJobType"
                  ]
                },
                "description": "Retrieve csubJobType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobControl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobTable/csubJobEntry/csubJobControl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobTable",
                    "csubJobEntry",
                    "csubJobControl"
                  ]
                },
                "description": "Retrieve csubJobControl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobTable/csubJobEntry/csubJobState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobTable",
                    "csubJobEntry",
                    "csubJobState"
                  ]
                },
                "description": "Retrieve csubJobState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobStartedTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobTable/csubJobEntry/csubJobStartedTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobTable",
                    "csubJobEntry",
                    "csubJobStartedTime"
                  ]
                },
                "description": "Retrieve csubJobStartedTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobFinishedTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobTable/csubJobEntry/csubJobFinishedTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobTable",
                    "csubJobEntry",
                    "csubJobFinishedTime"
                  ]
                },
                "description": "Retrieve csubJobFinishedTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobFinishedReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobTable/csubJobEntry/csubJobFinishedReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobTable",
                    "csubJobEntry",
                    "csubJobFinishedReason"
                  ]
                },
                "description": "Retrieve csubJobFinishedReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchParamsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable"
                  ]
                },
                "description": "Retrieve csubJobMatchParamsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchParamsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry"
                  ]
                },
                "description": "Retrieve csubJobMatchParamsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobId"
                  ]
                },
                "description": "Retrieve csubJobId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchIdentities",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchIdentities",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchIdentities"
                  ]
                },
                "description": "Retrieve csubJobMatchIdentities from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchOtherParams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchOtherParams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchOtherParams"
                  ]
                },
                "description": "Retrieve csubJobMatchOtherParams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchSubscriberLabel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchSubscriberLabel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchSubscriberLabel"
                  ]
                },
                "description": "Retrieve csubJobMatchSubscriberLabel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchMacAddress"
                  ]
                },
                "description": "Retrieve csubJobMatchMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchNativeVrf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchNativeVrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchNativeVrf"
                  ]
                },
                "description": "Retrieve csubJobMatchNativeVrf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchNativeIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchNativeIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchNativeIpAddrType"
                  ]
                },
                "description": "Retrieve csubJobMatchNativeIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchNativeIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchNativeIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchNativeIpAddr"
                  ]
                },
                "description": "Retrieve csubJobMatchNativeIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchNativeIpMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchNativeIpMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchNativeIpMask"
                  ]
                },
                "description": "Retrieve csubJobMatchNativeIpMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchDomainVrf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchDomainVrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchDomainVrf"
                  ]
                },
                "description": "Retrieve csubJobMatchDomainVrf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchDomainIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchDomainIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchDomainIpAddrType"
                  ]
                },
                "description": "Retrieve csubJobMatchDomainIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchDomainIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchDomainIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchDomainIpAddr"
                  ]
                },
                "description": "Retrieve csubJobMatchDomainIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchDomainIpMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchDomainIpMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchDomainIpMask"
                  ]
                },
                "description": "Retrieve csubJobMatchDomainIpMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchPbhk",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchPbhk",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchPbhk"
                  ]
                },
                "description": "Retrieve csubJobMatchPbhk from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchRemoteId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchRemoteId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchRemoteId"
                  ]
                },
                "description": "Retrieve csubJobMatchRemoteId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchCircuitId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchCircuitId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchCircuitId"
                  ]
                },
                "description": "Retrieve csubJobMatchCircuitId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchNasPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchNasPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchNasPort"
                  ]
                },
                "description": "Retrieve csubJobMatchNasPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchDomain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchDomain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchDomain"
                  ]
                },
                "description": "Retrieve csubJobMatchDomain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchUsername",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchUsername",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchUsername"
                  ]
                },
                "description": "Retrieve csubJobMatchUsername from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchAcctSessionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchAcctSessionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchAcctSessionId"
                  ]
                },
                "description": "Retrieve csubJobMatchAcctSessionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchDnis",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchDnis",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchDnis"
                  ]
                },
                "description": "Retrieve csubJobMatchDnis from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchMedia",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchMedia",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchMedia"
                  ]
                },
                "description": "Retrieve csubJobMatchMedia from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchMlpNegotiated",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchMlpNegotiated",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchMlpNegotiated"
                  ]
                },
                "description": "Retrieve csubJobMatchMlpNegotiated from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchProtocol"
                  ]
                },
                "description": "Retrieve csubJobMatchProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchServiceName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchServiceName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchServiceName"
                  ]
                },
                "description": "Retrieve csubJobMatchServiceName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchDhcpClass",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchDhcpClass",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchDhcpClass"
                  ]
                },
                "description": "Retrieve csubJobMatchDhcpClass from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchTunnelName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchTunnelName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchTunnelName"
                  ]
                },
                "description": "Retrieve csubJobMatchTunnelName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchDanglingDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchDanglingDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchDanglingDuration"
                  ]
                },
                "description": "Retrieve csubJobMatchDanglingDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchState"
                  ]
                },
                "description": "Retrieve csubJobMatchState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchAuthenticated",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchAuthenticated",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchAuthenticated"
                  ]
                },
                "description": "Retrieve csubJobMatchAuthenticated from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobMatchRedundancyMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobMatchParamsTable/csubJobMatchParamsEntry/csubJobMatchRedundancyMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobMatchParamsTable",
                    "csubJobMatchParamsEntry",
                    "csubJobMatchRedundancyMode"
                  ]
                },
                "description": "Retrieve csubJobMatchRedundancyMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobQueryParamsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobQueryParamsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobQueryParamsTable"
                  ]
                },
                "description": "Retrieve csubJobQueryParamsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobQueryParamsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobQueryParamsTable/csubJobQueryParamsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobQueryParamsTable",
                    "csubJobQueryParamsEntry"
                  ]
                },
                "description": "Retrieve csubJobQueryParamsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobQueryParamsTable/csubJobQueryParamsEntry/csubJobId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobQueryParamsTable",
                    "csubJobQueryParamsEntry",
                    "csubJobId"
                  ]
                },
                "description": "Retrieve csubJobId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobQuerySortKey1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobQueryParamsTable/csubJobQueryParamsEntry/csubJobQuerySortKey1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobQueryParamsTable",
                    "csubJobQueryParamsEntry",
                    "csubJobQuerySortKey1"
                  ]
                },
                "description": "Retrieve csubJobQuerySortKey1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobQuerySortKey2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobQueryParamsTable/csubJobQueryParamsEntry/csubJobQuerySortKey2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobQueryParamsTable",
                    "csubJobQueryParamsEntry",
                    "csubJobQuerySortKey2"
                  ]
                },
                "description": "Retrieve csubJobQuerySortKey2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobQuerySortKey3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobQueryParamsTable/csubJobQueryParamsEntry/csubJobQuerySortKey3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobQueryParamsTable",
                    "csubJobQueryParamsEntry",
                    "csubJobQuerySortKey3"
                  ]
                },
                "description": "Retrieve csubJobQuerySortKey3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobQueryResultingReportSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobQueryParamsTable/csubJobQueryParamsEntry/csubJobQueryResultingReportSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobQueryParamsTable",
                    "csubJobQueryParamsEntry",
                    "csubJobQueryResultingReportSize"
                  ]
                },
                "description": "Retrieve csubJobQueryResultingReportSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobQueueTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobQueueTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobQueueTable"
                  ]
                },
                "description": "Retrieve csubJobQueueTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobQueueEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobQueueTable/csubJobQueueEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobQueueTable",
                    "csubJobQueueEntry"
                  ]
                },
                "description": "Retrieve csubJobQueueEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobQueueNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobQueueTable/csubJobQueueEntry/csubJobQueueNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobQueueTable",
                    "csubJobQueueEntry",
                    "csubJobQueueNumber"
                  ]
                },
                "description": "Retrieve csubJobQueueNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobQueueJobId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobQueueTable/csubJobQueueEntry/csubJobQueueJobId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobQueueTable",
                    "csubJobQueueEntry",
                    "csubJobQueueJobId"
                  ]
                },
                "description": "Retrieve csubJobQueueJobId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobReportTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable"
                  ]
                },
                "description": "Retrieve csubJobReportTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobReportEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/csubJobReportEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "csubJobReportEntry"
                  ]
                },
                "description": "Retrieve csubJobReportEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/csubJobReportEntry/csubJobId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "csubJobReportEntry",
                    "csubJobId"
                  ]
                },
                "description": "Retrieve csubJobId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobReportId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/csubJobReportEntry/csubJobReportId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "csubJobReportEntry",
                    "csubJobReportId"
                  ]
                },
                "description": "Retrieve csubJobReportId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobReportSession",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/csubJobReportEntry/csubJobReportSession",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "csubJobReportEntry",
                    "csubJobReportSession"
                  ]
                },
                "description": "Retrieve csubJobReportSession from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/object-1/csubJobId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "object-1",
                    "csubJobId"
                  ]
                },
                "description": "Retrieve csubJobId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobStartedTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/object-1/csubJobStartedTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "object-1",
                    "csubJobStartedTime"
                  ]
                },
                "description": "Retrieve csubJobStartedTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/object-2/csubJobId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "object-2",
                    "csubJobId"
                  ]
                },
                "description": "Retrieve csubJobId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobFinishedTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/object-2/csubJobFinishedTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "object-2",
                    "csubJobFinishedTime"
                  ]
                },
                "description": "Retrieve csubJobFinishedTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/object-3/csubJobId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "object-3",
                    "csubJobId"
                  ]
                },
                "description": "Retrieve csubJobId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubJobFinishedReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/object-3/csubJobFinishedReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "object-3",
                    "csubJobFinishedReason"
                  ]
                },
                "description": "Retrieve csubJobFinishedReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsPointType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/object-1/csubAggStatsPointType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "object-1",
                    "csubAggStatsPointType"
                  ]
                },
                "description": "Retrieve csubAggStatsPointType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsPoint",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/object-1/csubAggStatsPoint",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "object-1",
                    "csubAggStatsPoint"
                  ]
                },
                "description": "Retrieve csubAggStatsPoint from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsSessionType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/object-1/csubAggStatsSessionType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "object-1",
                    "csubAggStatsSessionType"
                  ]
                },
                "description": "Retrieve csubAggStatsSessionType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubAggStatsUpSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/object-1/csubAggStatsUpSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "object-1",
                    "csubAggStatsUpSessions"
                  ]
                },
                "description": "Retrieve csubAggStatsUpSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionRisingThresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/object-2/csubSessionRisingThresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "object-2",
                    "csubSessionRisingThresh"
                  ]
                },
                "description": "Retrieve csubSessionRisingThresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionFallingThresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/object-2/csubSessionFallingThresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "object-2",
                    "csubSessionFallingThresh"
                  ]
                },
                "description": "Retrieve csubSessionFallingThresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get csubSessionDeltaPercentFallingThresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB/csubJobReportTable/object-2/csubSessionDeltaPercentFallingThresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SUBSCRIBER-SESSION-MIB:CISCO-SUBSCRIBER-SESSION-MIB",
                    "csubJobReportTable",
                    "object-2",
                    "csubSessionDeltaPercentFallingThresh"
                  ]
                },
                "description": "Retrieve csubSessionDeltaPercentFallingThresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-SYSLOG-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-SYSLOG-MIB\n\nMIB data from `CISCO-SYSLOG-MIB` module.\n\n**Root containers:** 1 (CISCO-SYSLOG-MIB)\n**Paths:** 42 | **Descendants:** 41\n\nAll endpoints are read-only (GET).\n\nEndpoints: 42 | Operations: 42",
          "item": [
            {
              "name": "GET Get CISCO-SYSLOG-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB"
                  ]
                },
                "description": "Retrieve CISCO-SYSLOG-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogBasic",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogBasic",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogBasic"
                  ]
                },
                "description": "Retrieve clogBasic from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogNotificationsSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogBasic/clogNotificationsSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogBasic",
                    "clogNotificationsSent"
                  ]
                },
                "description": "Retrieve clogNotificationsSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogNotificationsEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogBasic/clogNotificationsEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogBasic",
                    "clogNotificationsEnabled"
                  ]
                },
                "description": "Retrieve clogNotificationsEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogMaxSeverity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogBasic/clogMaxSeverity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogBasic",
                    "clogMaxSeverity"
                  ]
                },
                "description": "Retrieve clogMaxSeverity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogMsgIgnores",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogBasic/clogMsgIgnores",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogBasic",
                    "clogMsgIgnores"
                  ]
                },
                "description": "Retrieve clogMsgIgnores from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogMsgDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogBasic/clogMsgDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogBasic",
                    "clogMsgDrops"
                  ]
                },
                "description": "Retrieve clogMsgDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogOriginIDType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogBasic/clogOriginIDType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogBasic",
                    "clogOriginIDType"
                  ]
                },
                "description": "Retrieve clogOriginIDType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogOriginID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogBasic/clogOriginID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogBasic",
                    "clogOriginID"
                  ]
                },
                "description": "Retrieve clogOriginID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistory",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogHistory",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogHistory"
                  ]
                },
                "description": "Retrieve clogHistory from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistTableMaxLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogHistory/clogHistTableMaxLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogHistory",
                    "clogHistTableMaxLength"
                  ]
                },
                "description": "Retrieve clogHistTableMaxLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistMsgsFlushed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogHistory/clogHistMsgsFlushed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogHistory",
                    "clogHistMsgsFlushed"
                  ]
                },
                "description": "Retrieve clogHistMsgsFlushed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogServer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServer"
                  ]
                },
                "description": "Retrieve clogServer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogMaxServers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServer/clogMaxServers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServer",
                    "clogMaxServers"
                  ]
                },
                "description": "Retrieve clogMaxServers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistoryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogHistoryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogHistoryTable"
                  ]
                },
                "description": "Retrieve clogHistoryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistoryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogHistoryTable/clogHistoryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogHistoryTable",
                    "clogHistoryEntry"
                  ]
                },
                "description": "Retrieve clogHistoryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogHistoryTable/clogHistoryEntry/clogHistIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogHistoryTable",
                    "clogHistoryEntry",
                    "clogHistIndex"
                  ]
                },
                "description": "Retrieve clogHistIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistFacility",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogHistoryTable/clogHistoryEntry/clogHistFacility",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogHistoryTable",
                    "clogHistoryEntry",
                    "clogHistFacility"
                  ]
                },
                "description": "Retrieve clogHistFacility from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistSeverity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogHistoryTable/clogHistoryEntry/clogHistSeverity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogHistoryTable",
                    "clogHistoryEntry",
                    "clogHistSeverity"
                  ]
                },
                "description": "Retrieve clogHistSeverity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistMsgName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogHistoryTable/clogHistoryEntry/clogHistMsgName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogHistoryTable",
                    "clogHistoryEntry",
                    "clogHistMsgName"
                  ]
                },
                "description": "Retrieve clogHistMsgName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistMsgText",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogHistoryTable/clogHistoryEntry/clogHistMsgText",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogHistoryTable",
                    "clogHistoryEntry",
                    "clogHistMsgText"
                  ]
                },
                "description": "Retrieve clogHistMsgText from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistTimestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogHistoryTable/clogHistoryEntry/clogHistTimestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogHistoryTable",
                    "clogHistoryEntry",
                    "clogHistTimestamp"
                  ]
                },
                "description": "Retrieve clogHistTimestamp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogServerConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable"
                  ]
                },
                "description": "Retrieve clogServerConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogServerConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/clogServerConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "clogServerConfigEntry"
                  ]
                },
                "description": "Retrieve clogServerConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogServerAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/clogServerConfigEntry/clogServerAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "clogServerConfigEntry",
                    "clogServerAddrType"
                  ]
                },
                "description": "Retrieve clogServerAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogServerAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/clogServerConfigEntry/clogServerAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "clogServerConfigEntry",
                    "clogServerAddr"
                  ]
                },
                "description": "Retrieve clogServerAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogServerStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/clogServerConfigEntry/clogServerStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "clogServerConfigEntry",
                    "clogServerStatus"
                  ]
                },
                "description": "Retrieve clogServerStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/object-1/clogHistIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "object-1",
                    "clogHistIndex"
                  ]
                },
                "description": "Retrieve clogHistIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistFacility",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/object-1/clogHistFacility",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "object-1",
                    "clogHistFacility"
                  ]
                },
                "description": "Retrieve clogHistFacility from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/object-2/clogHistIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "object-2",
                    "clogHistIndex"
                  ]
                },
                "description": "Retrieve clogHistIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistSeverity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/object-2/clogHistSeverity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "object-2",
                    "clogHistSeverity"
                  ]
                },
                "description": "Retrieve clogHistSeverity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/object-3/clogHistIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "object-3",
                    "clogHistIndex"
                  ]
                },
                "description": "Retrieve clogHistIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistMsgName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/object-3/clogHistMsgName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "object-3",
                    "clogHistMsgName"
                  ]
                },
                "description": "Retrieve clogHistMsgName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/object-4/clogHistIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "object-4",
                    "clogHistIndex"
                  ]
                },
                "description": "Retrieve clogHistIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistMsgText",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/object-4/clogHistMsgText",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "object-4",
                    "clogHistMsgText"
                  ]
                },
                "description": "Retrieve clogHistMsgText from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/object-5/clogHistIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "object-5",
                    "clogHistIndex"
                  ]
                },
                "description": "Retrieve clogHistIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clogHistTimestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB/clogServerConfigTable/object-5/clogHistTimestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-SYSLOG-MIB:CISCO-SYSLOG-MIB",
                    "clogServerConfigTable",
                    "object-5",
                    "clogHistTimestamp"
                  ]
                },
                "description": "Retrieve clogHistTimestamp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-TAP2-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-TAP2-MIB\n\nMIB data from `CISCO-TAP2-MIB` module.\n\n**Root containers:** 1 (CISCO-TAP2-MIB)\n**Paths:** 60 | **Descendants:** 65\n\nAll endpoints are read-only (GET).\n\nEndpoints: 60 | Operations: 60",
          "item": [
            {
              "name": "GET Get CISCO-TAP2-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB"
                  ]
                },
                "description": "Retrieve CISCO-TAP2-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationGroup"
                  ]
                },
                "description": "Retrieve cTap2MediationGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationNewIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationGroup/cTap2MediationNewIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationGroup",
                    "cTap2MediationNewIndex"
                  ]
                },
                "description": "Retrieve cTap2MediationNewIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationCapabilities",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationGroup/cTap2MediationCapabilities",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationGroup",
                    "cTap2MediationCapabilities"
                  ]
                },
                "description": "Retrieve cTap2MediationCapabilities from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugGroup"
                  ]
                },
                "description": "Retrieve cTap2DebugGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugGroup/cTap2DebugAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugGroup",
                    "cTap2DebugAge"
                  ]
                },
                "description": "Retrieve cTap2DebugAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugMaxEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugGroup/cTap2DebugMaxEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugGroup",
                    "cTap2DebugMaxEntries"
                  ]
                },
                "description": "Retrieve cTap2DebugMaxEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationTable"
                  ]
                },
                "description": "Retrieve cTap2MediationTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationTable/cTap2MediationEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationTable",
                    "cTap2MediationEntry"
                  ]
                },
                "description": "Retrieve cTap2MediationEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationContentId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationTable/cTap2MediationEntry/cTap2MediationContentId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationTable",
                    "cTap2MediationEntry",
                    "cTap2MediationContentId"
                  ]
                },
                "description": "Retrieve cTap2MediationContentId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationDestAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationTable/cTap2MediationEntry/cTap2MediationDestAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationTable",
                    "cTap2MediationEntry",
                    "cTap2MediationDestAddressType"
                  ]
                },
                "description": "Retrieve cTap2MediationDestAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationDestAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationTable/cTap2MediationEntry/cTap2MediationDestAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationTable",
                    "cTap2MediationEntry",
                    "cTap2MediationDestAddress"
                  ]
                },
                "description": "Retrieve cTap2MediationDestAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationDestPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationTable/cTap2MediationEntry/cTap2MediationDestPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationTable",
                    "cTap2MediationEntry",
                    "cTap2MediationDestPort"
                  ]
                },
                "description": "Retrieve cTap2MediationDestPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationSrcInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationTable/cTap2MediationEntry/cTap2MediationSrcInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationTable",
                    "cTap2MediationEntry",
                    "cTap2MediationSrcInterface"
                  ]
                },
                "description": "Retrieve cTap2MediationSrcInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationRtcpPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationTable/cTap2MediationEntry/cTap2MediationRtcpPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationTable",
                    "cTap2MediationEntry",
                    "cTap2MediationRtcpPort"
                  ]
                },
                "description": "Retrieve cTap2MediationRtcpPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationDscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationTable/cTap2MediationEntry/cTap2MediationDscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationTable",
                    "cTap2MediationEntry",
                    "cTap2MediationDscp"
                  ]
                },
                "description": "Retrieve cTap2MediationDscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationDataType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationTable/cTap2MediationEntry/cTap2MediationDataType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationTable",
                    "cTap2MediationEntry",
                    "cTap2MediationDataType"
                  ]
                },
                "description": "Retrieve cTap2MediationDataType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationRetransmitType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationTable/cTap2MediationEntry/cTap2MediationRetransmitType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationTable",
                    "cTap2MediationEntry",
                    "cTap2MediationRetransmitType"
                  ]
                },
                "description": "Retrieve cTap2MediationRetransmitType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationTable/cTap2MediationEntry/cTap2MediationTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationTable",
                    "cTap2MediationEntry",
                    "cTap2MediationTimeout"
                  ]
                },
                "description": "Retrieve cTap2MediationTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationTransport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationTable/cTap2MediationEntry/cTap2MediationTransport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationTable",
                    "cTap2MediationEntry",
                    "cTap2MediationTransport"
                  ]
                },
                "description": "Retrieve cTap2MediationTransport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationNotificationEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationTable/cTap2MediationEntry/cTap2MediationNotificationEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationTable",
                    "cTap2MediationEntry",
                    "cTap2MediationNotificationEnable"
                  ]
                },
                "description": "Retrieve cTap2MediationNotificationEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationTable/cTap2MediationEntry/cTap2MediationStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationTable",
                    "cTap2MediationEntry",
                    "cTap2MediationStatus"
                  ]
                },
                "description": "Retrieve cTap2MediationStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationRadiusKey",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2MediationTable/cTap2MediationEntry/cTap2MediationRadiusKey",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2MediationTable",
                    "cTap2MediationEntry",
                    "cTap2MediationRadiusKey"
                  ]
                },
                "description": "Retrieve cTap2MediationRadiusKey from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2StreamTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2StreamTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2StreamTable"
                  ]
                },
                "description": "Retrieve cTap2StreamTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2StreamEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2StreamTable/cTap2StreamEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2StreamTable",
                    "cTap2StreamEntry"
                  ]
                },
                "description": "Retrieve cTap2StreamEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationContentId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2StreamTable/cTap2StreamEntry/cTap2MediationContentId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2StreamTable",
                    "cTap2StreamEntry",
                    "cTap2MediationContentId"
                  ]
                },
                "description": "Retrieve cTap2MediationContentId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2StreamIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2StreamTable/cTap2StreamEntry/cTap2StreamIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2StreamTable",
                    "cTap2StreamEntry",
                    "cTap2StreamIndex"
                  ]
                },
                "description": "Retrieve cTap2StreamIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2StreamType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2StreamTable/cTap2StreamEntry/cTap2StreamType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2StreamTable",
                    "cTap2StreamEntry",
                    "cTap2StreamType"
                  ]
                },
                "description": "Retrieve cTap2StreamType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2StreamInterceptEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2StreamTable/cTap2StreamEntry/cTap2StreamInterceptEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2StreamTable",
                    "cTap2StreamEntry",
                    "cTap2StreamInterceptEnable"
                  ]
                },
                "description": "Retrieve cTap2StreamInterceptEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2StreamInterceptedPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2StreamTable/cTap2StreamEntry/cTap2StreamInterceptedPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2StreamTable",
                    "cTap2StreamEntry",
                    "cTap2StreamInterceptedPackets"
                  ]
                },
                "description": "Retrieve cTap2StreamInterceptedPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2StreamInterceptDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2StreamTable/cTap2StreamEntry/cTap2StreamInterceptDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2StreamTable",
                    "cTap2StreamEntry",
                    "cTap2StreamInterceptDrops"
                  ]
                },
                "description": "Retrieve cTap2StreamInterceptDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2StreamStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2StreamTable/cTap2StreamEntry/cTap2StreamStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2StreamTable",
                    "cTap2StreamEntry",
                    "cTap2StreamStatus"
                  ]
                },
                "description": "Retrieve cTap2StreamStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2StreamInterceptedHCPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2StreamTable/cTap2StreamEntry/cTap2StreamInterceptedHCPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2StreamTable",
                    "cTap2StreamEntry",
                    "cTap2StreamInterceptedHCPackets"
                  ]
                },
                "description": "Retrieve cTap2StreamInterceptedHCPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2StreamInterceptHCDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2StreamTable/cTap2StreamEntry/cTap2StreamInterceptHCDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2StreamTable",
                    "cTap2StreamEntry",
                    "cTap2StreamInterceptHCDrops"
                  ]
                },
                "description": "Retrieve cTap2StreamInterceptHCDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugTable"
                  ]
                },
                "description": "Retrieve cTap2DebugTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugTable/cTap2DebugEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugTable",
                    "cTap2DebugEntry"
                  ]
                },
                "description": "Retrieve cTap2DebugEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugTable/cTap2DebugEntry/cTap2DebugIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugTable",
                    "cTap2DebugEntry",
                    "cTap2DebugIndex"
                  ]
                },
                "description": "Retrieve cTap2DebugIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugMediationId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugTable/cTap2DebugEntry/cTap2DebugMediationId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugTable",
                    "cTap2DebugEntry",
                    "cTap2DebugMediationId"
                  ]
                },
                "description": "Retrieve cTap2DebugMediationId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugStreamId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugTable/cTap2DebugEntry/cTap2DebugStreamId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugTable",
                    "cTap2DebugEntry",
                    "cTap2DebugStreamId"
                  ]
                },
                "description": "Retrieve cTap2DebugStreamId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugMessage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugTable/cTap2DebugEntry/cTap2DebugMessage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugTable",
                    "cTap2DebugEntry",
                    "cTap2DebugMessage"
                  ]
                },
                "description": "Retrieve cTap2DebugMessage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugTable/cTap2DebugEntry/cTap2DebugStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugTable",
                    "cTap2DebugEntry",
                    "cTap2DebugStatus"
                  ]
                },
                "description": "Retrieve cTap2DebugStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugUserTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable"
                  ]
                },
                "description": "Retrieve cTap2DebugUserTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugUserEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/cTap2DebugUserEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "cTap2DebugUserEntry"
                  ]
                },
                "description": "Retrieve cTap2DebugUserEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationContentId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/cTap2DebugUserEntry/cTap2MediationContentId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "cTap2DebugUserEntry",
                    "cTap2MediationContentId"
                  ]
                },
                "description": "Retrieve cTap2MediationContentId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugUserName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/cTap2DebugUserEntry/cTap2DebugUserName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "cTap2DebugUserEntry",
                    "cTap2DebugUserName"
                  ]
                },
                "description": "Retrieve cTap2DebugUserName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugUserTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/cTap2DebugUserEntry/cTap2DebugUserTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "cTap2DebugUserEntry",
                    "cTap2DebugUserTimeout"
                  ]
                },
                "description": "Retrieve cTap2DebugUserTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugUserStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/cTap2DebugUserEntry/cTap2DebugUserStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "cTap2DebugUserEntry",
                    "cTap2DebugUserStorageType"
                  ]
                },
                "description": "Retrieve cTap2DebugUserStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugUserStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/cTap2DebugUserEntry/cTap2DebugUserStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "cTap2DebugUserEntry",
                    "cTap2DebugUserStatus"
                  ]
                },
                "description": "Retrieve cTap2DebugUserStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationContentId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/object-1/cTap2MediationContentId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "object-1",
                    "cTap2MediationContentId"
                  ]
                },
                "description": "Retrieve cTap2MediationContentId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2MediationStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/object-1/cTap2MediationStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "object-1",
                    "cTap2MediationStatus"
                  ]
                },
                "description": "Retrieve cTap2MediationStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/object-1/cTap2DebugIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "object-1",
                    "cTap2DebugIndex"
                  ]
                },
                "description": "Retrieve cTap2DebugIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugMediationId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/object-1/cTap2DebugMediationId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "object-1",
                    "cTap2DebugMediationId"
                  ]
                },
                "description": "Retrieve cTap2DebugMediationId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/object-2/cTap2DebugIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "object-2",
                    "cTap2DebugIndex"
                  ]
                },
                "description": "Retrieve cTap2DebugIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugMessage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/object-2/cTap2DebugMessage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "object-2",
                    "cTap2DebugMessage"
                  ]
                },
                "description": "Retrieve cTap2DebugMessage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugStreamId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/object-2/cTap2DebugStreamId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "object-2",
                    "cTap2DebugStreamId"
                  ]
                },
                "description": "Retrieve cTap2DebugStreamId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/object-3/cTap2DebugIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "object-3",
                    "cTap2DebugIndex"
                  ]
                },
                "description": "Retrieve cTap2DebugIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTap2DebugMessage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-TAP2-MIB:CISCO-TAP2-MIB/cTap2DebugUserTable/object-3/cTap2DebugMessage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-TAP2-MIB:CISCO-TAP2-MIB",
                    "cTap2DebugUserTable",
                    "object-3",
                    "cTap2DebugMessage"
                  ]
                },
                "description": "Retrieve cTap2DebugMessage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-UBE-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-UBE-MIB\n\nMIB data from `CISCO-UBE-MIB` module.\n\n**Root containers:** 1 (CISCO-UBE-MIB)\n**Paths:** 5 | **Descendants:** 4\n\nAll endpoints are read-only (GET).\n\nEndpoints: 5 | Operations: 5",
          "item": [
            {
              "name": "GET Get CISCO-UBE-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UBE-MIB:CISCO-UBE-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UBE-MIB:CISCO-UBE-MIB"
                  ]
                },
                "description": "Retrieve CISCO-UBE-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoUbeMIBObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UBE-MIB:CISCO-UBE-MIB/ciscoUbeMIBObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UBE-MIB:CISCO-UBE-MIB",
                    "ciscoUbeMIBObjects"
                  ]
                },
                "description": "Retrieve ciscoUbeMIBObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cubeEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UBE-MIB:CISCO-UBE-MIB/ciscoUbeMIBObjects/cubeEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UBE-MIB:CISCO-UBE-MIB",
                    "ciscoUbeMIBObjects",
                    "cubeEnabled"
                  ]
                },
                "description": "Retrieve cubeEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cubeVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UBE-MIB:CISCO-UBE-MIB/ciscoUbeMIBObjects/cubeVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UBE-MIB:CISCO-UBE-MIB",
                    "ciscoUbeMIBObjects",
                    "cubeVersion"
                  ]
                },
                "description": "Retrieve cubeVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cubeTotalSessionAllowed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UBE-MIB:CISCO-UBE-MIB/ciscoUbeMIBObjects/cubeTotalSessionAllowed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UBE-MIB:CISCO-UBE-MIB",
                    "ciscoUbeMIBObjects",
                    "cubeTotalSessionAllowed"
                  ]
                },
                "description": "Retrieve cubeTotalSessionAllowed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-UNIFIED-FIREWALL-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-UNIFIED-FIREWALL-MIB\n\nMIB data from `CISCO-UNIFIED-FIREWALL-MIB` module.\n\n**Root containers:** 1 (CISCO-UNIFIED-FIREWALL-MIB)\n**Paths:** 155 | **Descendants:** 155\n\nAll endpoints are read-only (GET).\n\nEndpoints: 155 | Operations: 155",
          "item": [
            {
              "name": "GET Get CISCO-UNIFIED-FIREWALL-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB"
                  ]
                },
                "description": "Retrieve CISCO-UNIFIED-FIREWALL-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cuFwConnectionGlobals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionGlobals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionGlobals"
                  ]
                },
                "description": "Retrieve cuFwConnectionGlobals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnGlobalNumAttempted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionGlobals/cufwConnGlobalNumAttempted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionGlobals",
                    "cufwConnGlobalNumAttempted"
                  ]
                },
                "description": "Retrieve cufwConnGlobalNumAttempted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnGlobalNumSetupsAborted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionGlobals/cufwConnGlobalNumSetupsAborted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionGlobals",
                    "cufwConnGlobalNumSetupsAborted"
                  ]
                },
                "description": "Retrieve cufwConnGlobalNumSetupsAborted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnGlobalNumPolicyDeclined",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionGlobals/cufwConnGlobalNumPolicyDeclined",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionGlobals",
                    "cufwConnGlobalNumPolicyDeclined"
                  ]
                },
                "description": "Retrieve cufwConnGlobalNumPolicyDeclined from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnGlobalNumResDeclined",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionGlobals/cufwConnGlobalNumResDeclined",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionGlobals",
                    "cufwConnGlobalNumResDeclined"
                  ]
                },
                "description": "Retrieve cufwConnGlobalNumResDeclined from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnGlobalNumHalfOpen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionGlobals/cufwConnGlobalNumHalfOpen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionGlobals",
                    "cufwConnGlobalNumHalfOpen"
                  ]
                },
                "description": "Retrieve cufwConnGlobalNumHalfOpen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnGlobalNumActive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionGlobals/cufwConnGlobalNumActive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionGlobals",
                    "cufwConnGlobalNumActive"
                  ]
                },
                "description": "Retrieve cufwConnGlobalNumActive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnGlobalNumExpired",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionGlobals/cufwConnGlobalNumExpired",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionGlobals",
                    "cufwConnGlobalNumExpired"
                  ]
                },
                "description": "Retrieve cufwConnGlobalNumExpired from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnGlobalNumAborted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionGlobals/cufwConnGlobalNumAborted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionGlobals",
                    "cufwConnGlobalNumAborted"
                  ]
                },
                "description": "Retrieve cufwConnGlobalNumAborted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnGlobalNumEmbryonic",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionGlobals/cufwConnGlobalNumEmbryonic",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionGlobals",
                    "cufwConnGlobalNumEmbryonic"
                  ]
                },
                "description": "Retrieve cufwConnGlobalNumEmbryonic from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnGlobalConnSetupRate1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionGlobals/cufwConnGlobalConnSetupRate1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionGlobals",
                    "cufwConnGlobalConnSetupRate1"
                  ]
                },
                "description": "Retrieve cufwConnGlobalConnSetupRate1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnGlobalConnSetupRate5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionGlobals/cufwConnGlobalConnSetupRate5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionGlobals",
                    "cufwConnGlobalConnSetupRate5"
                  ]
                },
                "description": "Retrieve cufwConnGlobalConnSetupRate5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnGlobalNumRemoteAccess",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionGlobals/cufwConnGlobalNumRemoteAccess",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionGlobals",
                    "cufwConnGlobalNumRemoteAccess"
                  ]
                },
                "description": "Retrieve cufwConnGlobalNumRemoteAccess from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cuFwConnectionResources",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionResources",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionResources"
                  ]
                },
                "description": "Retrieve cuFwConnectionResources from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnResMemoryUsage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionResources/cufwConnResMemoryUsage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionResources",
                    "cufwConnResMemoryUsage"
                  ]
                },
                "description": "Retrieve cufwConnResMemoryUsage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnResActiveConnMemoryUsage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionResources/cufwConnResActiveConnMemoryUsage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionResources",
                    "cufwConnResActiveConnMemoryUsage"
                  ]
                },
                "description": "Retrieve cufwConnResActiveConnMemoryUsage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnResHOConnMemoryUsage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionResources/cufwConnResHOConnMemoryUsage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionResources",
                    "cufwConnResHOConnMemoryUsage"
                  ]
                },
                "description": "Retrieve cufwConnResHOConnMemoryUsage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnResEmbrConnMemoryUsage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionResources/cufwConnResEmbrConnMemoryUsage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionResources",
                    "cufwConnResEmbrConnMemoryUsage"
                  ]
                },
                "description": "Retrieve cufwConnResEmbrConnMemoryUsage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cuFwConnectionReportSettings",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionReportSettings",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionReportSettings"
                  ]
                },
                "description": "Retrieve cuFwConnectionReportSettings from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnReptAppStats",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionReportSettings/cufwConnReptAppStats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionReportSettings",
                    "cufwConnReptAppStats"
                  ]
                },
                "description": "Retrieve cufwConnReptAppStats from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnReptAppStatsLastChanged",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwConnectionReportSettings/cufwConnReptAppStatsLastChanged",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwConnectionReportSettings",
                    "cufwConnReptAppStatsLastChanged"
                  ]
                },
                "description": "Retrieve cufwConnReptAppStatsLastChanged from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cuFwApplInspectionGrp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwApplInspectionGrp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwApplInspectionGrp"
                  ]
                },
                "description": "Retrieve cuFwApplInspectionGrp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAIAuditTrailEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwApplInspectionGrp/cufwAIAuditTrailEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwApplInspectionGrp",
                    "cufwAIAuditTrailEnabled"
                  ]
                },
                "description": "Retrieve cufwAIAuditTrailEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAIAlertEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwApplInspectionGrp/cufwAIAlertEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwApplInspectionGrp",
                    "cufwAIAlertEnabled"
                  ]
                },
                "description": "Retrieve cufwAIAlertEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlFilterGlobals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals"
                  ]
                },
                "description": "Retrieve cufwUrlFilterGlobals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfFunctionEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfFunctionEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfFunctionEnabled"
                  ]
                },
                "description": "Retrieve cufwUrlfFunctionEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfRequestsNumProcessed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfRequestsNumProcessed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfRequestsNumProcessed"
                  ]
                },
                "description": "Retrieve cufwUrlfRequestsNumProcessed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfRequestsProcRate1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfRequestsProcRate1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfRequestsProcRate1"
                  ]
                },
                "description": "Retrieve cufwUrlfRequestsProcRate1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfRequestsProcRate5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfRequestsProcRate5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfRequestsProcRate5"
                  ]
                },
                "description": "Retrieve cufwUrlfRequestsProcRate5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfRequestsNumAllowed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfRequestsNumAllowed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfRequestsNumAllowed"
                  ]
                },
                "description": "Retrieve cufwUrlfRequestsNumAllowed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfRequestsNumDenied",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfRequestsNumDenied",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfRequestsNumDenied"
                  ]
                },
                "description": "Retrieve cufwUrlfRequestsNumDenied from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfRequestsDeniedRate1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfRequestsDeniedRate1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfRequestsDeniedRate1"
                  ]
                },
                "description": "Retrieve cufwUrlfRequestsDeniedRate1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfRequestsDeniedRate5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfRequestsDeniedRate5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfRequestsDeniedRate5"
                  ]
                },
                "description": "Retrieve cufwUrlfRequestsDeniedRate5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfRequestsNumCacheAllowed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfRequestsNumCacheAllowed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfRequestsNumCacheAllowed"
                  ]
                },
                "description": "Retrieve cufwUrlfRequestsNumCacheAllowed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfRequestsNumCacheDenied",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfRequestsNumCacheDenied",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfRequestsNumCacheDenied"
                  ]
                },
                "description": "Retrieve cufwUrlfRequestsNumCacheDenied from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfAllowModeReqNumAllowed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfAllowModeReqNumAllowed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfAllowModeReqNumAllowed"
                  ]
                },
                "description": "Retrieve cufwUrlfAllowModeReqNumAllowed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfAllowModeReqNumDenied",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfAllowModeReqNumDenied",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfAllowModeReqNumDenied"
                  ]
                },
                "description": "Retrieve cufwUrlfAllowModeReqNumDenied from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfRequestsNumResDropped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfRequestsNumResDropped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfRequestsNumResDropped"
                  ]
                },
                "description": "Retrieve cufwUrlfRequestsNumResDropped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfRequestsResDropRate1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfRequestsResDropRate1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfRequestsResDropRate1"
                  ]
                },
                "description": "Retrieve cufwUrlfRequestsResDropRate1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfRequestsResDropRate5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfRequestsResDropRate5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfRequestsResDropRate5"
                  ]
                },
                "description": "Retrieve cufwUrlfRequestsResDropRate5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfNumServerTimeouts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfNumServerTimeouts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfNumServerTimeouts"
                  ]
                },
                "description": "Retrieve cufwUrlfNumServerTimeouts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfNumServerRetries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfNumServerRetries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfNumServerRetries"
                  ]
                },
                "description": "Retrieve cufwUrlfNumServerRetries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfResponsesNumLate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfResponsesNumLate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfResponsesNumLate"
                  ]
                },
                "description": "Retrieve cufwUrlfResponsesNumLate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfUrlAccRespsNumResDropped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterGlobals/cufwUrlfUrlAccRespsNumResDropped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterGlobals",
                    "cufwUrlfUrlAccRespsNumResDropped"
                  ]
                },
                "description": "Retrieve cufwUrlfUrlAccRespsNumResDropped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlFilterResourceUsage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterResourceUsage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterResourceUsage"
                  ]
                },
                "description": "Retrieve cufwUrlFilterResourceUsage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfResTotalRequestCacheSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterResourceUsage/cufwUrlfResTotalRequestCacheSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterResourceUsage",
                    "cufwUrlfResTotalRequestCacheSize"
                  ]
                },
                "description": "Retrieve cufwUrlfResTotalRequestCacheSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfResTotalRespCacheSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlFilterResourceUsage/cufwUrlfResTotalRespCacheSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlFilterResourceUsage",
                    "cufwUrlfResTotalRespCacheSize"
                  ]
                },
                "description": "Retrieve cufwUrlfResTotalRespCacheSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAaicGlobals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAaicGlobals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAaicGlobals"
                  ]
                },
                "description": "Retrieve cufwAaicGlobals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAaicGlobalNumBadProtocolOps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAaicGlobals/cufwAaicGlobalNumBadProtocolOps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAaicGlobals",
                    "cufwAaicGlobalNumBadProtocolOps"
                  ]
                },
                "description": "Retrieve cufwAaicGlobalNumBadProtocolOps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAaicGlobalNumBadPDUSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAaicGlobals/cufwAaicGlobalNumBadPDUSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAaicGlobals",
                    "cufwAaicGlobalNumBadPDUSize"
                  ]
                },
                "description": "Retrieve cufwAaicGlobalNumBadPDUSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAaicGlobalNumBadPortRange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAaicGlobals/cufwAaicGlobalNumBadPortRange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAaicGlobals",
                    "cufwAaicGlobalNumBadPortRange"
                  ]
                },
                "description": "Retrieve cufwAaicGlobalNumBadPortRange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAaicHttpProtocolStats",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAaicHttpProtocolStats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAaicHttpProtocolStats"
                  ]
                },
                "description": "Retrieve cufwAaicHttpProtocolStats from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAaicHttpNumBadProtocolOps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAaicHttpProtocolStats/cufwAaicHttpNumBadProtocolOps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAaicHttpProtocolStats",
                    "cufwAaicHttpNumBadProtocolOps"
                  ]
                },
                "description": "Retrieve cufwAaicHttpNumBadProtocolOps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAaicHttpNumBadPDUSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAaicHttpProtocolStats/cufwAaicHttpNumBadPDUSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAaicHttpProtocolStats",
                    "cufwAaicHttpNumBadPDUSize"
                  ]
                },
                "description": "Retrieve cufwAaicHttpNumBadPDUSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAaicHttpNumTunneledConns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAaicHttpProtocolStats/cufwAaicHttpNumTunneledConns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAaicHttpProtocolStats",
                    "cufwAaicHttpNumTunneledConns"
                  ]
                },
                "description": "Retrieve cufwAaicHttpNumTunneledConns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAaicHttpNumLargeURIs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAaicHttpProtocolStats/cufwAaicHttpNumLargeURIs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAaicHttpProtocolStats",
                    "cufwAaicHttpNumLargeURIs"
                  ]
                },
                "description": "Retrieve cufwAaicHttpNumLargeURIs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAaicHttpNumBadContent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAaicHttpProtocolStats/cufwAaicHttpNumBadContent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAaicHttpProtocolStats",
                    "cufwAaicHttpNumBadContent"
                  ]
                },
                "description": "Retrieve cufwAaicHttpNumBadContent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAaicHttpNumMismatchContent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAaicHttpProtocolStats/cufwAaicHttpNumMismatchContent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAaicHttpProtocolStats",
                    "cufwAaicHttpNumMismatchContent"
                  ]
                },
                "description": "Retrieve cufwAaicHttpNumMismatchContent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAaicHttpNumDoubleEncodedPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAaicHttpProtocolStats/cufwAaicHttpNumDoubleEncodedPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAaicHttpProtocolStats",
                    "cufwAaicHttpNumDoubleEncodedPkts"
                  ]
                },
                "description": "Retrieve cufwAaicHttpNumDoubleEncodedPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwL2FwGlobals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwL2FwGlobals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwL2FwGlobals"
                  ]
                },
                "description": "Retrieve cufwL2FwGlobals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwL2GlobalEnableStealthMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwL2FwGlobals/cufwL2GlobalEnableStealthMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwL2FwGlobals",
                    "cufwL2GlobalEnableStealthMode"
                  ]
                },
                "description": "Retrieve cufwL2GlobalEnableStealthMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwL2GlobalArpCacheSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwL2FwGlobals/cufwL2GlobalArpCacheSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwL2FwGlobals",
                    "cufwL2GlobalArpCacheSize"
                  ]
                },
                "description": "Retrieve cufwL2GlobalArpCacheSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwL2GlobalEnableArpInspection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwL2FwGlobals/cufwL2GlobalEnableArpInspection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwL2FwGlobals",
                    "cufwL2GlobalEnableArpInspection"
                  ]
                },
                "description": "Retrieve cufwL2GlobalEnableArpInspection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwL2GlobalNumArpRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwL2FwGlobals/cufwL2GlobalNumArpRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwL2FwGlobals",
                    "cufwL2GlobalNumArpRequests"
                  ]
                },
                "description": "Retrieve cufwL2GlobalNumArpRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwL2GlobalNumIcmpRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwL2FwGlobals/cufwL2GlobalNumIcmpRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwL2FwGlobals",
                    "cufwL2GlobalNumIcmpRequests"
                  ]
                },
                "description": "Retrieve cufwL2GlobalNumIcmpRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwL2GlobalNumFloods",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwL2FwGlobals/cufwL2GlobalNumFloods",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwL2FwGlobals",
                    "cufwL2GlobalNumFloods"
                  ]
                },
                "description": "Retrieve cufwL2GlobalNumFloods from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwL2GlobalNumDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwL2FwGlobals/cufwL2GlobalNumDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwL2FwGlobals",
                    "cufwL2GlobalNumDrops"
                  ]
                },
                "description": "Retrieve cufwL2GlobalNumDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwL2GlobalArpOverflowRate5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwL2FwGlobals/cufwL2GlobalArpOverflowRate5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwL2FwGlobals",
                    "cufwL2GlobalArpOverflowRate5"
                  ]
                },
                "description": "Retrieve cufwL2GlobalArpOverflowRate5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwL2GlobalNumBadArpResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwL2FwGlobals/cufwL2GlobalNumBadArpResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwL2FwGlobals",
                    "cufwL2GlobalNumBadArpResponses"
                  ]
                },
                "description": "Retrieve cufwL2GlobalNumBadArpResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwL2GlobalNumSpoofedArpResps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwL2FwGlobals/cufwL2GlobalNumSpoofedArpResps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwL2FwGlobals",
                    "cufwL2GlobalNumSpoofedArpResps"
                  ]
                },
                "description": "Retrieve cufwL2GlobalNumSpoofedArpResps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cuFwNotifCntlGrp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwNotifCntlGrp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwNotifCntlGrp"
                  ]
                },
                "description": "Retrieve cuFwNotifCntlGrp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwCntlUrlfServerStatusChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwNotifCntlGrp/cufwCntlUrlfServerStatusChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwNotifCntlGrp",
                    "cufwCntlUrlfServerStatusChange"
                  ]
                },
                "description": "Retrieve cufwCntlUrlfServerStatusChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwCntlL2StaticMacAddressMoved",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cuFwNotifCntlGrp/cufwCntlL2StaticMacAddressMoved",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cuFwNotifCntlGrp",
                    "cufwCntlL2StaticMacAddressMoved"
                  ]
                },
                "description": "Retrieve cufwCntlL2StaticMacAddressMoved from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnSummaryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwConnSummaryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwConnSummaryTable"
                  ]
                },
                "description": "Retrieve cufwConnSummaryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnSummaryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwConnSummaryTable/cufwConnSummaryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwConnSummaryTable",
                    "cufwConnSummaryEntry"
                  ]
                },
                "description": "Retrieve cufwConnSummaryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwConnSummaryTable/cufwConnSummaryEntry/cufwConnProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwConnSummaryTable",
                    "cufwConnSummaryEntry",
                    "cufwConnProtocol"
                  ]
                },
                "description": "Retrieve cufwConnProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnNumAttempted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwConnSummaryTable/cufwConnSummaryEntry/cufwConnNumAttempted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwConnSummaryTable",
                    "cufwConnSummaryEntry",
                    "cufwConnNumAttempted"
                  ]
                },
                "description": "Retrieve cufwConnNumAttempted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnNumSetupsAborted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwConnSummaryTable/cufwConnSummaryEntry/cufwConnNumSetupsAborted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwConnSummaryTable",
                    "cufwConnSummaryEntry",
                    "cufwConnNumSetupsAborted"
                  ]
                },
                "description": "Retrieve cufwConnNumSetupsAborted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnNumPolicyDeclined",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwConnSummaryTable/cufwConnSummaryEntry/cufwConnNumPolicyDeclined",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwConnSummaryTable",
                    "cufwConnSummaryEntry",
                    "cufwConnNumPolicyDeclined"
                  ]
                },
                "description": "Retrieve cufwConnNumPolicyDeclined from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnNumResDeclined",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwConnSummaryTable/cufwConnSummaryEntry/cufwConnNumResDeclined",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwConnSummaryTable",
                    "cufwConnSummaryEntry",
                    "cufwConnNumResDeclined"
                  ]
                },
                "description": "Retrieve cufwConnNumResDeclined from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnNumHalfOpen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwConnSummaryTable/cufwConnSummaryEntry/cufwConnNumHalfOpen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwConnSummaryTable",
                    "cufwConnSummaryEntry",
                    "cufwConnNumHalfOpen"
                  ]
                },
                "description": "Retrieve cufwConnNumHalfOpen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnNumActive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwConnSummaryTable/cufwConnSummaryEntry/cufwConnNumActive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwConnSummaryTable",
                    "cufwConnSummaryEntry",
                    "cufwConnNumActive"
                  ]
                },
                "description": "Retrieve cufwConnNumActive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnNumAborted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwConnSummaryTable/cufwConnSummaryEntry/cufwConnNumAborted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwConnSummaryTable",
                    "cufwConnSummaryEntry",
                    "cufwConnNumAborted"
                  ]
                },
                "description": "Retrieve cufwConnNumAborted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnSetupRate1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwConnSummaryTable/cufwConnSummaryEntry/cufwConnSetupRate1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwConnSummaryTable",
                    "cufwConnSummaryEntry",
                    "cufwConnSetupRate1"
                  ]
                },
                "description": "Retrieve cufwConnSetupRate1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwConnSetupRate5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwConnSummaryTable/cufwConnSummaryEntry/cufwConnSetupRate5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwConnSummaryTable",
                    "cufwConnSummaryEntry",
                    "cufwConnSetupRate5"
                  ]
                },
                "description": "Retrieve cufwConnSetupRate5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAppConnSummaryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAppConnSummaryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAppConnSummaryTable"
                  ]
                },
                "description": "Retrieve cufwAppConnSummaryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAppConnSummaryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAppConnSummaryTable/cufwAppConnSummaryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAppConnSummaryTable",
                    "cufwAppConnSummaryEntry"
                  ]
                },
                "description": "Retrieve cufwAppConnSummaryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAppConnProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAppConnSummaryTable/cufwAppConnSummaryEntry/cufwAppConnProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAppConnSummaryTable",
                    "cufwAppConnSummaryEntry",
                    "cufwAppConnProtocol"
                  ]
                },
                "description": "Retrieve cufwAppConnProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAppConnNumAttempted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAppConnSummaryTable/cufwAppConnSummaryEntry/cufwAppConnNumAttempted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAppConnSummaryTable",
                    "cufwAppConnSummaryEntry",
                    "cufwAppConnNumAttempted"
                  ]
                },
                "description": "Retrieve cufwAppConnNumAttempted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAppConnNumSetupsAborted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAppConnSummaryTable/cufwAppConnSummaryEntry/cufwAppConnNumSetupsAborted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAppConnSummaryTable",
                    "cufwAppConnSummaryEntry",
                    "cufwAppConnNumSetupsAborted"
                  ]
                },
                "description": "Retrieve cufwAppConnNumSetupsAborted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAppConnNumPolicyDeclined",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAppConnSummaryTable/cufwAppConnSummaryEntry/cufwAppConnNumPolicyDeclined",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAppConnSummaryTable",
                    "cufwAppConnSummaryEntry",
                    "cufwAppConnNumPolicyDeclined"
                  ]
                },
                "description": "Retrieve cufwAppConnNumPolicyDeclined from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAppConnNumResDeclined",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAppConnSummaryTable/cufwAppConnSummaryEntry/cufwAppConnNumResDeclined",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAppConnSummaryTable",
                    "cufwAppConnSummaryEntry",
                    "cufwAppConnNumResDeclined"
                  ]
                },
                "description": "Retrieve cufwAppConnNumResDeclined from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAppConnNumHalfOpen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAppConnSummaryTable/cufwAppConnSummaryEntry/cufwAppConnNumHalfOpen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAppConnSummaryTable",
                    "cufwAppConnSummaryEntry",
                    "cufwAppConnNumHalfOpen"
                  ]
                },
                "description": "Retrieve cufwAppConnNumHalfOpen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAppConnNumActive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAppConnSummaryTable/cufwAppConnSummaryEntry/cufwAppConnNumActive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAppConnSummaryTable",
                    "cufwAppConnSummaryEntry",
                    "cufwAppConnNumActive"
                  ]
                },
                "description": "Retrieve cufwAppConnNumActive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAppConnNumAborted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAppConnSummaryTable/cufwAppConnSummaryEntry/cufwAppConnNumAborted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAppConnSummaryTable",
                    "cufwAppConnSummaryEntry",
                    "cufwAppConnNumAborted"
                  ]
                },
                "description": "Retrieve cufwAppConnNumAborted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAppConnSetupRate1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAppConnSummaryTable/cufwAppConnSummaryEntry/cufwAppConnSetupRate1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAppConnSummaryTable",
                    "cufwAppConnSummaryEntry",
                    "cufwAppConnSetupRate1"
                  ]
                },
                "description": "Retrieve cufwAppConnSetupRate1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwAppConnSetupRate5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwAppConnSummaryTable/cufwAppConnSummaryEntry/cufwAppConnSetupRate5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwAppConnSummaryTable",
                    "cufwAppConnSummaryEntry",
                    "cufwAppConnSetupRate5"
                  ]
                },
                "description": "Retrieve cufwAppConnSetupRate5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolicyConnSummaryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyConnSummaryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyConnSummaryTable"
                  ]
                },
                "description": "Retrieve cufwPolicyConnSummaryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolicyConnSummaryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyConnSummaryTable/cufwPolicyConnSummaryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyConnSummaryTable",
                    "cufwPolicyConnSummaryEntry"
                  ]
                },
                "description": "Retrieve cufwPolicyConnSummaryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolConnPolicy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyConnSummaryTable/cufwPolicyConnSummaryEntry/cufwPolConnPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyConnSummaryTable",
                    "cufwPolicyConnSummaryEntry",
                    "cufwPolConnPolicy"
                  ]
                },
                "description": "Retrieve cufwPolConnPolicy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolConnPolicyTargetType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyConnSummaryTable/cufwPolicyConnSummaryEntry/cufwPolConnPolicyTargetType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyConnSummaryTable",
                    "cufwPolicyConnSummaryEntry",
                    "cufwPolConnPolicyTargetType"
                  ]
                },
                "description": "Retrieve cufwPolConnPolicyTargetType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolConnPolicyTarget",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyConnSummaryTable/cufwPolicyConnSummaryEntry/cufwPolConnPolicyTarget",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyConnSummaryTable",
                    "cufwPolicyConnSummaryEntry",
                    "cufwPolConnPolicyTarget"
                  ]
                },
                "description": "Retrieve cufwPolConnPolicyTarget from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolConnProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyConnSummaryTable/cufwPolicyConnSummaryEntry/cufwPolConnProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyConnSummaryTable",
                    "cufwPolicyConnSummaryEntry",
                    "cufwPolConnProtocol"
                  ]
                },
                "description": "Retrieve cufwPolConnProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolConnNumAttempted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyConnSummaryTable/cufwPolicyConnSummaryEntry/cufwPolConnNumAttempted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyConnSummaryTable",
                    "cufwPolicyConnSummaryEntry",
                    "cufwPolConnNumAttempted"
                  ]
                },
                "description": "Retrieve cufwPolConnNumAttempted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolConnNumSetupsAborted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyConnSummaryTable/cufwPolicyConnSummaryEntry/cufwPolConnNumSetupsAborted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyConnSummaryTable",
                    "cufwPolicyConnSummaryEntry",
                    "cufwPolConnNumSetupsAborted"
                  ]
                },
                "description": "Retrieve cufwPolConnNumSetupsAborted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolConnNumPolicyDeclined",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyConnSummaryTable/cufwPolicyConnSummaryEntry/cufwPolConnNumPolicyDeclined",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyConnSummaryTable",
                    "cufwPolicyConnSummaryEntry",
                    "cufwPolConnNumPolicyDeclined"
                  ]
                },
                "description": "Retrieve cufwPolConnNumPolicyDeclined from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolConnNumResDeclined",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyConnSummaryTable/cufwPolicyConnSummaryEntry/cufwPolConnNumResDeclined",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyConnSummaryTable",
                    "cufwPolicyConnSummaryEntry",
                    "cufwPolConnNumResDeclined"
                  ]
                },
                "description": "Retrieve cufwPolConnNumResDeclined from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolConnNumHalfOpen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyConnSummaryTable/cufwPolicyConnSummaryEntry/cufwPolConnNumHalfOpen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyConnSummaryTable",
                    "cufwPolicyConnSummaryEntry",
                    "cufwPolConnNumHalfOpen"
                  ]
                },
                "description": "Retrieve cufwPolConnNumHalfOpen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolConnNumActive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyConnSummaryTable/cufwPolicyConnSummaryEntry/cufwPolConnNumActive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyConnSummaryTable",
                    "cufwPolicyConnSummaryEntry",
                    "cufwPolConnNumActive"
                  ]
                },
                "description": "Retrieve cufwPolConnNumActive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolConnNumAborted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyConnSummaryTable/cufwPolicyConnSummaryEntry/cufwPolConnNumAborted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyConnSummaryTable",
                    "cufwPolicyConnSummaryEntry",
                    "cufwPolConnNumAborted"
                  ]
                },
                "description": "Retrieve cufwPolConnNumAborted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolicyAppConnSummaryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyAppConnSummaryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyAppConnSummaryTable"
                  ]
                },
                "description": "Retrieve cufwPolicyAppConnSummaryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolicyAppConnSummaryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyAppConnSummaryTable/cufwPolicyAppConnSummaryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyAppConnSummaryTable",
                    "cufwPolicyAppConnSummaryEntry"
                  ]
                },
                "description": "Retrieve cufwPolicyAppConnSummaryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolAppConnPolicy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyAppConnSummaryTable/cufwPolicyAppConnSummaryEntry/cufwPolAppConnPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyAppConnSummaryTable",
                    "cufwPolicyAppConnSummaryEntry",
                    "cufwPolAppConnPolicy"
                  ]
                },
                "description": "Retrieve cufwPolAppConnPolicy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolAppConnPolicyTargetType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyAppConnSummaryTable/cufwPolicyAppConnSummaryEntry/cufwPolAppConnPolicyTargetType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyAppConnSummaryTable",
                    "cufwPolicyAppConnSummaryEntry",
                    "cufwPolAppConnPolicyTargetType"
                  ]
                },
                "description": "Retrieve cufwPolAppConnPolicyTargetType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolAppConnPolicyTarget",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyAppConnSummaryTable/cufwPolicyAppConnSummaryEntry/cufwPolAppConnPolicyTarget",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyAppConnSummaryTable",
                    "cufwPolicyAppConnSummaryEntry",
                    "cufwPolAppConnPolicyTarget"
                  ]
                },
                "description": "Retrieve cufwPolAppConnPolicyTarget from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolAppConnProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyAppConnSummaryTable/cufwPolicyAppConnSummaryEntry/cufwPolAppConnProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyAppConnSummaryTable",
                    "cufwPolicyAppConnSummaryEntry",
                    "cufwPolAppConnProtocol"
                  ]
                },
                "description": "Retrieve cufwPolAppConnProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolAppConnNumAttempted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyAppConnSummaryTable/cufwPolicyAppConnSummaryEntry/cufwPolAppConnNumAttempted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyAppConnSummaryTable",
                    "cufwPolicyAppConnSummaryEntry",
                    "cufwPolAppConnNumAttempted"
                  ]
                },
                "description": "Retrieve cufwPolAppConnNumAttempted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolAppConnNumSetupsAborted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyAppConnSummaryTable/cufwPolicyAppConnSummaryEntry/cufwPolAppConnNumSetupsAborted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyAppConnSummaryTable",
                    "cufwPolicyAppConnSummaryEntry",
                    "cufwPolAppConnNumSetupsAborted"
                  ]
                },
                "description": "Retrieve cufwPolAppConnNumSetupsAborted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolAppConnNumPolicyDeclined",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyAppConnSummaryTable/cufwPolicyAppConnSummaryEntry/cufwPolAppConnNumPolicyDeclined",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyAppConnSummaryTable",
                    "cufwPolicyAppConnSummaryEntry",
                    "cufwPolAppConnNumPolicyDeclined"
                  ]
                },
                "description": "Retrieve cufwPolAppConnNumPolicyDeclined from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolAppConnNumResDeclined",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyAppConnSummaryTable/cufwPolicyAppConnSummaryEntry/cufwPolAppConnNumResDeclined",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyAppConnSummaryTable",
                    "cufwPolicyAppConnSummaryEntry",
                    "cufwPolAppConnNumResDeclined"
                  ]
                },
                "description": "Retrieve cufwPolAppConnNumResDeclined from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolAppConnNumHalfOpen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyAppConnSummaryTable/cufwPolicyAppConnSummaryEntry/cufwPolAppConnNumHalfOpen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyAppConnSummaryTable",
                    "cufwPolicyAppConnSummaryEntry",
                    "cufwPolAppConnNumHalfOpen"
                  ]
                },
                "description": "Retrieve cufwPolAppConnNumHalfOpen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolAppConnNumActive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyAppConnSummaryTable/cufwPolicyAppConnSummaryEntry/cufwPolAppConnNumActive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyAppConnSummaryTable",
                    "cufwPolicyAppConnSummaryEntry",
                    "cufwPolAppConnNumActive"
                  ]
                },
                "description": "Retrieve cufwPolAppConnNumActive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwPolAppConnNumAborted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwPolicyAppConnSummaryTable/cufwPolicyAppConnSummaryEntry/cufwPolAppConnNumAborted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwPolicyAppConnSummaryTable",
                    "cufwPolicyAppConnSummaryEntry",
                    "cufwPolAppConnNumAborted"
                  ]
                },
                "description": "Retrieve cufwPolAppConnNumAborted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwInspectionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwInspectionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwInspectionTable"
                  ]
                },
                "description": "Retrieve cufwInspectionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwInspectionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwInspectionTable/cufwInspectionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwInspectionTable",
                    "cufwInspectionEntry"
                  ]
                },
                "description": "Retrieve cufwInspectionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwInspectionPolicyName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwInspectionTable/cufwInspectionEntry/cufwInspectionPolicyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwInspectionTable",
                    "cufwInspectionEntry",
                    "cufwInspectionPolicyName"
                  ]
                },
                "description": "Retrieve cufwInspectionPolicyName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwInspectionProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwInspectionTable/cufwInspectionEntry/cufwInspectionProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwInspectionTable",
                    "cufwInspectionEntry",
                    "cufwInspectionProtocol"
                  ]
                },
                "description": "Retrieve cufwInspectionProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwInspectionStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwInspectionTable/cufwInspectionEntry/cufwInspectionStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwInspectionTable",
                    "cufwInspectionEntry",
                    "cufwInspectionStatus"
                  ]
                },
                "description": "Retrieve cufwInspectionStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable"
                  ]
                },
                "description": "Retrieve cufwUrlfServerTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/cufwUrlfServerEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "cufwUrlfServerEntry"
                  ]
                },
                "description": "Retrieve cufwUrlfServerEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/cufwUrlfServerEntry/cufwUrlfServerAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "cufwUrlfServerEntry",
                    "cufwUrlfServerAddrType"
                  ]
                },
                "description": "Retrieve cufwUrlfServerAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/cufwUrlfServerEntry/cufwUrlfServerAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "cufwUrlfServerEntry",
                    "cufwUrlfServerAddress"
                  ]
                },
                "description": "Retrieve cufwUrlfServerAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/cufwUrlfServerEntry/cufwUrlfServerPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "cufwUrlfServerEntry",
                    "cufwUrlfServerPort"
                  ]
                },
                "description": "Retrieve cufwUrlfServerPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerVendor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/cufwUrlfServerEntry/cufwUrlfServerVendor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "cufwUrlfServerEntry",
                    "cufwUrlfServerVendor"
                  ]
                },
                "description": "Retrieve cufwUrlfServerVendor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/cufwUrlfServerEntry/cufwUrlfServerStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "cufwUrlfServerEntry",
                    "cufwUrlfServerStatus"
                  ]
                },
                "description": "Retrieve cufwUrlfServerStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerReqsNumProcessed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/cufwUrlfServerEntry/cufwUrlfServerReqsNumProcessed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "cufwUrlfServerEntry",
                    "cufwUrlfServerReqsNumProcessed"
                  ]
                },
                "description": "Retrieve cufwUrlfServerReqsNumProcessed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerReqsNumAllowed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/cufwUrlfServerEntry/cufwUrlfServerReqsNumAllowed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "cufwUrlfServerEntry",
                    "cufwUrlfServerReqsNumAllowed"
                  ]
                },
                "description": "Retrieve cufwUrlfServerReqsNumAllowed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerReqsNumDenied",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/cufwUrlfServerEntry/cufwUrlfServerReqsNumDenied",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "cufwUrlfServerEntry",
                    "cufwUrlfServerReqsNumDenied"
                  ]
                },
                "description": "Retrieve cufwUrlfServerReqsNumDenied from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerNumTimeouts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/cufwUrlfServerEntry/cufwUrlfServerNumTimeouts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "cufwUrlfServerEntry",
                    "cufwUrlfServerNumTimeouts"
                  ]
                },
                "description": "Retrieve cufwUrlfServerNumTimeouts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerNumRetries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/cufwUrlfServerEntry/cufwUrlfServerNumRetries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "cufwUrlfServerEntry",
                    "cufwUrlfServerNumRetries"
                  ]
                },
                "description": "Retrieve cufwUrlfServerNumRetries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerRespsNumReceived",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/cufwUrlfServerEntry/cufwUrlfServerRespsNumReceived",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "cufwUrlfServerEntry",
                    "cufwUrlfServerRespsNumReceived"
                  ]
                },
                "description": "Retrieve cufwUrlfServerRespsNumReceived from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerRespsNumLate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/cufwUrlfServerEntry/cufwUrlfServerRespsNumLate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "cufwUrlfServerEntry",
                    "cufwUrlfServerRespsNumLate"
                  ]
                },
                "description": "Retrieve cufwUrlfServerRespsNumLate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerAvgRespTime1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/cufwUrlfServerEntry/cufwUrlfServerAvgRespTime1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "cufwUrlfServerEntry",
                    "cufwUrlfServerAvgRespTime1"
                  ]
                },
                "description": "Retrieve cufwUrlfServerAvgRespTime1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerAvgRespTime5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/cufwUrlfServerEntry/cufwUrlfServerAvgRespTime5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "cufwUrlfServerEntry",
                    "cufwUrlfServerAvgRespTime5"
                  ]
                },
                "description": "Retrieve cufwUrlfServerAvgRespTime5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/object-1/cufwUrlfServerAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "object-1",
                    "cufwUrlfServerAddrType"
                  ]
                },
                "description": "Retrieve cufwUrlfServerAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/object-1/cufwUrlfServerAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "object-1",
                    "cufwUrlfServerAddress"
                  ]
                },
                "description": "Retrieve cufwUrlfServerAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/object-1/cufwUrlfServerPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "object-1",
                    "cufwUrlfServerPort"
                  ]
                },
                "description": "Retrieve cufwUrlfServerPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cufwUrlfServerStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/object-1/cufwUrlfServerStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "object-1",
                    "cufwUrlfServerStatus"
                  ]
                },
                "description": "Retrieve cufwUrlfServerStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpFdbAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/object-1/dot1dTpFdbAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "object-1",
                    "dot1dTpFdbAddress"
                  ]
                },
                "description": "Retrieve dot1dTpFdbAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpFdbPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/object-1/dot1dTpFdbPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "object-1",
                    "dot1dTpFdbPort"
                  ]
                },
                "description": "Retrieve dot1dTpFdbPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpFdbAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/object-2/dot1dTpFdbAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "object-2",
                    "dot1dTpFdbAddress"
                  ]
                },
                "description": "Retrieve dot1dTpFdbAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpFdbStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB/cufwUrlfServerTable/object-2/dot1dTpFdbStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-UNIFIED-FIREWALL-MIB:CISCO-UNIFIED-FIREWALL-MIB",
                    "cufwUrlfServerTable",
                    "object-2",
                    "dot1dTpFdbStatus"
                  ]
                },
                "description": "Retrieve dot1dTpFdbStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB\n\nMIB data from `CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB` module.\n\n**Root containers:** 1 (CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB)\n**Paths:** 6 | **Descendants:** 5\n\nAll endpoints are read-only (GET).\n\nEndpoints: 6 | Operations: 6",
          "item": [
            {
              "name": "GET Get CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB:CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB:CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB"
                  ]
                },
                "description": "Retrieve CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cviVlanInterfaceIndexTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB:CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB/cviVlanInterfaceIndexTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB:CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB",
                    "cviVlanInterfaceIndexTable"
                  ]
                },
                "description": "Retrieve cviVlanInterfaceIndexTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cviVlanInterfaceIndexEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB:CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB/cviVlanInterfaceIndexTable/cviVlanInterfaceIndexEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB:CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB",
                    "cviVlanInterfaceIndexTable",
                    "cviVlanInterfaceIndexEntry"
                  ]
                },
                "description": "Retrieve cviVlanInterfaceIndexEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cviVlanId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB:CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB/cviVlanInterfaceIndexTable/cviVlanInterfaceIndexEntry/cviVlanId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB:CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB",
                    "cviVlanInterfaceIndexTable",
                    "cviVlanInterfaceIndexEntry",
                    "cviVlanId"
                  ]
                },
                "description": "Retrieve cviVlanId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cviPhysicalIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB:CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB/cviVlanInterfaceIndexTable/cviVlanInterfaceIndexEntry/cviPhysicalIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB:CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB",
                    "cviVlanInterfaceIndexTable",
                    "cviVlanInterfaceIndexEntry",
                    "cviPhysicalIfIndex"
                  ]
                },
                "description": "Retrieve cviPhysicalIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cviRoutedVlanIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB:CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB/cviVlanInterfaceIndexTable/cviVlanInterfaceIndexEntry/cviRoutedVlanIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB:CISCO-VLAN-IFTABLE-RELATIONSHIP-MIB",
                    "cviVlanInterfaceIndexTable",
                    "cviVlanInterfaceIndexEntry",
                    "cviRoutedVlanIfIndex"
                  ]
                },
                "description": "Retrieve cviRoutedVlanIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-VLAN-MEMBERSHIP-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-VLAN-MEMBERSHIP-MIB\n\nMIB data from `CISCO-VLAN-MEMBERSHIP-MIB` module.\n\n**Root containers:** 1 (CISCO-VLAN-MEMBERSHIP-MIB)\n**Paths:** 52 | **Descendants:** 51\n\nAll endpoints are read-only (GET).\n\nEndpoints: 52 | Operations: 52",
          "item": [
            {
              "name": "GET Get CISCO-VLAN-MEMBERSHIP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB"
                  ]
                },
                "description": "Retrieve CISCO-VLAN-MEMBERSHIP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVmps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVmps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVmps"
                  ]
                },
                "description": "Retrieve vmVmps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVmpsVQPVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVmps/vmVmpsVQPVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVmps",
                    "vmVmpsVQPVersion"
                  ]
                },
                "description": "Retrieve vmVmpsVQPVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVmpsRetries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVmps/vmVmpsRetries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVmps",
                    "vmVmpsRetries"
                  ]
                },
                "description": "Retrieve vmVmpsRetries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVmpsReconfirmInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVmps/vmVmpsReconfirmInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVmps",
                    "vmVmpsReconfirmInterval"
                  ]
                },
                "description": "Retrieve vmVmpsReconfirmInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVmpsReconfirm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVmps/vmVmpsReconfirm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVmps",
                    "vmVmpsReconfirm"
                  ]
                },
                "description": "Retrieve vmVmpsReconfirm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVmpsReconfirmResult",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVmps/vmVmpsReconfirmResult",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVmps",
                    "vmVmpsReconfirmResult"
                  ]
                },
                "description": "Retrieve vmVmpsReconfirmResult from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVmpsCurrent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVmps/vmVmpsCurrent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVmps",
                    "vmVmpsCurrent"
                  ]
                },
                "description": "Retrieve vmVmpsCurrent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmMembership",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembership",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembership"
                  ]
                },
                "description": "Retrieve vmMembership from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVlanCreationMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembership/vmVlanCreationMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembership",
                    "vmVlanCreationMode"
                  ]
                },
                "description": "Retrieve vmVlanCreationMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmStatistics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmStatistics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmStatistics"
                  ]
                },
                "description": "Retrieve vmStatistics from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVQPQueries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmStatistics/vmVQPQueries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmStatistics",
                    "vmVQPQueries"
                  ]
                },
                "description": "Retrieve vmVQPQueries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVQPResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmStatistics/vmVQPResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmStatistics",
                    "vmVQPResponses"
                  ]
                },
                "description": "Retrieve vmVQPResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVmpsChanges",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmStatistics/vmVmpsChanges",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmStatistics",
                    "vmVmpsChanges"
                  ]
                },
                "description": "Retrieve vmVmpsChanges from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVQPShutdown",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmStatistics/vmVQPShutdown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmStatistics",
                    "vmVQPShutdown"
                  ]
                },
                "description": "Retrieve vmVQPShutdown from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVQPDenied",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmStatistics/vmVQPDenied",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmStatistics",
                    "vmVQPDenied"
                  ]
                },
                "description": "Retrieve vmVQPDenied from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVQPWrongDomain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmStatistics/vmVQPWrongDomain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmStatistics",
                    "vmVQPWrongDomain"
                  ]
                },
                "description": "Retrieve vmVQPWrongDomain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVQPWrongVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmStatistics/vmVQPWrongVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmStatistics",
                    "vmVQPWrongVersion"
                  ]
                },
                "description": "Retrieve vmVQPWrongVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmInsufficientResources",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmStatistics/vmInsufficientResources",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmStatistics",
                    "vmInsufficientResources"
                  ]
                },
                "description": "Retrieve vmInsufficientResources from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmStatus"
                  ]
                },
                "description": "Retrieve vmStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmNotificationsEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmStatus/vmNotificationsEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmStatus",
                    "vmNotificationsEnabled"
                  ]
                },
                "description": "Retrieve vmNotificationsEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVmpsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVmpsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVmpsTable"
                  ]
                },
                "description": "Retrieve vmVmpsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVmpsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVmpsTable/vmVmpsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVmpsTable",
                    "vmVmpsEntry"
                  ]
                },
                "description": "Retrieve vmVmpsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVmpsIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVmpsTable/vmVmpsEntry/vmVmpsIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVmpsTable",
                    "vmVmpsEntry",
                    "vmVmpsIpAddress"
                  ]
                },
                "description": "Retrieve vmVmpsIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVmpsPrimary",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVmpsTable/vmVmpsEntry/vmVmpsPrimary",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVmpsTable",
                    "vmVmpsEntry",
                    "vmVmpsPrimary"
                  ]
                },
                "description": "Retrieve vmVmpsPrimary from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVmpsRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVmpsTable/vmVmpsEntry/vmVmpsRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVmpsTable",
                    "vmVmpsEntry",
                    "vmVmpsRowStatus"
                  ]
                },
                "description": "Retrieve vmVmpsRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmMembershipSummaryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipSummaryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipSummaryTable"
                  ]
                },
                "description": "Retrieve vmMembershipSummaryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmMembershipSummaryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipSummaryTable/vmMembershipSummaryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipSummaryTable",
                    "vmMembershipSummaryEntry"
                  ]
                },
                "description": "Retrieve vmMembershipSummaryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmMembershipSummaryVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipSummaryTable/vmMembershipSummaryEntry/vmMembershipSummaryVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipSummaryTable",
                    "vmMembershipSummaryEntry",
                    "vmMembershipSummaryVlanIndex"
                  ]
                },
                "description": "Retrieve vmMembershipSummaryVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmMembershipSummaryMember2kPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipSummaryTable/vmMembershipSummaryEntry/vmMembershipSummaryMember2kPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipSummaryTable",
                    "vmMembershipSummaryEntry",
                    "vmMembershipSummaryMember2kPorts"
                  ]
                },
                "description": "Retrieve vmMembershipSummaryMember2kPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmMembershipTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipTable"
                  ]
                },
                "description": "Retrieve vmMembershipTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmMembershipEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipTable/vmMembershipEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipTable",
                    "vmMembershipEntry"
                  ]
                },
                "description": "Retrieve vmMembershipEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipTable/vmMembershipEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipTable",
                    "vmMembershipEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVlanType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipTable/vmMembershipEntry/vmVlanType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipTable",
                    "vmMembershipEntry",
                    "vmVlanType"
                  ]
                },
                "description": "Retrieve vmVlanType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipTable/vmMembershipEntry/vmVlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipTable",
                    "vmMembershipEntry",
                    "vmVlan"
                  ]
                },
                "description": "Retrieve vmVlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmPortStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipTable/vmMembershipEntry/vmPortStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipTable",
                    "vmMembershipEntry",
                    "vmPortStatus"
                  ]
                },
                "description": "Retrieve vmPortStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVlans",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipTable/vmMembershipEntry/vmVlans",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipTable",
                    "vmMembershipEntry",
                    "vmVlans"
                  ]
                },
                "description": "Retrieve vmVlans from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVlans2k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipTable/vmMembershipEntry/vmVlans2k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipTable",
                    "vmMembershipEntry",
                    "vmVlans2k"
                  ]
                },
                "description": "Retrieve vmVlans2k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVlans3k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipTable/vmMembershipEntry/vmVlans3k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipTable",
                    "vmMembershipEntry",
                    "vmVlans3k"
                  ]
                },
                "description": "Retrieve vmVlans3k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVlans4k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipTable/vmMembershipEntry/vmVlans4k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipTable",
                    "vmMembershipEntry",
                    "vmVlans4k"
                  ]
                },
                "description": "Retrieve vmVlans4k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmMembershipSummaryExtTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipSummaryExtTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipSummaryExtTable"
                  ]
                },
                "description": "Retrieve vmMembershipSummaryExtTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmMembershipSummaryExtEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipSummaryExtTable/vmMembershipSummaryExtEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipSummaryExtTable",
                    "vmMembershipSummaryExtEntry"
                  ]
                },
                "description": "Retrieve vmMembershipSummaryExtEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmMembershipSummaryVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipSummaryExtTable/vmMembershipSummaryExtEntry/vmMembershipSummaryVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipSummaryExtTable",
                    "vmMembershipSummaryExtEntry",
                    "vmMembershipSummaryVlanIndex"
                  ]
                },
                "description": "Retrieve vmMembershipSummaryVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmMembershipPortRangeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipSummaryExtTable/vmMembershipSummaryExtEntry/vmMembershipPortRangeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipSummaryExtTable",
                    "vmMembershipSummaryExtEntry",
                    "vmMembershipPortRangeIndex"
                  ]
                },
                "description": "Retrieve vmMembershipPortRangeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmMembershipSummaryExtPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmMembershipSummaryExtTable/vmMembershipSummaryExtEntry/vmMembershipSummaryExtPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmMembershipSummaryExtTable",
                    "vmMembershipSummaryExtEntry",
                    "vmMembershipSummaryExtPorts"
                  ]
                },
                "description": "Retrieve vmMembershipSummaryExtPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVoiceVlanTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVoiceVlanTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVoiceVlanTable"
                  ]
                },
                "description": "Retrieve vmVoiceVlanTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVoiceVlanEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVoiceVlanTable/vmVoiceVlanEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVoiceVlanTable",
                    "vmVoiceVlanEntry"
                  ]
                },
                "description": "Retrieve vmVoiceVlanEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVoiceVlanTable/vmVoiceVlanEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVoiceVlanTable",
                    "vmVoiceVlanEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVoiceVlanId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVoiceVlanTable/vmVoiceVlanEntry/vmVoiceVlanId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVoiceVlanTable",
                    "vmVoiceVlanEntry",
                    "vmVoiceVlanId"
                  ]
                },
                "description": "Retrieve vmVoiceVlanId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVoiceVlanCdpVerifyEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVoiceVlanTable/vmVoiceVlanEntry/vmVoiceVlanCdpVerifyEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVoiceVlanTable",
                    "vmVoiceVlanEntry",
                    "vmVoiceVlanCdpVerifyEnable"
                  ]
                },
                "description": "Retrieve vmVoiceVlanCdpVerifyEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVoiceVlanTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVoiceVlanTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vmVmpsIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB/vmVoiceVlanTable/object-1/vmVmpsIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VLAN-MEMBERSHIP-MIB:CISCO-VLAN-MEMBERSHIP-MIB",
                    "vmVoiceVlanTable",
                    "object-1",
                    "vmVmpsIpAddress"
                  ]
                },
                "description": "Retrieve vmVmpsIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-VOICE-COMMON-DIAL-CONTROL-MIB\n\nMIB data from `CISCO-VOICE-COMMON-DIAL-CONTROL-MIB` module.\n\n**Root containers:** 1 (CISCO-VOICE-COMMON-DIAL-CONTROL-MIB)\n**Paths:** 22 | **Descendants:** 21\n\nAll endpoints are read-only (GET).\n\nEndpoints: 22 | Operations: 22",
          "item": [
            {
              "name": "GET Get CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB"
                  ]
                },
                "description": "Retrieve CISCO-VOICE-COMMON-DIAL-CONTROL-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallActiveTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallActiveTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallActiveTable"
                  ]
                },
                "description": "Retrieve cvCommonDcCallActiveTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallActiveEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallActiveTable/cvCommonDcCallActiveEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallActiveTable",
                    "cvCommonDcCallActiveEntry"
                  ]
                },
                "description": "Retrieve cvCommonDcCallActiveEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallActiveTable/cvCommonDcCallActiveEntry/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallActiveTable",
                    "cvCommonDcCallActiveEntry",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallActiveTable/cvCommonDcCallActiveEntry/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallActiveTable",
                    "cvCommonDcCallActiveEntry",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallActiveConnectionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallActiveTable/cvCommonDcCallActiveEntry/cvCommonDcCallActiveConnectionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallActiveTable",
                    "cvCommonDcCallActiveEntry",
                    "cvCommonDcCallActiveConnectionId"
                  ]
                },
                "description": "Retrieve cvCommonDcCallActiveConnectionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallActiveVADEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallActiveTable/cvCommonDcCallActiveEntry/cvCommonDcCallActiveVADEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallActiveTable",
                    "cvCommonDcCallActiveEntry",
                    "cvCommonDcCallActiveVADEnable"
                  ]
                },
                "description": "Retrieve cvCommonDcCallActiveVADEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallActiveCoderTypeRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallActiveTable/cvCommonDcCallActiveEntry/cvCommonDcCallActiveCoderTypeRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallActiveTable",
                    "cvCommonDcCallActiveEntry",
                    "cvCommonDcCallActiveCoderTypeRate"
                  ]
                },
                "description": "Retrieve cvCommonDcCallActiveCoderTypeRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallActiveCodecBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallActiveTable/cvCommonDcCallActiveEntry/cvCommonDcCallActiveCodecBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallActiveTable",
                    "cvCommonDcCallActiveEntry",
                    "cvCommonDcCallActiveCodecBytes"
                  ]
                },
                "description": "Retrieve cvCommonDcCallActiveCodecBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallActiveInBandSignaling",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallActiveTable/cvCommonDcCallActiveEntry/cvCommonDcCallActiveInBandSignaling",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallActiveTable",
                    "cvCommonDcCallActiveEntry",
                    "cvCommonDcCallActiveInBandSignaling"
                  ]
                },
                "description": "Retrieve cvCommonDcCallActiveInBandSignaling from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallActiveCallingName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallActiveTable/cvCommonDcCallActiveEntry/cvCommonDcCallActiveCallingName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallActiveTable",
                    "cvCommonDcCallActiveEntry",
                    "cvCommonDcCallActiveCallingName"
                  ]
                },
                "description": "Retrieve cvCommonDcCallActiveCallingName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallActiveCallerIDBlock",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallActiveTable/cvCommonDcCallActiveEntry/cvCommonDcCallActiveCallerIDBlock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallActiveTable",
                    "cvCommonDcCallActiveEntry",
                    "cvCommonDcCallActiveCallerIDBlock"
                  ]
                },
                "description": "Retrieve cvCommonDcCallActiveCallerIDBlock from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallHistoryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallHistoryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallHistoryTable"
                  ]
                },
                "description": "Retrieve cvCommonDcCallHistoryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallHistoryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallHistoryTable/cvCommonDcCallHistoryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallHistoryTable",
                    "cvCommonDcCallHistoryEntry"
                  ]
                },
                "description": "Retrieve cvCommonDcCallHistoryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallHistoryTable/cvCommonDcCallHistoryEntry/cCallHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallHistoryTable",
                    "cvCommonDcCallHistoryEntry",
                    "cCallHistoryIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallHistoryConnectionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallHistoryTable/cvCommonDcCallHistoryEntry/cvCommonDcCallHistoryConnectionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallHistoryTable",
                    "cvCommonDcCallHistoryEntry",
                    "cvCommonDcCallHistoryConnectionId"
                  ]
                },
                "description": "Retrieve cvCommonDcCallHistoryConnectionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallHistoryVADEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallHistoryTable/cvCommonDcCallHistoryEntry/cvCommonDcCallHistoryVADEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallHistoryTable",
                    "cvCommonDcCallHistoryEntry",
                    "cvCommonDcCallHistoryVADEnable"
                  ]
                },
                "description": "Retrieve cvCommonDcCallHistoryVADEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallHistoryCoderTypeRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallHistoryTable/cvCommonDcCallHistoryEntry/cvCommonDcCallHistoryCoderTypeRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallHistoryTable",
                    "cvCommonDcCallHistoryEntry",
                    "cvCommonDcCallHistoryCoderTypeRate"
                  ]
                },
                "description": "Retrieve cvCommonDcCallHistoryCoderTypeRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallHistoryCodecBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallHistoryTable/cvCommonDcCallHistoryEntry/cvCommonDcCallHistoryCodecBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallHistoryTable",
                    "cvCommonDcCallHistoryEntry",
                    "cvCommonDcCallHistoryCodecBytes"
                  ]
                },
                "description": "Retrieve cvCommonDcCallHistoryCodecBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallHistoryInBandSignaling",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallHistoryTable/cvCommonDcCallHistoryEntry/cvCommonDcCallHistoryInBandSignaling",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallHistoryTable",
                    "cvCommonDcCallHistoryEntry",
                    "cvCommonDcCallHistoryInBandSignaling"
                  ]
                },
                "description": "Retrieve cvCommonDcCallHistoryInBandSignaling from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallHistoryCallingName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallHistoryTable/cvCommonDcCallHistoryEntry/cvCommonDcCallHistoryCallingName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallHistoryTable",
                    "cvCommonDcCallHistoryEntry",
                    "cvCommonDcCallHistoryCallingName"
                  ]
                },
                "description": "Retrieve cvCommonDcCallHistoryCallingName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallHistoryCallerIDBlock",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB/cvCommonDcCallHistoryTable/cvCommonDcCallHistoryEntry/cvCommonDcCallHistoryCallerIDBlock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-COMMON-DIAL-CONTROL-MIB:CISCO-VOICE-COMMON-DIAL-CONTROL-MIB",
                    "cvCommonDcCallHistoryTable",
                    "cvCommonDcCallHistoryEntry",
                    "cvCommonDcCallHistoryCallerIDBlock"
                  ]
                },
                "description": "Retrieve cvCommonDcCallHistoryCallerIDBlock from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-VOICE-DIAL-CONTROL-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-VOICE-DIAL-CONTROL-MIB\n\nMIB data from `CISCO-VOICE-DIAL-CONTROL-MIB` module.\n\n**Root containers:** 1 (CISCO-VOICE-DIAL-CONTROL-MIB)\n**Paths:** 333 | **Descendants:** 366\n\nAll endpoints are read-only (GET).\n\nEndpoints: 333 | Operations: 333",
          "item": [
            {
              "name": "GET Get CISCO-VOICE-DIAL-CONTROL-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB"
                  ]
                },
                "description": "Retrieve CISCO-VOICE-DIAL-CONTROL-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvGeneralConfiguration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvGeneralConfiguration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvGeneralConfiguration"
                  ]
                },
                "description": "Retrieve cvGeneralConfiguration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvGeneralPoorQoVNotificationEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvGeneralConfiguration/cvGeneralPoorQoVNotificationEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvGeneralConfiguration",
                    "cvGeneralPoorQoVNotificationEnable"
                  ]
                },
                "description": "Retrieve cvGeneralPoorQoVNotificationEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvGeneralFallbackNotificationEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvGeneralConfiguration/cvGeneralFallbackNotificationEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvGeneralConfiguration",
                    "cvGeneralFallbackNotificationEnable"
                  ]
                },
                "description": "Retrieve cvGeneralFallbackNotificationEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvGeneralDSCPPolicyNotificationEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvGeneralConfiguration/cvGeneralDSCPPolicyNotificationEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvGeneralConfiguration",
                    "cvGeneralDSCPPolicyNotificationEnable"
                  ]
                },
                "description": "Retrieve cvGeneralDSCPPolicyNotificationEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvGeneralMediaPolicyNotificationEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvGeneralConfiguration/cvGeneralMediaPolicyNotificationEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvGeneralConfiguration",
                    "cvGeneralMediaPolicyNotificationEnable"
                  ]
                },
                "description": "Retrieve cvGeneralMediaPolicyNotificationEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvGatewayCallActive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvGatewayCallActive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvGatewayCallActive"
                  ]
                },
                "description": "Retrieve cvGatewayCallActive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveDS0s",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvGatewayCallActive/cvCallActiveDS0s",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvGatewayCallActive",
                    "cvCallActiveDS0s"
                  ]
                },
                "description": "Retrieve cvCallActiveDS0s from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveDS0sHighThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvGatewayCallActive/cvCallActiveDS0sHighThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvGatewayCallActive",
                    "cvCallActiveDS0sHighThreshold"
                  ]
                },
                "description": "Retrieve cvCallActiveDS0sHighThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveDS0sLowThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvGatewayCallActive/cvCallActiveDS0sLowThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvGatewayCallActive",
                    "cvCallActiveDS0sLowThreshold"
                  ]
                },
                "description": "Retrieve cvCallActiveDS0sLowThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveDS0sHighNotifyEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvGatewayCallActive/cvCallActiveDS0sHighNotifyEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvGatewayCallActive",
                    "cvCallActiveDS0sHighNotifyEnable"
                  ]
                },
                "description": "Retrieve cvCallActiveDS0sHighNotifyEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveDS0sLowNotifyEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvGatewayCallActive/cvCallActiveDS0sLowNotifyEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvGatewayCallActive",
                    "cvCallActiveDS0sLowNotifyEnable"
                  ]
                },
                "description": "Retrieve cvCallActiveDS0sLowNotifyEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallVolume",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallVolume",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallVolume"
                  ]
                },
                "description": "Retrieve cvCallVolume from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallVolConnTotalActiveConnections",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallVolume/cvCallVolConnTotalActiveConnections",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallVolume",
                    "cvCallVolConnTotalActiveConnections"
                  ]
                },
                "description": "Retrieve cvCallVolConnTotalActiveConnections from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallVolConnMaxCallConnectionLicenese",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallVolume/cvCallVolConnMaxCallConnectionLicenese",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallVolume",
                    "cvCallVolConnMaxCallConnectionLicenese"
                  ]
                },
                "description": "Retrieve cvCallVolConnMaxCallConnectionLicenese from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRateMonitor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateMonitor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateMonitor"
                  ]
                },
                "description": "Retrieve cvCallRateMonitor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRateMonitorEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateMonitor/cvCallRateMonitorEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateMonitor",
                    "cvCallRateMonitorEnable"
                  ]
                },
                "description": "Retrieve cvCallRateMonitorEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRateMonitorTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateMonitor/cvCallRateMonitorTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateMonitor",
                    "cvCallRateMonitorTime"
                  ]
                },
                "description": "Retrieve cvCallRateMonitorTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateMonitor/cvCallRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateMonitor",
                    "cvCallRate"
                  ]
                },
                "description": "Retrieve cvCallRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRateHiWaterMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateMonitor/cvCallRateHiWaterMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateMonitor",
                    "cvCallRateHiWaterMark"
                  ]
                },
                "description": "Retrieve cvCallRateHiWaterMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallVolumeStatsHistory",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallVolumeStatsHistory",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallVolumeStatsHistory"
                  ]
                },
                "description": "Retrieve cvCallVolumeStatsHistory from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallDurationStatsThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallVolumeStatsHistory/cvCallDurationStatsThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallVolumeStatsHistory",
                    "cvCallDurationStatsThreshold"
                  ]
                },
                "description": "Retrieve cvCallDurationStatsThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallVolumeWMTableSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallVolumeStatsHistory/cvCallVolumeWMTableSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallVolumeStatsHistory",
                    "cvCallVolumeWMTableSize"
                  ]
                },
                "description": "Retrieve cvCallVolumeWMTableSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCfgTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCfgTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCfgTable"
                  ]
                },
                "description": "Retrieve cvPeerCfgTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCfgEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCfgTable/cvPeerCfgEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCfgTable",
                    "cvPeerCfgEntry"
                  ]
                },
                "description": "Retrieve cvPeerCfgEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCfgIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCfgTable/cvPeerCfgEntry/cvPeerCfgIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCfgTable",
                    "cvPeerCfgEntry",
                    "cvPeerCfgIndex"
                  ]
                },
                "description": "Retrieve cvPeerCfgIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCfgIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCfgTable/cvPeerCfgEntry/cvPeerCfgIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCfgTable",
                    "cvPeerCfgEntry",
                    "cvPeerCfgIfIndex"
                  ]
                },
                "description": "Retrieve cvPeerCfgIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCfgType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCfgTable/cvPeerCfgEntry/cvPeerCfgType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCfgTable",
                    "cvPeerCfgEntry",
                    "cvPeerCfgType"
                  ]
                },
                "description": "Retrieve cvPeerCfgType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCfgRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCfgTable/cvPeerCfgEntry/cvPeerCfgRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCfgTable",
                    "cvPeerCfgEntry",
                    "cvPeerCfgRowStatus"
                  ]
                },
                "description": "Retrieve cvPeerCfgRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCfgPeerType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCfgTable/cvPeerCfgEntry/cvPeerCfgPeerType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCfgTable",
                    "cvPeerCfgEntry",
                    "cvPeerCfgPeerType"
                  ]
                },
                "description": "Retrieve cvPeerCfgPeerType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallVolPeerIncomingCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCfgTable/cvPeerCfgEntry/cvCallVolPeerIncomingCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCfgTable",
                    "cvPeerCfgEntry",
                    "cvCallVolPeerIncomingCalls"
                  ]
                },
                "description": "Retrieve cvCallVolPeerIncomingCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallVolPeerOutgoingCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCfgTable/cvPeerCfgEntry/cvCallVolPeerOutgoingCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCfgTable",
                    "cvPeerCfgEntry",
                    "cvCallVolPeerOutgoingCalls"
                  ]
                },
                "description": "Retrieve cvCallVolPeerOutgoingCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoicePeerCfgTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoicePeerCfgTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoicePeerCfgTable"
                  ]
                },
                "description": "Retrieve cvVoicePeerCfgTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoicePeerCfgEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoicePeerCfgTable/cvVoicePeerCfgEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoicePeerCfgTable",
                    "cvVoicePeerCfgEntry"
                  ]
                },
                "description": "Retrieve cvVoicePeerCfgEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoicePeerCfgTable/cvVoicePeerCfgEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoicePeerCfgTable",
                    "cvVoicePeerCfgEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoicePeerCfgSessionTarget",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoicePeerCfgTable/cvVoicePeerCfgEntry/cvVoicePeerCfgSessionTarget",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoicePeerCfgTable",
                    "cvVoicePeerCfgEntry",
                    "cvVoicePeerCfgSessionTarget"
                  ]
                },
                "description": "Retrieve cvVoicePeerCfgSessionTarget from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoicePeerCfgDialDigitsPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoicePeerCfgTable/cvVoicePeerCfgEntry/cvVoicePeerCfgDialDigitsPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoicePeerCfgTable",
                    "cvVoicePeerCfgEntry",
                    "cvVoicePeerCfgDialDigitsPrefix"
                  ]
                },
                "description": "Retrieve cvVoicePeerCfgDialDigitsPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoicePeerCfgDIDCallEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoicePeerCfgTable/cvVoicePeerCfgEntry/cvVoicePeerCfgDIDCallEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoicePeerCfgTable",
                    "cvVoicePeerCfgEntry",
                    "cvVoicePeerCfgDIDCallEnable"
                  ]
                },
                "description": "Retrieve cvVoicePeerCfgDIDCallEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoicePeerCfgCasGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoicePeerCfgTable/cvVoicePeerCfgEntry/cvVoicePeerCfgCasGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoicePeerCfgTable",
                    "cvVoicePeerCfgEntry",
                    "cvVoicePeerCfgCasGroup"
                  ]
                },
                "description": "Retrieve cvVoicePeerCfgCasGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoicePeerCfgRegisterE164",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoicePeerCfgTable/cvVoicePeerCfgEntry/cvVoicePeerCfgRegisterE164",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoicePeerCfgTable",
                    "cvVoicePeerCfgEntry",
                    "cvVoicePeerCfgRegisterE164"
                  ]
                },
                "description": "Retrieve cvVoicePeerCfgRegisterE164 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoicePeerCfgForwardDigits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoicePeerCfgTable/cvVoicePeerCfgEntry/cvVoicePeerCfgForwardDigits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoicePeerCfgTable",
                    "cvVoicePeerCfgEntry",
                    "cvVoicePeerCfgForwardDigits"
                  ]
                },
                "description": "Retrieve cvVoicePeerCfgForwardDigits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoicePeerCfgEchoCancellerTest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoicePeerCfgTable/cvVoicePeerCfgEntry/cvVoicePeerCfgEchoCancellerTest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoicePeerCfgTable",
                    "cvVoicePeerCfgEntry",
                    "cvVoicePeerCfgEchoCancellerTest"
                  ]
                },
                "description": "Retrieve cvVoicePeerCfgEchoCancellerTest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgSessionProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgSessionProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgSessionProtocol"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgSessionProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgDesiredQoS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgDesiredQoS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgDesiredQoS"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgDesiredQoS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgMinAcceptableQoS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgMinAcceptableQoS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgMinAcceptableQoS"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgMinAcceptableQoS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgSessionTarget",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgSessionTarget",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgSessionTarget"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgSessionTarget from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgCoderRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgCoderRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgCoderRate"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgCoderRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgFaxRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgFaxRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgFaxRate"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgFaxRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgVADEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgVADEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgVADEnable"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgVADEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgExpectFactor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgExpectFactor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgExpectFactor"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgExpectFactor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgIcpif",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgIcpif",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgIcpif"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgIcpif from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgPoorQoVNotificationEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgPoorQoVNotificationEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgPoorQoVNotificationEnable"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgPoorQoVNotificationEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgUDPChecksumEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgUDPChecksumEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgUDPChecksumEnable"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgUDPChecksumEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgIPPrecedence",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgIPPrecedence",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgIPPrecedence"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgIPPrecedence from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgTechPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgTechPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgTechPrefix"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgTechPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgDigitRelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgDigitRelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgDigitRelay"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgDigitRelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgCoderBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgCoderBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgCoderBytes"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgCoderBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgFaxBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgFaxBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgFaxBytes"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgFaxBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgInBandSignaling",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgInBandSignaling",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgInBandSignaling"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgInBandSignaling from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgMediaSetting",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgMediaSetting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgMediaSetting"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgMediaSetting from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgDesiredQoSVideo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgDesiredQoSVideo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgDesiredQoSVideo"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgDesiredQoSVideo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgMinAcceptableQoSVideo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgMinAcceptableQoSVideo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgMinAcceptableQoSVideo"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgMinAcceptableQoSVideo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgRedirectip2ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgRedirectip2ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgRedirectip2ip"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgRedirectip2ip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgOctetAligned",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgOctetAligned",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgOctetAligned"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgOctetAligned from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgBitRates",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgBitRates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgBitRates"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgBitRates from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgCRC",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgCRC",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgCRC"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgCRC from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgCoderMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgCoderMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgCoderMode"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgCoderMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgCodingMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgCodingMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgCodingMode"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgCodingMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgBitRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgBitRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgBitRate"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgBitRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgFrameSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgFrameSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgFrameSize"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgFrameSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgDSCPPolicyNotificationEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgDSCPPolicyNotificationEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgDSCPPolicyNotificationEnable"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgDSCPPolicyNotificationEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPPeerCfgMediaPolicyNotificationEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPPeerCfgTable/cvVoIPPeerCfgEntry/cvVoIPPeerCfgMediaPolicyNotificationEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPPeerCfgTable",
                    "cvVoIPPeerCfgEntry",
                    "cvVoIPPeerCfgMediaPolicyNotificationEnable"
                  ]
                },
                "description": "Retrieve cvVoIPPeerCfgMediaPolicyNotificationEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCommonCfgTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCommonCfgTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCommonCfgTable"
                  ]
                },
                "description": "Retrieve cvPeerCommonCfgTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCommonCfgEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCommonCfgTable/cvPeerCommonCfgEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCommonCfgTable",
                    "cvPeerCommonCfgEntry"
                  ]
                },
                "description": "Retrieve cvPeerCommonCfgEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCommonCfgTable/cvPeerCommonCfgEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCommonCfgTable",
                    "cvPeerCommonCfgEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCommonCfgIncomingDnisDigits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCommonCfgTable/cvPeerCommonCfgEntry/cvPeerCommonCfgIncomingDnisDigits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCommonCfgTable",
                    "cvPeerCommonCfgEntry",
                    "cvPeerCommonCfgIncomingDnisDigits"
                  ]
                },
                "description": "Retrieve cvPeerCommonCfgIncomingDnisDigits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCommonCfgMaxConnections",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCommonCfgTable/cvPeerCommonCfgEntry/cvPeerCommonCfgMaxConnections",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCommonCfgTable",
                    "cvPeerCommonCfgEntry",
                    "cvPeerCommonCfgMaxConnections"
                  ]
                },
                "description": "Retrieve cvPeerCommonCfgMaxConnections from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCommonCfgApplicationName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCommonCfgTable/cvPeerCommonCfgEntry/cvPeerCommonCfgApplicationName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCommonCfgTable",
                    "cvPeerCommonCfgEntry",
                    "cvPeerCommonCfgApplicationName"
                  ]
                },
                "description": "Retrieve cvPeerCommonCfgApplicationName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCommonCfgPreference",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCommonCfgTable/cvPeerCommonCfgEntry/cvPeerCommonCfgPreference",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCommonCfgTable",
                    "cvPeerCommonCfgEntry",
                    "cvPeerCommonCfgPreference"
                  ]
                },
                "description": "Retrieve cvPeerCommonCfgPreference from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCommonCfgHuntStop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCommonCfgTable/cvPeerCommonCfgEntry/cvPeerCommonCfgHuntStop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCommonCfgTable",
                    "cvPeerCommonCfgEntry",
                    "cvPeerCommonCfgHuntStop"
                  ]
                },
                "description": "Retrieve cvPeerCommonCfgHuntStop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCommonCfgDnisMappingName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCommonCfgTable/cvPeerCommonCfgEntry/cvPeerCommonCfgDnisMappingName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCommonCfgTable",
                    "cvPeerCommonCfgEntry",
                    "cvPeerCommonCfgDnisMappingName"
                  ]
                },
                "description": "Retrieve cvPeerCommonCfgDnisMappingName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCommonCfgSourceCarrierId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCommonCfgTable/cvPeerCommonCfgEntry/cvPeerCommonCfgSourceCarrierId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCommonCfgTable",
                    "cvPeerCommonCfgEntry",
                    "cvPeerCommonCfgSourceCarrierId"
                  ]
                },
                "description": "Retrieve cvPeerCommonCfgSourceCarrierId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCommonCfgTargetCarrierId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCommonCfgTable/cvPeerCommonCfgEntry/cvPeerCommonCfgTargetCarrierId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCommonCfgTable",
                    "cvPeerCommonCfgEntry",
                    "cvPeerCommonCfgTargetCarrierId"
                  ]
                },
                "description": "Retrieve cvPeerCommonCfgTargetCarrierId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCommonCfgSourceTrunkGrpLabel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCommonCfgTable/cvPeerCommonCfgEntry/cvPeerCommonCfgSourceTrunkGrpLabel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCommonCfgTable",
                    "cvPeerCommonCfgEntry",
                    "cvPeerCommonCfgSourceTrunkGrpLabel"
                  ]
                },
                "description": "Retrieve cvPeerCommonCfgSourceTrunkGrpLabel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvPeerCommonCfgTargetTrunkGrpLabel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvPeerCommonCfgTable/cvPeerCommonCfgEntry/cvPeerCommonCfgTargetTrunkGrpLabel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvPeerCommonCfgTable",
                    "cvPeerCommonCfgEntry",
                    "cvPeerCommonCfgTargetTrunkGrpLabel"
                  ]
                },
                "description": "Retrieve cvPeerCommonCfgTargetTrunkGrpLabel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable"
                  ]
                },
                "description": "Retrieve cvCallActiveTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry"
                  ]
                },
                "description": "Retrieve cvCallActiveEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveConnectionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveConnectionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveConnectionId"
                  ]
                },
                "description": "Retrieve cvCallActiveConnectionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveTxDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveTxDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveTxDuration"
                  ]
                },
                "description": "Retrieve cvCallActiveTxDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveVoiceTxDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveVoiceTxDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveVoiceTxDuration"
                  ]
                },
                "description": "Retrieve cvCallActiveVoiceTxDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveFaxTxDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveFaxTxDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveFaxTxDuration"
                  ]
                },
                "description": "Retrieve cvCallActiveFaxTxDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveCoderTypeRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveCoderTypeRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveCoderTypeRate"
                  ]
                },
                "description": "Retrieve cvCallActiveCoderTypeRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveNoiseLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveNoiseLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveNoiseLevel"
                  ]
                },
                "description": "Retrieve cvCallActiveNoiseLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveACOMLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveACOMLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveACOMLevel"
                  ]
                },
                "description": "Retrieve cvCallActiveACOMLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveOutSignalLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveOutSignalLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveOutSignalLevel"
                  ]
                },
                "description": "Retrieve cvCallActiveOutSignalLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveInSignalLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveInSignalLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveInSignalLevel"
                  ]
                },
                "description": "Retrieve cvCallActiveInSignalLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveSessionTarget",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveSessionTarget",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveSessionTarget"
                  ]
                },
                "description": "Retrieve cvCallActiveSessionTarget from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveImgPageCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveImgPageCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveImgPageCount"
                  ]
                },
                "description": "Retrieve cvCallActiveImgPageCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveCallingName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveCallingName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveCallingName"
                  ]
                },
                "description": "Retrieve cvCallActiveCallingName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveCallerIDBlock",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveCallerIDBlock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveCallerIDBlock"
                  ]
                },
                "description": "Retrieve cvCallActiveCallerIDBlock from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveEcanReflectorLocation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveEcanReflectorLocation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveEcanReflectorLocation"
                  ]
                },
                "description": "Retrieve cvCallActiveEcanReflectorLocation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveAccountCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveAccountCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveAccountCode"
                  ]
                },
                "description": "Retrieve cvCallActiveAccountCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveERLLevelRev1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveERLLevelRev1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveERLLevelRev1"
                  ]
                },
                "description": "Retrieve cvCallActiveERLLevelRev1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveCallId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallActiveTable/cvCallActiveEntry/cvCallActiveCallId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallActiveTable",
                    "cvCallActiveEntry",
                    "cvCallActiveCallId"
                  ]
                },
                "description": "Retrieve cvCallActiveCallId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveConnectionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveConnectionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveConnectionId"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveConnectionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveRoundTripDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveRoundTripDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveRoundTripDelay"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveRoundTripDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveSelectedQoS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveSelectedQoS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveSelectedQoS"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveSelectedQoS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveSessionProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveSessionProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveSessionProtocol"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveSessionProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveSessionTarget",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveSessionTarget",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveSessionTarget"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveSessionTarget from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveOnTimeRvPlayout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveOnTimeRvPlayout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveOnTimeRvPlayout"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveOnTimeRvPlayout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveGapFillWithSilence",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveGapFillWithSilence",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveGapFillWithSilence"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveGapFillWithSilence from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveGapFillWithPrediction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveGapFillWithPrediction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveGapFillWithPrediction"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveGapFillWithPrediction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveGapFillWithInterpolation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveGapFillWithInterpolation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveGapFillWithInterpolation"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveGapFillWithInterpolation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveGapFillWithRedundancy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveGapFillWithRedundancy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveGapFillWithRedundancy"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveGapFillWithRedundancy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveHiWaterPlayoutDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveHiWaterPlayoutDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveHiWaterPlayoutDelay"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveHiWaterPlayoutDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveLoWaterPlayoutDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveLoWaterPlayoutDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveLoWaterPlayoutDelay"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveLoWaterPlayoutDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveReceiveDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveReceiveDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveReceiveDelay"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveReceiveDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveLostPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveLostPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveLostPackets"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveLostPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveEarlyPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveEarlyPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveEarlyPackets"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveEarlyPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveLatePackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveLatePackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveLatePackets"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveLatePackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveUsername",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveUsername",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveUsername"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveUsername from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveProtocolCallId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveProtocolCallId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveProtocolCallId"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveProtocolCallId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveRemSigIPAddrT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveRemSigIPAddrT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveRemSigIPAddrT"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveRemSigIPAddrT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveRemSigIPAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveRemSigIPAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveRemSigIPAddr"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveRemSigIPAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveRemSigPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveRemSigPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveRemSigPort"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveRemSigPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveRemMediaIPAddrT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveRemMediaIPAddrT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveRemMediaIPAddrT"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveRemMediaIPAddrT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveRemMediaIPAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveRemMediaIPAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveRemMediaIPAddr"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveRemMediaIPAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveRemMediaPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveRemMediaPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveRemMediaPort"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveRemMediaPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveSRTPEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveSRTPEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveSRTPEnable"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveSRTPEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveOctetAligned",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveOctetAligned",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveOctetAligned"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveOctetAligned from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveBitRates",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveBitRates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveBitRates"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveBitRates from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveModeChgPeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveModeChgPeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveModeChgPeriod"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveModeChgPeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveModeChgNeighbor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveModeChgNeighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveModeChgNeighbor"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveModeChgNeighbor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveMaxPtime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveMaxPtime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveMaxPtime"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveMaxPtime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveCRC",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveCRC",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveCRC"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveCRC from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveRobustSorting",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveRobustSorting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveRobustSorting"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveRobustSorting from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveEncap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveEncap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveEncap"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveEncap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveInterleaving",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveInterleaving",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveInterleaving"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveInterleaving from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActivePtime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActivePtime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActivePtime"
                  ]
                },
                "description": "Retrieve cvVoIPCallActivePtime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveChannels",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveChannels",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveChannels"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveChannels from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveCoderMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveCoderMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveCoderMode"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveCoderMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveCallId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveCallId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveCallId"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveCallId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveCallReferenceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveCallReferenceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveCallReferenceId"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveCallReferenceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccVoIPCallActivePolicyName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/ccVoIPCallActivePolicyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "ccVoIPCallActivePolicyName"
                  ]
                },
                "description": "Retrieve ccVoIPCallActivePolicyName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveReversedDirectionPeerAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveReversedDirectionPeerAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveReversedDirectionPeerAddress"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveReversedDirectionPeerAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveSessionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallActiveTable/cvVoIPCallActiveEntry/cvVoIPCallActiveSessionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallActiveTable",
                    "cvVoIPCallActiveEntry",
                    "cvVoIPCallActiveSessionId"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveSessionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallVolConnTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallVolConnTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallVolConnTable"
                  ]
                },
                "description": "Retrieve cvCallVolConnTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallVolConnEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallVolConnTable/cvCallVolConnEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallVolConnTable",
                    "cvCallVolConnEntry"
                  ]
                },
                "description": "Retrieve cvCallVolConnEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallVolConnIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallVolConnTable/cvCallVolConnEntry/cvCallVolConnIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallVolConnTable",
                    "cvCallVolConnEntry",
                    "cvCallVolConnIndex"
                  ]
                },
                "description": "Retrieve cvCallVolConnIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallVolConnActiveConnection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallVolConnTable/cvCallVolConnEntry/cvCallVolConnActiveConnection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallVolConnTable",
                    "cvCallVolConnEntry",
                    "cvCallVolConnActiveConnection"
                  ]
                },
                "description": "Retrieve cvCallVolConnActiveConnection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallVolIfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallVolIfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallVolIfTable"
                  ]
                },
                "description": "Retrieve cvCallVolIfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallVolIfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallVolIfTable/cvCallVolIfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallVolIfTable",
                    "cvCallVolIfEntry"
                  ]
                },
                "description": "Retrieve cvCallVolIfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallVolIfTable/cvCallVolIfEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallVolIfTable",
                    "cvCallVolIfEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallVolMediaIncomingCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallVolIfTable/cvCallVolIfEntry/cvCallVolMediaIncomingCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallVolIfTable",
                    "cvCallVolIfEntry",
                    "cvCallVolMediaIncomingCalls"
                  ]
                },
                "description": "Retrieve cvCallVolMediaIncomingCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallVolMediaOutgoingCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallVolIfTable/cvCallVolIfEntry/cvCallVolMediaOutgoingCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallVolIfTable",
                    "cvCallVolIfEntry",
                    "cvCallVolMediaOutgoingCalls"
                  ]
                },
                "description": "Retrieve cvCallVolMediaOutgoingCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallHistoryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallHistoryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallHistoryTable"
                  ]
                },
                "description": "Retrieve cvCallHistoryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallHistoryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallHistoryTable/cvCallHistoryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallHistoryTable",
                    "cvCallHistoryEntry"
                  ]
                },
                "description": "Retrieve cvCallHistoryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallHistoryTable/cvCallHistoryEntry/cCallHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallHistoryTable",
                    "cvCallHistoryEntry",
                    "cCallHistoryIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallHistoryConnectionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallHistoryTable/cvCallHistoryEntry/cvCallHistoryConnectionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallHistoryTable",
                    "cvCallHistoryEntry",
                    "cvCallHistoryConnectionId"
                  ]
                },
                "description": "Retrieve cvCallHistoryConnectionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallHistoryTxDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallHistoryTable/cvCallHistoryEntry/cvCallHistoryTxDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallHistoryTable",
                    "cvCallHistoryEntry",
                    "cvCallHistoryTxDuration"
                  ]
                },
                "description": "Retrieve cvCallHistoryTxDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallHistoryVoiceTxDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallHistoryTable/cvCallHistoryEntry/cvCallHistoryVoiceTxDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallHistoryTable",
                    "cvCallHistoryEntry",
                    "cvCallHistoryVoiceTxDuration"
                  ]
                },
                "description": "Retrieve cvCallHistoryVoiceTxDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallHistoryFaxTxDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallHistoryTable/cvCallHistoryEntry/cvCallHistoryFaxTxDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallHistoryTable",
                    "cvCallHistoryEntry",
                    "cvCallHistoryFaxTxDuration"
                  ]
                },
                "description": "Retrieve cvCallHistoryFaxTxDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallHistoryCoderTypeRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallHistoryTable/cvCallHistoryEntry/cvCallHistoryCoderTypeRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallHistoryTable",
                    "cvCallHistoryEntry",
                    "cvCallHistoryCoderTypeRate"
                  ]
                },
                "description": "Retrieve cvCallHistoryCoderTypeRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallHistoryNoiseLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallHistoryTable/cvCallHistoryEntry/cvCallHistoryNoiseLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallHistoryTable",
                    "cvCallHistoryEntry",
                    "cvCallHistoryNoiseLevel"
                  ]
                },
                "description": "Retrieve cvCallHistoryNoiseLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallHistoryACOMLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallHistoryTable/cvCallHistoryEntry/cvCallHistoryACOMLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallHistoryTable",
                    "cvCallHistoryEntry",
                    "cvCallHistoryACOMLevel"
                  ]
                },
                "description": "Retrieve cvCallHistoryACOMLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallHistorySessionTarget",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallHistoryTable/cvCallHistoryEntry/cvCallHistorySessionTarget",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallHistoryTable",
                    "cvCallHistoryEntry",
                    "cvCallHistorySessionTarget"
                  ]
                },
                "description": "Retrieve cvCallHistorySessionTarget from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallHistoryImgPageCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallHistoryTable/cvCallHistoryEntry/cvCallHistoryImgPageCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallHistoryTable",
                    "cvCallHistoryEntry",
                    "cvCallHistoryImgPageCount"
                  ]
                },
                "description": "Retrieve cvCallHistoryImgPageCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallHistoryCallingName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallHistoryTable/cvCallHistoryEntry/cvCallHistoryCallingName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallHistoryTable",
                    "cvCallHistoryEntry",
                    "cvCallHistoryCallingName"
                  ]
                },
                "description": "Retrieve cvCallHistoryCallingName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallHistoryCallerIDBlock",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallHistoryTable/cvCallHistoryEntry/cvCallHistoryCallerIDBlock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallHistoryTable",
                    "cvCallHistoryEntry",
                    "cvCallHistoryCallerIDBlock"
                  ]
                },
                "description": "Retrieve cvCallHistoryCallerIDBlock from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallHistoryAccountCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallHistoryTable/cvCallHistoryEntry/cvCallHistoryAccountCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallHistoryTable",
                    "cvCallHistoryEntry",
                    "cvCallHistoryAccountCode"
                  ]
                },
                "description": "Retrieve cvCallHistoryAccountCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallHistoryCallId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallHistoryTable/cvCallHistoryEntry/cvCallHistoryCallId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallHistoryTable",
                    "cvCallHistoryEntry",
                    "cvCallHistoryCallId"
                  ]
                },
                "description": "Retrieve cvCallHistoryCallId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cCallHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cCallHistoryIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryConnectionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryConnectionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryConnectionId"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryConnectionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryRoundTripDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryRoundTripDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryRoundTripDelay"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryRoundTripDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistorySelectedQoS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistorySelectedQoS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistorySelectedQoS"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistorySelectedQoS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistorySessionProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistorySessionProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistorySessionProtocol"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistorySessionProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistorySessionTarget",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistorySessionTarget",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistorySessionTarget"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistorySessionTarget from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryOnTimeRvPlayout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryOnTimeRvPlayout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryOnTimeRvPlayout"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryOnTimeRvPlayout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryGapFillWithSilence",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryGapFillWithSilence",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryGapFillWithSilence"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryGapFillWithSilence from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryGapFillWithPrediction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryGapFillWithPrediction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryGapFillWithPrediction"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryGapFillWithPrediction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryGapFillWithInterpolation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryGapFillWithInterpolation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryGapFillWithInterpolation"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryGapFillWithInterpolation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryGapFillWithRedundancy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryGapFillWithRedundancy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryGapFillWithRedundancy"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryGapFillWithRedundancy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryHiWaterPlayoutDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryHiWaterPlayoutDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryHiWaterPlayoutDelay"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryHiWaterPlayoutDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryLoWaterPlayoutDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryLoWaterPlayoutDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryLoWaterPlayoutDelay"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryLoWaterPlayoutDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryReceiveDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryReceiveDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryReceiveDelay"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryReceiveDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryIcpif",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryIcpif",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryIcpif"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryIcpif from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryLostPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryLostPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryLostPackets"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryLostPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryEarlyPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryEarlyPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryEarlyPackets"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryEarlyPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryLatePackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryLatePackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryLatePackets"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryLatePackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryUsername",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryUsername",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryUsername"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryUsername from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryProtocolCallId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryProtocolCallId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryProtocolCallId"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryProtocolCallId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryRemSigIPAddrT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryRemSigIPAddrT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryRemSigIPAddrT"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryRemSigIPAddrT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryRemSigIPAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryRemSigIPAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryRemSigIPAddr"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryRemSigIPAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryRemSigPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryRemSigPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryRemSigPort"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryRemSigPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryRemMediaIPAddrT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryRemMediaIPAddrT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryRemMediaIPAddrT"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryRemMediaIPAddrT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryRemMediaIPAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryRemMediaIPAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryRemMediaIPAddr"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryRemMediaIPAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryRemMediaPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryRemMediaPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryRemMediaPort"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryRemMediaPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistorySRTPEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistorySRTPEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistorySRTPEnable"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistorySRTPEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryFallbackIcpif",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryFallbackIcpif",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryFallbackIcpif"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryFallbackIcpif from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryFallbackLoss",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryFallbackLoss",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryFallbackLoss"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryFallbackLoss from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryFallbackDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryFallbackDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryFallbackDelay"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryFallbackDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryOctetAligned",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryOctetAligned",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryOctetAligned"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryOctetAligned from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryBitRates",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryBitRates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryBitRates"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryBitRates from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryModeChgPeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryModeChgPeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryModeChgPeriod"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryModeChgPeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryModeChgNeighbor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryModeChgNeighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryModeChgNeighbor"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryModeChgNeighbor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryMaxPtime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryMaxPtime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryMaxPtime"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryMaxPtime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryCRC",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryCRC",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryCRC"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryCRC from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryRobustSorting",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryRobustSorting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryRobustSorting"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryRobustSorting from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryEncap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryEncap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryEncap"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryEncap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryInterleaving",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryInterleaving",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryInterleaving"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryInterleaving from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryPtime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryPtime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryPtime"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryPtime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryChannels",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryChannels",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryChannels"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryChannels from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryCoderMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryCoderMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryCoderMode"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryCoderMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryCallId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryCallId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryCallId"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryCallId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryCallReferenceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistoryCallReferenceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistoryCallReferenceId"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryCallReferenceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistorySessionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvVoIPCallHistoryTable/cvVoIPCallHistoryEntry/cvVoIPCallHistorySessionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvVoIPCallHistoryTable",
                    "cvVoIPCallHistoryEntry",
                    "cvVoIPCallHistorySessionId"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistorySessionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRateStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateStatsTable"
                  ]
                },
                "description": "Retrieve cvCallRateStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRateStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateStatsTable/cvCallRateStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateStatsTable",
                    "cvCallRateStatsEntry"
                  ]
                },
                "description": "Retrieve cvCallRateStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRateStatsIntvlDurUnits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateStatsTable/cvCallRateStatsEntry/cvCallRateStatsIntvlDurUnits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateStatsTable",
                    "cvCallRateStatsEntry",
                    "cvCallRateStatsIntvlDurUnits"
                  ]
                },
                "description": "Retrieve cvCallRateStatsIntvlDurUnits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRateStatsIntvlDur",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateStatsTable/cvCallRateStatsEntry/cvCallRateStatsIntvlDur",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateStatsTable",
                    "cvCallRateStatsEntry",
                    "cvCallRateStatsIntvlDur"
                  ]
                },
                "description": "Retrieve cvCallRateStatsIntvlDur from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRateStatsMaxVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateStatsTable/cvCallRateStatsEntry/cvCallRateStatsMaxVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateStatsTable",
                    "cvCallRateStatsEntry",
                    "cvCallRateStatsMaxVal"
                  ]
                },
                "description": "Retrieve cvCallRateStatsMaxVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRateStatsAvgVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateStatsTable/cvCallRateStatsEntry/cvCallRateStatsAvgVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateStatsTable",
                    "cvCallRateStatsEntry",
                    "cvCallRateStatsAvgVal"
                  ]
                },
                "description": "Retrieve cvCallRateStatsAvgVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallLegRateStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallLegRateStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallLegRateStatsTable"
                  ]
                },
                "description": "Retrieve cvCallLegRateStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallLegRateStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallLegRateStatsTable/cvCallLegRateStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallLegRateStatsTable",
                    "cvCallLegRateStatsEntry"
                  ]
                },
                "description": "Retrieve cvCallLegRateStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallLegRateStatsIntvlDurUnits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallLegRateStatsTable/cvCallLegRateStatsEntry/cvCallLegRateStatsIntvlDurUnits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallLegRateStatsTable",
                    "cvCallLegRateStatsEntry",
                    "cvCallLegRateStatsIntvlDurUnits"
                  ]
                },
                "description": "Retrieve cvCallLegRateStatsIntvlDurUnits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallLegRateStatsIntvlDur",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallLegRateStatsTable/cvCallLegRateStatsEntry/cvCallLegRateStatsIntvlDur",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallLegRateStatsTable",
                    "cvCallLegRateStatsEntry",
                    "cvCallLegRateStatsIntvlDur"
                  ]
                },
                "description": "Retrieve cvCallLegRateStatsIntvlDur from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallLegRateStatsMaxVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallLegRateStatsTable/cvCallLegRateStatsEntry/cvCallLegRateStatsMaxVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallLegRateStatsTable",
                    "cvCallLegRateStatsEntry",
                    "cvCallLegRateStatsMaxVal"
                  ]
                },
                "description": "Retrieve cvCallLegRateStatsMaxVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallLegRateStatsAvgVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallLegRateStatsTable/cvCallLegRateStatsEntry/cvCallLegRateStatsAvgVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallLegRateStatsTable",
                    "cvCallLegRateStatsEntry",
                    "cvCallLegRateStatsAvgVal"
                  ]
                },
                "description": "Retrieve cvCallLegRateStatsAvgVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvActiveCallStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvActiveCallStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvActiveCallStatsTable"
                  ]
                },
                "description": "Retrieve cvActiveCallStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvActiveCallStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvActiveCallStatsTable/cvActiveCallStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvActiveCallStatsTable",
                    "cvActiveCallStatsEntry"
                  ]
                },
                "description": "Retrieve cvActiveCallStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvActiveCallStatsIntvlDurUnits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvActiveCallStatsTable/cvActiveCallStatsEntry/cvActiveCallStatsIntvlDurUnits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvActiveCallStatsTable",
                    "cvActiveCallStatsEntry",
                    "cvActiveCallStatsIntvlDurUnits"
                  ]
                },
                "description": "Retrieve cvActiveCallStatsIntvlDurUnits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvActiveCallStatsIntvlDur",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvActiveCallStatsTable/cvActiveCallStatsEntry/cvActiveCallStatsIntvlDur",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvActiveCallStatsTable",
                    "cvActiveCallStatsEntry",
                    "cvActiveCallStatsIntvlDur"
                  ]
                },
                "description": "Retrieve cvActiveCallStatsIntvlDur from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvActiveCallStatsMaxVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvActiveCallStatsTable/cvActiveCallStatsEntry/cvActiveCallStatsMaxVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvActiveCallStatsTable",
                    "cvActiveCallStatsEntry",
                    "cvActiveCallStatsMaxVal"
                  ]
                },
                "description": "Retrieve cvActiveCallStatsMaxVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvActiveCallStatsAvgVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvActiveCallStatsTable/cvActiveCallStatsEntry/cvActiveCallStatsAvgVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvActiveCallStatsTable",
                    "cvActiveCallStatsEntry",
                    "cvActiveCallStatsAvgVal"
                  ]
                },
                "description": "Retrieve cvActiveCallStatsAvgVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallDurationStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallDurationStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallDurationStatsTable"
                  ]
                },
                "description": "Retrieve cvCallDurationStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallDurationStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallDurationStatsTable/cvCallDurationStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallDurationStatsTable",
                    "cvCallDurationStatsEntry"
                  ]
                },
                "description": "Retrieve cvCallDurationStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallDurationStatsIntvlDurUnits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallDurationStatsTable/cvCallDurationStatsEntry/cvCallDurationStatsIntvlDurUnits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallDurationStatsTable",
                    "cvCallDurationStatsEntry",
                    "cvCallDurationStatsIntvlDurUnits"
                  ]
                },
                "description": "Retrieve cvCallDurationStatsIntvlDurUnits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallDurationStatsIntvlDur",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallDurationStatsTable/cvCallDurationStatsEntry/cvCallDurationStatsIntvlDur",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallDurationStatsTable",
                    "cvCallDurationStatsEntry",
                    "cvCallDurationStatsIntvlDur"
                  ]
                },
                "description": "Retrieve cvCallDurationStatsIntvlDur from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallDurationStatsMaxVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallDurationStatsTable/cvCallDurationStatsEntry/cvCallDurationStatsMaxVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallDurationStatsTable",
                    "cvCallDurationStatsEntry",
                    "cvCallDurationStatsMaxVal"
                  ]
                },
                "description": "Retrieve cvCallDurationStatsMaxVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallDurationStatsAvgVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallDurationStatsTable/cvCallDurationStatsEntry/cvCallDurationStatsAvgVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallDurationStatsTable",
                    "cvCallDurationStatsEntry",
                    "cvCallDurationStatsAvgVal"
                  ]
                },
                "description": "Retrieve cvCallDurationStatsAvgVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvSipMsgRateStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateStatsTable"
                  ]
                },
                "description": "Retrieve cvSipMsgRateStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvSipMsgRateStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateStatsTable/cvSipMsgRateStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateStatsTable",
                    "cvSipMsgRateStatsEntry"
                  ]
                },
                "description": "Retrieve cvSipMsgRateStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvSipMsgRateStatsIntvlDurUnits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateStatsTable/cvSipMsgRateStatsEntry/cvSipMsgRateStatsIntvlDurUnits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateStatsTable",
                    "cvSipMsgRateStatsEntry",
                    "cvSipMsgRateStatsIntvlDurUnits"
                  ]
                },
                "description": "Retrieve cvSipMsgRateStatsIntvlDurUnits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvSipMsgRateStatsIntvlDur",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateStatsTable/cvSipMsgRateStatsEntry/cvSipMsgRateStatsIntvlDur",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateStatsTable",
                    "cvSipMsgRateStatsEntry",
                    "cvSipMsgRateStatsIntvlDur"
                  ]
                },
                "description": "Retrieve cvSipMsgRateStatsIntvlDur from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvSipMsgRateStatsMaxVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateStatsTable/cvSipMsgRateStatsEntry/cvSipMsgRateStatsMaxVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateStatsTable",
                    "cvSipMsgRateStatsEntry",
                    "cvSipMsgRateStatsMaxVal"
                  ]
                },
                "description": "Retrieve cvSipMsgRateStatsMaxVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvSipMsgRateStatsAvgVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateStatsTable/cvSipMsgRateStatsEntry/cvSipMsgRateStatsAvgVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateStatsTable",
                    "cvSipMsgRateStatsEntry",
                    "cvSipMsgRateStatsAvgVal"
                  ]
                },
                "description": "Retrieve cvSipMsgRateStatsAvgVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRateWMTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateWMTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateWMTable"
                  ]
                },
                "description": "Retrieve cvCallRateWMTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRateWMEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateWMTable/cvCallRateWMEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateWMTable",
                    "cvCallRateWMEntry"
                  ]
                },
                "description": "Retrieve cvCallRateWMEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRateWMIntvlDurUnits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateWMTable/cvCallRateWMEntry/cvCallRateWMIntvlDurUnits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateWMTable",
                    "cvCallRateWMEntry",
                    "cvCallRateWMIntvlDurUnits"
                  ]
                },
                "description": "Retrieve cvCallRateWMIntvlDurUnits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRateWMIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateWMTable/cvCallRateWMEntry/cvCallRateWMIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateWMTable",
                    "cvCallRateWMEntry",
                    "cvCallRateWMIndex"
                  ]
                },
                "description": "Retrieve cvCallRateWMIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRateWMValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateWMTable/cvCallRateWMEntry/cvCallRateWMValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateWMTable",
                    "cvCallRateWMEntry",
                    "cvCallRateWMValue"
                  ]
                },
                "description": "Retrieve cvCallRateWMValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallRateWMts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallRateWMTable/cvCallRateWMEntry/cvCallRateWMts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallRateWMTable",
                    "cvCallRateWMEntry",
                    "cvCallRateWMts"
                  ]
                },
                "description": "Retrieve cvCallRateWMts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallLegRateWMTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallLegRateWMTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallLegRateWMTable"
                  ]
                },
                "description": "Retrieve cvCallLegRateWMTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallLegRateWMEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallLegRateWMTable/cvCallLegRateWMEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallLegRateWMTable",
                    "cvCallLegRateWMEntry"
                  ]
                },
                "description": "Retrieve cvCallLegRateWMEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallLegRateWMIntvlDurUnits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallLegRateWMTable/cvCallLegRateWMEntry/cvCallLegRateWMIntvlDurUnits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallLegRateWMTable",
                    "cvCallLegRateWMEntry",
                    "cvCallLegRateWMIntvlDurUnits"
                  ]
                },
                "description": "Retrieve cvCallLegRateWMIntvlDurUnits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallLegRateWMIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallLegRateWMTable/cvCallLegRateWMEntry/cvCallLegRateWMIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallLegRateWMTable",
                    "cvCallLegRateWMEntry",
                    "cvCallLegRateWMIndex"
                  ]
                },
                "description": "Retrieve cvCallLegRateWMIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallLegRateWMValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallLegRateWMTable/cvCallLegRateWMEntry/cvCallLegRateWMValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallLegRateWMTable",
                    "cvCallLegRateWMEntry",
                    "cvCallLegRateWMValue"
                  ]
                },
                "description": "Retrieve cvCallLegRateWMValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallLegRateWMts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvCallLegRateWMTable/cvCallLegRateWMEntry/cvCallLegRateWMts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvCallLegRateWMTable",
                    "cvCallLegRateWMEntry",
                    "cvCallLegRateWMts"
                  ]
                },
                "description": "Retrieve cvCallLegRateWMts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvActiveCallWMTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvActiveCallWMTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvActiveCallWMTable"
                  ]
                },
                "description": "Retrieve cvActiveCallWMTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvActiveCallWMEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvActiveCallWMTable/cvActiveCallWMEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvActiveCallWMTable",
                    "cvActiveCallWMEntry"
                  ]
                },
                "description": "Retrieve cvActiveCallWMEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvActiveCallWMIntvlDurUnits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvActiveCallWMTable/cvActiveCallWMEntry/cvActiveCallWMIntvlDurUnits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvActiveCallWMTable",
                    "cvActiveCallWMEntry",
                    "cvActiveCallWMIntvlDurUnits"
                  ]
                },
                "description": "Retrieve cvActiveCallWMIntvlDurUnits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvActiveCallWMIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvActiveCallWMTable/cvActiveCallWMEntry/cvActiveCallWMIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvActiveCallWMTable",
                    "cvActiveCallWMEntry",
                    "cvActiveCallWMIndex"
                  ]
                },
                "description": "Retrieve cvActiveCallWMIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvActiveCallWMValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvActiveCallWMTable/cvActiveCallWMEntry/cvActiveCallWMValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvActiveCallWMTable",
                    "cvActiveCallWMEntry",
                    "cvActiveCallWMValue"
                  ]
                },
                "description": "Retrieve cvActiveCallWMValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvActiveCallWMts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvActiveCallWMTable/cvActiveCallWMEntry/cvActiveCallWMts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvActiveCallWMTable",
                    "cvActiveCallWMEntry",
                    "cvActiveCallWMts"
                  ]
                },
                "description": "Retrieve cvActiveCallWMts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvSipMsgRateWMTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable"
                  ]
                },
                "description": "Retrieve cvSipMsgRateWMTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvSipMsgRateWMEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/cvSipMsgRateWMEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "cvSipMsgRateWMEntry"
                  ]
                },
                "description": "Retrieve cvSipMsgRateWMEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvSipMsgRateWMIntvlDurUnits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/cvSipMsgRateWMEntry/cvSipMsgRateWMIntvlDurUnits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "cvSipMsgRateWMEntry",
                    "cvSipMsgRateWMIntvlDurUnits"
                  ]
                },
                "description": "Retrieve cvSipMsgRateWMIntvlDurUnits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvSipMsgRateWMIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/cvSipMsgRateWMEntry/cvSipMsgRateWMIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "cvSipMsgRateWMEntry",
                    "cvSipMsgRateWMIndex"
                  ]
                },
                "description": "Retrieve cvSipMsgRateWMIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvSipMsgRateWMValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/cvSipMsgRateWMEntry/cvSipMsgRateWMValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "cvSipMsgRateWMEntry",
                    "cvSipMsgRateWMValue"
                  ]
                },
                "description": "Retrieve cvSipMsgRateWMValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvSipMsgRateWMts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/cvSipMsgRateWMEntry/cvSipMsgRateWMts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "cvSipMsgRateWMEntry",
                    "cvSipMsgRateWMts"
                  ]
                },
                "description": "Retrieve cvSipMsgRateWMts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-1/cCallHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-1",
                    "cCallHistoryIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryConnectionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-1/cvVoIPCallHistoryConnectionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-1",
                    "cvVoIPCallHistoryConnectionId"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryConnectionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-2/cCallHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-2",
                    "cCallHistoryIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryIcpif",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-2/cvVoIPCallHistoryIcpif",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-2",
                    "cvVoIPCallHistoryIcpif"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryIcpif from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-3/cCallHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-3",
                    "cCallHistoryIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-4/cCallHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-4",
                    "cCallHistoryIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryCallOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-4/cCallHistoryCallOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-4",
                    "cCallHistoryCallOrigin"
                  ]
                },
                "description": "Retrieve cCallHistoryCallOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-5/cCallHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-5",
                    "cCallHistoryIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallHistoryCoderTypeRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-5/cvCommonDcCallHistoryCoderTypeRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-5",
                    "cvCommonDcCallHistoryCoderTypeRate"
                  ]
                },
                "description": "Retrieve cvCommonDcCallHistoryCoderTypeRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryRemMediaIPAddrT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-3/cvVoIPCallHistoryRemMediaIPAddrT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-3",
                    "cvVoIPCallHistoryRemMediaIPAddrT"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryRemMediaIPAddrT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryRemMediaIPAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-4/cvVoIPCallHistoryRemMediaIPAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-4",
                    "cvVoIPCallHistoryRemMediaIPAddr"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryRemMediaIPAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryCallOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-5/cCallHistoryCallOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-5",
                    "cCallHistoryCallOrigin"
                  ]
                },
                "description": "Retrieve cCallHistoryCallOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-6"
                  ]
                },
                "description": "Retrieve object-6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-6/cCallHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-6",
                    "cCallHistoryIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallHistoryCoderTypeRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-6/cvCommonDcCallHistoryCoderTypeRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-6",
                    "cvCommonDcCallHistoryCoderTypeRate"
                  ]
                },
                "description": "Retrieve cvCommonDcCallHistoryCoderTypeRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveDS0s",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-1/cvCallActiveDS0s",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-1",
                    "cvCallActiveDS0s"
                  ]
                },
                "description": "Retrieve cvCallActiveDS0s from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveDS0sHighThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-2/cvCallActiveDS0sHighThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-2",
                    "cvCallActiveDS0sHighThreshold"
                  ]
                },
                "description": "Retrieve cvCallActiveDS0sHighThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCallActiveDS0sLowThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-2/cvCallActiveDS0sLowThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-2",
                    "cvCallActiveDS0sLowThreshold"
                  ]
                },
                "description": "Retrieve cvCallActiveDS0sLowThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryFallbackIcpif",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-2/cvVoIPCallHistoryFallbackIcpif",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-2",
                    "cvVoIPCallHistoryFallbackIcpif"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryFallbackIcpif from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryFallbackLoss",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-3/cvVoIPCallHistoryFallbackLoss",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-3",
                    "cvVoIPCallHistoryFallbackLoss"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryFallbackLoss from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryFallbackDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-4/cvVoIPCallHistoryFallbackDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-4",
                    "cvVoIPCallHistoryFallbackDelay"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryFallbackDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryRemSigIPAddrT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-5/cvVoIPCallHistoryRemSigIPAddrT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-5",
                    "cvVoIPCallHistoryRemSigIPAddrT"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryRemSigIPAddrT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryRemSigIPAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-6/cvVoIPCallHistoryRemSigIPAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-6",
                    "cvVoIPCallHistoryRemSigIPAddr"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryRemSigIPAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-7",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-7",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-7"
                  ]
                },
                "description": "Retrieve object-7 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-7/cCallHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-7",
                    "cCallHistoryIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryRemMediaIPAddrT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-7/cvVoIPCallHistoryRemMediaIPAddrT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-7",
                    "cvVoIPCallHistoryRemMediaIPAddrT"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryRemMediaIPAddrT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-8",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-8",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-8"
                  ]
                },
                "description": "Retrieve object-8 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-8/cCallHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-8",
                    "cCallHistoryIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallHistoryRemMediaIPAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-8/cvVoIPCallHistoryRemMediaIPAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-8",
                    "cvVoIPCallHistoryRemMediaIPAddr"
                  ]
                },
                "description": "Retrieve cvVoIPCallHistoryRemMediaIPAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-9",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-9",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-9"
                  ]
                },
                "description": "Retrieve object-9 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-9/cCallHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-9",
                    "cCallHistoryIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryCallOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-9/cCallHistoryCallOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-9",
                    "cCallHistoryCallOrigin"
                  ]
                },
                "description": "Retrieve cCallHistoryCallOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-10",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-10",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-10"
                  ]
                },
                "description": "Retrieve object-10 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cCallHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-10/cCallHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-10",
                    "cCallHistoryIndex"
                  ]
                },
                "description": "Retrieve cCallHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvCommonDcCallHistoryCoderTypeRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-10/cvCommonDcCallHistoryCoderTypeRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-10",
                    "cvCommonDcCallHistoryCoderTypeRate"
                  ]
                },
                "description": "Retrieve cvCommonDcCallHistoryCoderTypeRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-1/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-1",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-1/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-1",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ccVoIPCallActivePolicyName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-1/ccVoIPCallActivePolicyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-1",
                    "ccVoIPCallActivePolicyName"
                  ]
                },
                "description": "Retrieve ccVoIPCallActivePolicyName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-2/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-2",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-2/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-2",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvVoIPCallActiveReversedDirectionPeerAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-2/cvVoIPCallActiveReversedDirectionPeerAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-2",
                    "cvVoIPCallActiveReversedDirectionPeerAddress"
                  ]
                },
                "description": "Retrieve cvVoIPCallActiveReversedDirectionPeerAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-3/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-3",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-3/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-3",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActivePeerId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-3/callActivePeerId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-3",
                    "callActivePeerId"
                  ]
                },
                "description": "Retrieve callActivePeerId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-4/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-4",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-4/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-4",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActivePeerAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB/cvSipMsgRateWMTable/object-4/callActivePeerAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DIAL-CONTROL-MIB:CISCO-VOICE-DIAL-CONTROL-MIB",
                    "cvSipMsgRateWMTable",
                    "object-4",
                    "callActivePeerAddress"
                  ]
                },
                "description": "Retrieve callActivePeerAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-VOICE-DNIS-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-VOICE-DNIS-MIB\n\nMIB data from `CISCO-VOICE-DNIS-MIB` module.\n\n**Root containers:** 1 (CISCO-VOICE-DNIS-MIB)\n**Paths:** 21 | **Descendants:** 20\n\nAll endpoints are read-only (GET).\n\nEndpoints: 21 | Operations: 21",
          "item": [
            {
              "name": "GET Get CISCO-VOICE-DNIS-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB"
                  ]
                },
                "description": "Retrieve CISCO-VOICE-DNIS-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisMappingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisMappingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisMappingTable"
                  ]
                },
                "description": "Retrieve cvDnisMappingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisMappingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisMappingTable/cvDnisMappingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisMappingTable",
                    "cvDnisMappingEntry"
                  ]
                },
                "description": "Retrieve cvDnisMappingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisMappingName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisMappingTable/cvDnisMappingEntry/cvDnisMappingName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisMappingTable",
                    "cvDnisMappingEntry",
                    "cvDnisMappingName"
                  ]
                },
                "description": "Retrieve cvDnisMappingName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisMappingUrl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisMappingTable/cvDnisMappingEntry/cvDnisMappingUrl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisMappingTable",
                    "cvDnisMappingEntry",
                    "cvDnisMappingUrl"
                  ]
                },
                "description": "Retrieve cvDnisMappingUrl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisMappingRefresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisMappingTable/cvDnisMappingEntry/cvDnisMappingRefresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisMappingTable",
                    "cvDnisMappingEntry",
                    "cvDnisMappingRefresh"
                  ]
                },
                "description": "Retrieve cvDnisMappingRefresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisMappingUrlAccessError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisMappingTable/cvDnisMappingEntry/cvDnisMappingUrlAccessError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisMappingTable",
                    "cvDnisMappingEntry",
                    "cvDnisMappingUrlAccessError"
                  ]
                },
                "description": "Retrieve cvDnisMappingUrlAccessError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisMappingStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisMappingTable/cvDnisMappingEntry/cvDnisMappingStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisMappingTable",
                    "cvDnisMappingEntry",
                    "cvDnisMappingStatus"
                  ]
                },
                "description": "Retrieve cvDnisMappingStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisNodeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisNodeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisNodeTable"
                  ]
                },
                "description": "Retrieve cvDnisNodeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisNodeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisNodeTable/cvDnisNodeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisNodeTable",
                    "cvDnisNodeEntry"
                  ]
                },
                "description": "Retrieve cvDnisNodeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisMappingName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisNodeTable/cvDnisNodeEntry/cvDnisMappingName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisNodeTable",
                    "cvDnisNodeEntry",
                    "cvDnisMappingName"
                  ]
                },
                "description": "Retrieve cvDnisMappingName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisNodeTable/cvDnisNodeEntry/cvDnisNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisNodeTable",
                    "cvDnisNodeEntry",
                    "cvDnisNumber"
                  ]
                },
                "description": "Retrieve cvDnisNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisNodeUrl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisNodeTable/cvDnisNodeEntry/cvDnisNodeUrl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisNodeTable",
                    "cvDnisNodeEntry",
                    "cvDnisNodeUrl"
                  ]
                },
                "description": "Retrieve cvDnisNodeUrl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisNodeModifiable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisNodeTable/cvDnisNodeEntry/cvDnisNodeModifiable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisNodeTable",
                    "cvDnisNodeEntry",
                    "cvDnisNodeModifiable"
                  ]
                },
                "description": "Retrieve cvDnisNodeModifiable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisNodeStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisNodeTable/cvDnisNodeEntry/cvDnisNodeStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisNodeTable",
                    "cvDnisNodeEntry",
                    "cvDnisNodeStatus"
                  ]
                },
                "description": "Retrieve cvDnisNodeStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisNodeTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisNodeTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisMappingName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisNodeTable/object-1/cvDnisMappingName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisNodeTable",
                    "object-1",
                    "cvDnisMappingName"
                  ]
                },
                "description": "Retrieve cvDnisMappingName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisMappingUrl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisNodeTable/object-1/cvDnisMappingUrl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisNodeTable",
                    "object-1",
                    "cvDnisMappingUrl"
                  ]
                },
                "description": "Retrieve cvDnisMappingUrl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisNodeTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisNodeTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisMappingName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisNodeTable/object-2/cvDnisMappingName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisNodeTable",
                    "object-2",
                    "cvDnisMappingName"
                  ]
                },
                "description": "Retrieve cvDnisMappingName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvDnisMappingUrlAccessError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB/cvDnisNodeTable/object-2/cvDnisMappingUrlAccessError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VOICE-DNIS-MIB:CISCO-VOICE-DNIS-MIB",
                    "cvDnisNodeTable",
                    "object-2",
                    "cvDnisMappingUrlAccessError"
                  ]
                },
                "description": "Retrieve cvDnisMappingUrlAccessError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-VPDN-MGMT-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-VPDN-MGMT-MIB\n\nMIB data from `CISCO-VPDN-MGMT-MIB` module.\n\n**Root containers:** 1 (CISCO-VPDN-MGMT-MIB)\n**Paths:** 160 | **Descendants:** 159\n\nAll endpoints are read-only (GET).\n\nEndpoints: 160 | Operations: 160",
          "item": [
            {
              "name": "GET Get CISCO-VPDN-MGMT-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB"
                  ]
                },
                "description": "Retrieve CISCO-VPDN-MGMT-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ciscoVpdnMgmtMIBNotifs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/ciscoVpdnMgmtMIBNotifs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "ciscoVpdnMgmtMIBNotifs"
                  ]
                },
                "description": "Retrieve ciscoVpdnMgmtMIBNotifs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnNotifSessionID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/ciscoVpdnMgmtMIBNotifs/cvpdnNotifSessionID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "ciscoVpdnMgmtMIBNotifs",
                    "cvpdnNotifSessionID"
                  ]
                },
                "description": "Retrieve cvpdnNotifSessionID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnNotifSessionEvent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/ciscoVpdnMgmtMIBNotifs/cvpdnNotifSessionEvent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "ciscoVpdnMgmtMIBNotifs",
                    "cvpdnNotifSessionEvent"
                  ]
                },
                "description": "Retrieve cvpdnNotifSessionEvent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSystemInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSystemInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSystemInfo"
                  ]
                },
                "description": "Retrieve cvpdnSystemInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSystemInfo/cvpdnTunnelTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSystemInfo",
                    "cvpdnTunnelTotal"
                  ]
                },
                "description": "Retrieve cvpdnTunnelTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSystemInfo/cvpdnSessionTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSystemInfo",
                    "cvpdnSessionTotal"
                  ]
                },
                "description": "Retrieve cvpdnSessionTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnDeniedUsersTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSystemInfo/cvpdnDeniedUsersTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSystemInfo",
                    "cvpdnDeniedUsersTotal"
                  ]
                },
                "description": "Retrieve cvpdnDeniedUsersTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSystemNotifSessionEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSystemInfo/cvpdnSystemNotifSessionEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSystemInfo",
                    "cvpdnSystemNotifSessionEnabled"
                  ]
                },
                "description": "Retrieve cvpdnSystemNotifSessionEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSystemClearSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSystemInfo/cvpdnSystemClearSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSystemInfo",
                    "cvpdnSystemClearSessions"
                  ]
                },
                "description": "Retrieve cvpdnSystemClearSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnMultilinkInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnMultilinkInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnMultilinkInfo"
                  ]
                },
                "description": "Retrieve cvpdnMultilinkInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundlesWithOneLink",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnMultilinkInfo/cvpdnBundlesWithOneLink",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnMultilinkInfo",
                    "cvpdnBundlesWithOneLink"
                  ]
                },
                "description": "Retrieve cvpdnBundlesWithOneLink from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundlesWithTwoLinks",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnMultilinkInfo/cvpdnBundlesWithTwoLinks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnMultilinkInfo",
                    "cvpdnBundlesWithTwoLinks"
                  ]
                },
                "description": "Retrieve cvpdnBundlesWithTwoLinks from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundlesWithMoreThanTwoLinks",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnMultilinkInfo/cvpdnBundlesWithMoreThanTwoLinks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnMultilinkInfo",
                    "cvpdnBundlesWithMoreThanTwoLinks"
                  ]
                },
                "description": "Retrieve cvpdnBundlesWithMoreThanTwoLinks from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundleLastChanged",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnMultilinkInfo/cvpdnBundleLastChanged",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnMultilinkInfo",
                    "cvpdnBundleLastChanged"
                  ]
                },
                "description": "Retrieve cvpdnBundleLastChanged from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSystemTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSystemTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSystemTable"
                  ]
                },
                "description": "Retrieve cvpdnSystemTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSystemEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSystemTable/cvpdnSystemEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSystemTable",
                    "cvpdnSystemEntry"
                  ]
                },
                "description": "Retrieve cvpdnSystemEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSystemTunnelType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSystemTable/cvpdnSystemEntry/cvpdnSystemTunnelType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSystemTable",
                    "cvpdnSystemEntry",
                    "cvpdnSystemTunnelType"
                  ]
                },
                "description": "Retrieve cvpdnSystemTunnelType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSystemTunnelTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSystemTable/cvpdnSystemEntry/cvpdnSystemTunnelTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSystemTable",
                    "cvpdnSystemEntry",
                    "cvpdnSystemTunnelTotal"
                  ]
                },
                "description": "Retrieve cvpdnSystemTunnelTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSystemSessionTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSystemTable/cvpdnSystemEntry/cvpdnSystemSessionTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSystemTable",
                    "cvpdnSystemEntry",
                    "cvpdnSystemSessionTotal"
                  ]
                },
                "description": "Retrieve cvpdnSystemSessionTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSystemDeniedUsersTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSystemTable/cvpdnSystemEntry/cvpdnSystemDeniedUsersTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSystemTable",
                    "cvpdnSystemEntry",
                    "cvpdnSystemDeniedUsersTotal"
                  ]
                },
                "description": "Retrieve cvpdnSystemDeniedUsersTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSystemInitialConnReq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSystemTable/cvpdnSystemEntry/cvpdnSystemInitialConnReq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSystemTable",
                    "cvpdnSystemEntry",
                    "cvpdnSystemInitialConnReq"
                  ]
                },
                "description": "Retrieve cvpdnSystemInitialConnReq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSystemSuccessConnReq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSystemTable/cvpdnSystemEntry/cvpdnSystemSuccessConnReq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSystemTable",
                    "cvpdnSystemEntry",
                    "cvpdnSystemSuccessConnReq"
                  ]
                },
                "description": "Retrieve cvpdnSystemSuccessConnReq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSystemFailedConnReq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSystemTable/cvpdnSystemEntry/cvpdnSystemFailedConnReq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSystemTable",
                    "cvpdnSystemEntry",
                    "cvpdnSystemFailedConnReq"
                  ]
                },
                "description": "Retrieve cvpdnSystemFailedConnReq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable"
                  ]
                },
                "description": "Retrieve cvpdnTunnelTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable/cvpdnTunnelEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable",
                    "cvpdnTunnelEntry"
                  ]
                },
                "description": "Retrieve cvpdnTunnelEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelTunnelId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable/cvpdnTunnelEntry/cvpdnTunnelTunnelId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable",
                    "cvpdnTunnelEntry",
                    "cvpdnTunnelTunnelId"
                  ]
                },
                "description": "Retrieve cvpdnTunnelTunnelId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelRemoteTunnelId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable/cvpdnTunnelEntry/cvpdnTunnelRemoteTunnelId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable",
                    "cvpdnTunnelEntry",
                    "cvpdnTunnelRemoteTunnelId"
                  ]
                },
                "description": "Retrieve cvpdnTunnelRemoteTunnelId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelLocalName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable/cvpdnTunnelEntry/cvpdnTunnelLocalName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable",
                    "cvpdnTunnelEntry",
                    "cvpdnTunnelLocalName"
                  ]
                },
                "description": "Retrieve cvpdnTunnelLocalName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelRemoteName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable/cvpdnTunnelEntry/cvpdnTunnelRemoteName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable",
                    "cvpdnTunnelEntry",
                    "cvpdnTunnelRemoteName"
                  ]
                },
                "description": "Retrieve cvpdnTunnelRemoteName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelRemoteEndpointName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable/cvpdnTunnelEntry/cvpdnTunnelRemoteEndpointName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable",
                    "cvpdnTunnelEntry",
                    "cvpdnTunnelRemoteEndpointName"
                  ]
                },
                "description": "Retrieve cvpdnTunnelRemoteEndpointName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelLocalInitConnection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable/cvpdnTunnelEntry/cvpdnTunnelLocalInitConnection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable",
                    "cvpdnTunnelEntry",
                    "cvpdnTunnelLocalInitConnection"
                  ]
                },
                "description": "Retrieve cvpdnTunnelLocalInitConnection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelOrigCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable/cvpdnTunnelEntry/cvpdnTunnelOrigCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable",
                    "cvpdnTunnelEntry",
                    "cvpdnTunnelOrigCause"
                  ]
                },
                "description": "Retrieve cvpdnTunnelOrigCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable/cvpdnTunnelEntry/cvpdnTunnelState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable",
                    "cvpdnTunnelEntry",
                    "cvpdnTunnelState"
                  ]
                },
                "description": "Retrieve cvpdnTunnelState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelActiveSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable/cvpdnTunnelEntry/cvpdnTunnelActiveSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable",
                    "cvpdnTunnelEntry",
                    "cvpdnTunnelActiveSessions"
                  ]
                },
                "description": "Retrieve cvpdnTunnelActiveSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelDeniedUsers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable/cvpdnTunnelEntry/cvpdnTunnelDeniedUsers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable",
                    "cvpdnTunnelEntry",
                    "cvpdnTunnelDeniedUsers"
                  ]
                },
                "description": "Retrieve cvpdnTunnelDeniedUsers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSoftshut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable/cvpdnTunnelEntry/cvpdnTunnelSoftshut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable",
                    "cvpdnTunnelEntry",
                    "cvpdnTunnelSoftshut"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSoftshut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelNetworkServiceType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable/cvpdnTunnelEntry/cvpdnTunnelNetworkServiceType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable",
                    "cvpdnTunnelEntry",
                    "cvpdnTunnelNetworkServiceType"
                  ]
                },
                "description": "Retrieve cvpdnTunnelNetworkServiceType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelLocalIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable/cvpdnTunnelEntry/cvpdnTunnelLocalIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable",
                    "cvpdnTunnelEntry",
                    "cvpdnTunnelLocalIpAddress"
                  ]
                },
                "description": "Retrieve cvpdnTunnelLocalIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSourceIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable/cvpdnTunnelEntry/cvpdnTunnelSourceIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable",
                    "cvpdnTunnelEntry",
                    "cvpdnTunnelSourceIpAddress"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSourceIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelRemoteIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelTable/cvpdnTunnelEntry/cvpdnTunnelRemoteIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelTable",
                    "cvpdnTunnelEntry",
                    "cvpdnTunnelRemoteIpAddress"
                  ]
                },
                "description": "Retrieve cvpdnTunnelRemoteIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSystemTunnelType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnSystemTunnelType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnSystemTunnelType"
                  ]
                },
                "description": "Retrieve cvpdnSystemTunnelType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrTunnelId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrTunnelId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrTunnelId"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrTunnelId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrRemoteTunnelId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrRemoteTunnelId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrRemoteTunnelId"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrRemoteTunnelId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrLocalName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrLocalName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrLocalName"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrLocalName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrRemoteName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrRemoteName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrRemoteName"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrRemoteName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrRemoteEndpointName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrRemoteEndpointName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrRemoteEndpointName"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrRemoteEndpointName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrLocalInitConnection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrLocalInitConnection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrLocalInitConnection"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrLocalInitConnection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrOrigCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrOrigCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrOrigCause"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrOrigCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrState"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrActiveSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrActiveSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrActiveSessions"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrActiveSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrDeniedUsers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrDeniedUsers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrDeniedUsers"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrDeniedUsers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrSoftshut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrSoftshut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrSoftshut"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrSoftshut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrNetworkServiceType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrNetworkServiceType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrNetworkServiceType"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrNetworkServiceType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrLocalInetAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrLocalInetAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrLocalInetAddressType"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrLocalInetAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrLocalInetAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrLocalInetAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrLocalInetAddress"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrLocalInetAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrSourceInetAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrSourceInetAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrSourceInetAddressType"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrSourceInetAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrSourceInetAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrSourceInetAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrSourceInetAddress"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrSourceInetAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrRemoteInetAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrRemoteInetAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrRemoteInetAddressType"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrRemoteInetAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrRemoteInetAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelAttrTable/cvpdnTunnelAttrEntry/cvpdnTunnelAttrRemoteInetAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelAttrTable",
                    "cvpdnTunnelAttrEntry",
                    "cvpdnTunnelAttrRemoteInetAddress"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrRemoteInetAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelTunnelId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelTunnelId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelTunnelId"
                  ]
                },
                "description": "Retrieve cvpdnTunnelTunnelId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionId"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionUserName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionUserName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionUserName"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionUserName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionState"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionCallDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionCallDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionCallDuration"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionCallDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionPacketsOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionPacketsOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionPacketsOut"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionPacketsOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionBytesOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionBytesOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionBytesOut"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionBytesOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionPacketsIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionPacketsIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionPacketsIn"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionPacketsIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionBytesIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionBytesIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionBytesIn"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionBytesIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionDeviceType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionDeviceType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionDeviceType"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionDeviceType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionDeviceCallerId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionDeviceCallerId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionDeviceCallerId"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionDeviceCallerId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionDevicePhyId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionDevicePhyId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionDevicePhyId"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionDevicePhyId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionMultilink",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionMultilink",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionMultilink"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionMultilink from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionModemSlotIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionModemSlotIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionModemSlotIndex"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionModemSlotIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionModemPortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionModemPortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionModemPortIndex"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionModemPortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionDS1SlotIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionDS1SlotIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionDS1SlotIndex"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionDS1SlotIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionDS1PortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionDS1PortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionDS1PortIndex"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionDS1PortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionDS1ChannelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionDS1ChannelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionDS1ChannelIndex"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionDS1ChannelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionModemCallStartTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionModemCallStartTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionModemCallStartTime"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionModemCallStartTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelSessionModemCallStartIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTunnelSessionTable/cvpdnTunnelSessionEntry/cvpdnTunnelSessionModemCallStartIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTunnelSessionTable",
                    "cvpdnTunnelSessionEntry",
                    "cvpdnTunnelSessionModemCallStartIndex"
                  ]
                },
                "description": "Retrieve cvpdnTunnelSessionModemCallStartIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSystemTunnelType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSystemTunnelType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSystemTunnelType"
                  ]
                },
                "description": "Retrieve cvpdnSystemTunnelType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrTunnelId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnTunnelAttrTunnelId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnTunnelAttrTunnelId"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrTunnelId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrSessionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrSessionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrSessionId"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrSessionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrUserName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrUserName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrUserName"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrUserName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrState"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrCallDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrCallDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrCallDuration"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrCallDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrPacketsOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrPacketsOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrPacketsOut"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrPacketsOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrBytesOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrBytesOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrBytesOut"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrBytesOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrPacketsIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrPacketsIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrPacketsIn"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrPacketsIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrBytesIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrBytesIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrBytesIn"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrBytesIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrDeviceType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrDeviceType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrDeviceType"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrDeviceType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrDeviceCallerId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrDeviceCallerId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrDeviceCallerId"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrDeviceCallerId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrDevicePhyId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrDevicePhyId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrDevicePhyId"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrDevicePhyId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrMultilink",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrMultilink",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrMultilink"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrMultilink from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrModemSlotIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrModemSlotIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrModemSlotIndex"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrModemSlotIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrModemPortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrModemPortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrModemPortIndex"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrModemPortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrDS1SlotIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrDS1SlotIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrDS1SlotIndex"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrDS1SlotIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrDS1PortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrDS1PortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrDS1PortIndex"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrDS1PortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrDS1ChannelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrDS1ChannelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrDS1ChannelIndex"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrDS1ChannelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrModemCallStartTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrModemCallStartTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrModemCallStartTime"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrModemCallStartTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrModemCallStartIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrModemCallStartIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrModemCallStartIndex"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrModemCallStartIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrVirtualCircuitID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrVirtualCircuitID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrVirtualCircuitID"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrVirtualCircuitID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrSentPktsDropped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrSentPktsDropped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrSentPktsDropped"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrSentPktsDropped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrRecvPktsDropped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrRecvPktsDropped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrRecvPktsDropped"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrRecvPktsDropped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrMultilinkBundle",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrMultilinkBundle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrMultilinkBundle"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrMultilinkBundle from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrMultilinkIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnSessionAttrTable/cvpdnSessionAttrEntry/cvpdnSessionAttrMultilinkIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnSessionAttrTable",
                    "cvpdnSessionAttrEntry",
                    "cvpdnSessionAttrMultilinkIfIndex"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrMultilinkIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnUserToFailHistInfoTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnUserToFailHistInfoTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnUserToFailHistInfoTable"
                  ]
                },
                "description": "Retrieve cvpdnUserToFailHistInfoTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnUserToFailHistInfoEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnUserToFailHistInfoTable/cvpdnUserToFailHistInfoEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnUserToFailHistInfoTable",
                    "cvpdnUserToFailHistInfoEntry"
                  ]
                },
                "description": "Retrieve cvpdnUserToFailHistInfoEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnUnameToFailHistUname",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnUserToFailHistInfoTable/cvpdnUserToFailHistInfoEntry/cvpdnUnameToFailHistUname",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnUserToFailHistInfoTable",
                    "cvpdnUserToFailHistInfoEntry",
                    "cvpdnUnameToFailHistUname"
                  ]
                },
                "description": "Retrieve cvpdnUnameToFailHistUname from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnUnameToFailHistTunnelId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnUserToFailHistInfoTable/cvpdnUserToFailHistInfoEntry/cvpdnUnameToFailHistTunnelId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnUserToFailHistInfoTable",
                    "cvpdnUserToFailHistInfoEntry",
                    "cvpdnUnameToFailHistTunnelId"
                  ]
                },
                "description": "Retrieve cvpdnUnameToFailHistTunnelId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnUnameToFailHistUserId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnUserToFailHistInfoTable/cvpdnUserToFailHistInfoEntry/cvpdnUnameToFailHistUserId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnUserToFailHistInfoTable",
                    "cvpdnUserToFailHistInfoEntry",
                    "cvpdnUnameToFailHistUserId"
                  ]
                },
                "description": "Retrieve cvpdnUnameToFailHistUserId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnUnameToFailHistLocalInitConn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnUserToFailHistInfoTable/cvpdnUserToFailHistInfoEntry/cvpdnUnameToFailHistLocalInitConn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnUserToFailHistInfoTable",
                    "cvpdnUserToFailHistInfoEntry",
                    "cvpdnUnameToFailHistLocalInitConn"
                  ]
                },
                "description": "Retrieve cvpdnUnameToFailHistLocalInitConn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnUnameToFailHistLocalName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnUserToFailHistInfoTable/cvpdnUserToFailHistInfoEntry/cvpdnUnameToFailHistLocalName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnUserToFailHistInfoTable",
                    "cvpdnUserToFailHistInfoEntry",
                    "cvpdnUnameToFailHistLocalName"
                  ]
                },
                "description": "Retrieve cvpdnUnameToFailHistLocalName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnUnameToFailHistRemoteName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnUserToFailHistInfoTable/cvpdnUserToFailHistInfoEntry/cvpdnUnameToFailHistRemoteName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnUserToFailHistInfoTable",
                    "cvpdnUserToFailHistInfoEntry",
                    "cvpdnUnameToFailHistRemoteName"
                  ]
                },
                "description": "Retrieve cvpdnUnameToFailHistRemoteName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnUnameToFailHistCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnUserToFailHistInfoTable/cvpdnUserToFailHistInfoEntry/cvpdnUnameToFailHistCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnUserToFailHistInfoTable",
                    "cvpdnUserToFailHistInfoEntry",
                    "cvpdnUnameToFailHistCount"
                  ]
                },
                "description": "Retrieve cvpdnUnameToFailHistCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnUnameToFailHistFailTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnUserToFailHistInfoTable/cvpdnUserToFailHistInfoEntry/cvpdnUnameToFailHistFailTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnUserToFailHistInfoTable",
                    "cvpdnUserToFailHistInfoEntry",
                    "cvpdnUnameToFailHistFailTime"
                  ]
                },
                "description": "Retrieve cvpdnUnameToFailHistFailTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnUnameToFailHistFailType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnUserToFailHistInfoTable/cvpdnUserToFailHistInfoEntry/cvpdnUnameToFailHistFailType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnUserToFailHistInfoTable",
                    "cvpdnUserToFailHistInfoEntry",
                    "cvpdnUnameToFailHistFailType"
                  ]
                },
                "description": "Retrieve cvpdnUnameToFailHistFailType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnUnameToFailHistFailReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnUserToFailHistInfoTable/cvpdnUserToFailHistInfoEntry/cvpdnUnameToFailHistFailReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnUserToFailHistInfoTable",
                    "cvpdnUserToFailHistInfoEntry",
                    "cvpdnUnameToFailHistFailReason"
                  ]
                },
                "description": "Retrieve cvpdnUnameToFailHistFailReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnUnameToFailHistSourceInetType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnUserToFailHistInfoTable/cvpdnUserToFailHistInfoEntry/cvpdnUnameToFailHistSourceInetType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnUserToFailHistInfoTable",
                    "cvpdnUserToFailHistInfoEntry",
                    "cvpdnUnameToFailHistSourceInetType"
                  ]
                },
                "description": "Retrieve cvpdnUnameToFailHistSourceInetType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnUnameToFailHistSourceInetAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnUserToFailHistInfoTable/cvpdnUserToFailHistInfoEntry/cvpdnUnameToFailHistSourceInetAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnUserToFailHistInfoTable",
                    "cvpdnUserToFailHistInfoEntry",
                    "cvpdnUnameToFailHistSourceInetAddr"
                  ]
                },
                "description": "Retrieve cvpdnUnameToFailHistSourceInetAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnUnameToFailHistDestInetType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnUserToFailHistInfoTable/cvpdnUserToFailHistInfoEntry/cvpdnUnameToFailHistDestInetType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnUserToFailHistInfoTable",
                    "cvpdnUserToFailHistInfoEntry",
                    "cvpdnUnameToFailHistDestInetType"
                  ]
                },
                "description": "Retrieve cvpdnUnameToFailHistDestInetType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnUnameToFailHistDestInetAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnUserToFailHistInfoTable/cvpdnUserToFailHistInfoEntry/cvpdnUnameToFailHistDestInetAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnUserToFailHistInfoTable",
                    "cvpdnUserToFailHistInfoEntry",
                    "cvpdnUnameToFailHistDestInetAddr"
                  ]
                },
                "description": "Retrieve cvpdnUnameToFailHistDestInetAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTemplateTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTemplateTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTemplateTable"
                  ]
                },
                "description": "Retrieve cvpdnTemplateTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTemplateEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTemplateTable/cvpdnTemplateEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTemplateTable",
                    "cvpdnTemplateEntry"
                  ]
                },
                "description": "Retrieve cvpdnTemplateEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTemplateName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTemplateTable/cvpdnTemplateEntry/cvpdnTemplateName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTemplateTable",
                    "cvpdnTemplateEntry",
                    "cvpdnTemplateName"
                  ]
                },
                "description": "Retrieve cvpdnTemplateName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTemplateActiveSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnTemplateTable/cvpdnTemplateEntry/cvpdnTemplateActiveSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnTemplateTable",
                    "cvpdnTemplateEntry",
                    "cvpdnTemplateActiveSessions"
                  ]
                },
                "description": "Retrieve cvpdnTemplateActiveSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundleTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleTable"
                  ]
                },
                "description": "Retrieve cvpdnBundleTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundleEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleTable/cvpdnBundleEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleTable",
                    "cvpdnBundleEntry"
                  ]
                },
                "description": "Retrieve cvpdnBundleEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundleName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleTable/cvpdnBundleEntry/cvpdnBundleName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleTable",
                    "cvpdnBundleEntry",
                    "cvpdnBundleName"
                  ]
                },
                "description": "Retrieve cvpdnBundleName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundleLinkCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleTable/cvpdnBundleEntry/cvpdnBundleLinkCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleTable",
                    "cvpdnBundleEntry",
                    "cvpdnBundleLinkCount"
                  ]
                },
                "description": "Retrieve cvpdnBundleLinkCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundleEndpoint",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleTable/cvpdnBundleEntry/cvpdnBundleEndpoint",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleTable",
                    "cvpdnBundleEntry",
                    "cvpdnBundleEndpoint"
                  ]
                },
                "description": "Retrieve cvpdnBundleEndpoint from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundlePeerIpAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleTable/cvpdnBundleEntry/cvpdnBundlePeerIpAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleTable",
                    "cvpdnBundleEntry",
                    "cvpdnBundlePeerIpAddrType"
                  ]
                },
                "description": "Retrieve cvpdnBundlePeerIpAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundlePeerIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleTable/cvpdnBundleEntry/cvpdnBundlePeerIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleTable",
                    "cvpdnBundleEntry",
                    "cvpdnBundlePeerIpAddr"
                  ]
                },
                "description": "Retrieve cvpdnBundlePeerIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundleEndpointClass",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleTable/cvpdnBundleEntry/cvpdnBundleEndpointClass",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleTable",
                    "cvpdnBundleEntry",
                    "cvpdnBundleEndpointClass"
                  ]
                },
                "description": "Retrieve cvpdnBundleEndpointClass from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundleChildTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable"
                  ]
                },
                "description": "Retrieve cvpdnBundleChildTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundleChildEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/cvpdnBundleChildEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "cvpdnBundleChildEntry"
                  ]
                },
                "description": "Retrieve cvpdnBundleChildEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundleName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/cvpdnBundleChildEntry/cvpdnBundleName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "cvpdnBundleChildEntry",
                    "cvpdnBundleName"
                  ]
                },
                "description": "Retrieve cvpdnBundleName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundleChildTunnelType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/cvpdnBundleChildEntry/cvpdnBundleChildTunnelType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "cvpdnBundleChildEntry",
                    "cvpdnBundleChildTunnelType"
                  ]
                },
                "description": "Retrieve cvpdnBundleChildTunnelType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundleChildTunnelId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/cvpdnBundleChildEntry/cvpdnBundleChildTunnelId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "cvpdnBundleChildEntry",
                    "cvpdnBundleChildTunnelId"
                  ]
                },
                "description": "Retrieve cvpdnBundleChildTunnelId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnBundleChildSessionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/cvpdnBundleChildEntry/cvpdnBundleChildSessionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "cvpdnBundleChildEntry",
                    "cvpdnBundleChildSessionId"
                  ]
                },
                "description": "Retrieve cvpdnBundleChildSessionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnNotifSessionID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/object-1/cvpdnNotifSessionID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "object-1",
                    "cvpdnNotifSessionID"
                  ]
                },
                "description": "Retrieve cvpdnNotifSessionID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnNotifSessionEvent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/object-2/cvpdnNotifSessionEvent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "object-2",
                    "cvpdnNotifSessionEvent"
                  ]
                },
                "description": "Retrieve cvpdnNotifSessionEvent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSystemTunnelType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/object-3/cvpdnSystemTunnelType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "object-3",
                    "cvpdnSystemTunnelType"
                  ]
                },
                "description": "Retrieve cvpdnSystemTunnelType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrTunnelId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/object-3/cvpdnTunnelAttrTunnelId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "object-3",
                    "cvpdnTunnelAttrTunnelId"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrTunnelId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrSessionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/object-3/cvpdnSessionAttrSessionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "object-3",
                    "cvpdnSessionAttrSessionId"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrSessionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrDevicePhyId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/object-3/cvpdnSessionAttrDevicePhyId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "object-3",
                    "cvpdnSessionAttrDevicePhyId"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrDevicePhyId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSystemTunnelType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/object-4/cvpdnSystemTunnelType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "object-4",
                    "cvpdnSystemTunnelType"
                  ]
                },
                "description": "Retrieve cvpdnSystemTunnelType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnTunnelAttrTunnelId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/object-4/cvpdnTunnelAttrTunnelId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "object-4",
                    "cvpdnTunnelAttrTunnelId"
                  ]
                },
                "description": "Retrieve cvpdnTunnelAttrTunnelId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrSessionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/object-4/cvpdnSessionAttrSessionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "object-4",
                    "cvpdnSessionAttrSessionId"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrSessionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cvpdnSessionAttrVirtualCircuitID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB/cvpdnBundleChildTable/object-4/cvpdnSessionAttrVirtualCircuitID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VPDN-MGMT-MIB:CISCO-VPDN-MGMT-MIB",
                    "cvpdnBundleChildTable",
                    "object-4",
                    "cvpdnSessionAttrVirtualCircuitID"
                  ]
                },
                "description": "Retrieve cvpdnSessionAttrVirtualCircuitID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "CISCO-VTP-MIB",
          "description": "Cisco IOS-XE MIB - CISCO-VTP-MIB\n\nMIB data from `CISCO-VTP-MIB` module.\n\n**Root containers:** 1 (CISCO-VTP-MIB)\n**Paths:** 187 | **Descendants:** 215\n\nAll endpoints are read-only (GET).\n\nEndpoints: 187 | Operations: 187",
          "item": [
            {
              "name": "GET Get CISCO-VTP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB"
                  ]
                },
                "description": "Retrieve CISCO-VTP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpStatus"
                  ]
                },
                "description": "Retrieve vtpStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpStatus/vtpVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpStatus",
                    "vtpVersion"
                  ]
                },
                "description": "Retrieve vtpVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpMaxVlanStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpStatus/vtpMaxVlanStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpStatus",
                    "vtpMaxVlanStorage"
                  ]
                },
                "description": "Retrieve vtpMaxVlanStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpNotificationsEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpStatus/vtpNotificationsEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpStatus",
                    "vtpNotificationsEnabled"
                  ]
                },
                "description": "Retrieve vtpNotificationsEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanCreatedNotifEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpStatus/vtpVlanCreatedNotifEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpStatus",
                    "vtpVlanCreatedNotifEnabled"
                  ]
                },
                "description": "Retrieve vtpVlanCreatedNotifEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanDeletedNotifEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpStatus/vtpVlanDeletedNotifEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpStatus",
                    "vtpVlanDeletedNotifEnabled"
                  ]
                },
                "description": "Retrieve vtpVlanDeletedNotifEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get internalVlanInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/internalVlanInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "internalVlanInfo"
                  ]
                },
                "description": "Retrieve internalVlanInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpInternalVlanAllocPolicy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/internalVlanInfo/vtpInternalVlanAllocPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "internalVlanInfo",
                    "vtpInternalVlanAllocPolicy"
                  ]
                },
                "description": "Retrieve vtpInternalVlanAllocPolicy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPorts"
                  ]
                },
                "description": "Retrieve vlanTrunkPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortSetSerialNo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPorts/vlanTrunkPortSetSerialNo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPorts",
                    "vlanTrunkPortSetSerialNo"
                  ]
                },
                "description": "Retrieve vlanTrunkPortSetSerialNo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanStatistics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanStatistics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanStatistics"
                  ]
                },
                "description": "Retrieve vlanStatistics from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanStatsVlans",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanStatistics/vlanStatsVlans",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanStatistics",
                    "vlanStatsVlans"
                  ]
                },
                "description": "Retrieve vlanStatsVlans from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanStatsExtendedVlans",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanStatistics/vlanStatsExtendedVlans",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanStatistics",
                    "vlanStatsExtendedVlans"
                  ]
                },
                "description": "Retrieve vlanStatsExtendedVlans from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanStatsInternalVlans",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanStatistics/vlanStatsInternalVlans",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanStatistics",
                    "vlanStatsInternalVlans"
                  ]
                },
                "description": "Retrieve vlanStatsInternalVlans from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanStatsFreeVlans",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanStatistics/vlanStatsFreeVlans",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanStatistics",
                    "vlanStatsFreeVlans"
                  ]
                },
                "description": "Retrieve vlanStatsFreeVlans from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable"
                  ]
                },
                "description": "Retrieve managementDomainTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry"
                  ]
                },
                "description": "Retrieve managementDomainEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainIndex"
                  ]
                },
                "description": "Retrieve managementDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainName"
                  ]
                },
                "description": "Retrieve managementDomainName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainLocalMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainLocalMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainLocalMode"
                  ]
                },
                "description": "Retrieve managementDomainLocalMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainConfigRevNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainConfigRevNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainConfigRevNumber"
                  ]
                },
                "description": "Retrieve managementDomainConfigRevNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainLastUpdater",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainLastUpdater",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainLastUpdater"
                  ]
                },
                "description": "Retrieve managementDomainLastUpdater from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainLastChange"
                  ]
                },
                "description": "Retrieve managementDomainLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainRowStatus"
                  ]
                },
                "description": "Retrieve managementDomainRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainTftpServer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainTftpServer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainTftpServer"
                  ]
                },
                "description": "Retrieve managementDomainTftpServer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainTftpPathname",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainTftpPathname",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainTftpPathname"
                  ]
                },
                "description": "Retrieve managementDomainTftpPathname from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainPruningState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainPruningState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainPruningState"
                  ]
                },
                "description": "Retrieve managementDomainPruningState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainVersionInUse",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainVersionInUse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainVersionInUse"
                  ]
                },
                "description": "Retrieve managementDomainVersionInUse from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainPruningStateOper",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainPruningStateOper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainPruningStateOper"
                  ]
                },
                "description": "Retrieve managementDomainPruningStateOper from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainAdminSrcIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainAdminSrcIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainAdminSrcIf"
                  ]
                },
                "description": "Retrieve managementDomainAdminSrcIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainSourceOnlyMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainSourceOnlyMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainSourceOnlyMode"
                  ]
                },
                "description": "Retrieve managementDomainSourceOnlyMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainOperSrcIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainOperSrcIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainOperSrcIf"
                  ]
                },
                "description": "Retrieve managementDomainOperSrcIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainConfigFile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainConfigFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainConfigFile"
                  ]
                },
                "description": "Retrieve managementDomainConfigFile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainLocalUpdaterType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainLocalUpdaterType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainLocalUpdaterType"
                  ]
                },
                "description": "Retrieve managementDomainLocalUpdaterType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainLocalUpdater",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainLocalUpdater",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainLocalUpdater"
                  ]
                },
                "description": "Retrieve managementDomainLocalUpdater from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainDeviceID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/managementDomainDeviceID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "managementDomainDeviceID"
                  ]
                },
                "description": "Retrieve managementDomainDeviceID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditOperation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/vtpVlanEditOperation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "vtpVlanEditOperation"
                  ]
                },
                "description": "Retrieve vtpVlanEditOperation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanApplyStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/vtpVlanApplyStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "vtpVlanApplyStatus"
                  ]
                },
                "description": "Retrieve vtpVlanApplyStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditBufferOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/vtpVlanEditBufferOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "vtpVlanEditBufferOwner"
                  ]
                },
                "description": "Retrieve vtpVlanEditBufferOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditConfigRevNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/vtpVlanEditConfigRevNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "vtpVlanEditConfigRevNumber"
                  ]
                },
                "description": "Retrieve vtpVlanEditConfigRevNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditModifiedVlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/vtpVlanEditModifiedVlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "vtpVlanEditModifiedVlan"
                  ]
                },
                "description": "Retrieve vtpVlanEditModifiedVlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpInSummaryAdverts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/vtpInSummaryAdverts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "vtpInSummaryAdverts"
                  ]
                },
                "description": "Retrieve vtpInSummaryAdverts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpInSubsetAdverts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/vtpInSubsetAdverts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "vtpInSubsetAdverts"
                  ]
                },
                "description": "Retrieve vtpInSubsetAdverts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpInAdvertRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/vtpInAdvertRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "vtpInAdvertRequests"
                  ]
                },
                "description": "Retrieve vtpInAdvertRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpOutSummaryAdverts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/vtpOutSummaryAdverts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "vtpOutSummaryAdverts"
                  ]
                },
                "description": "Retrieve vtpOutSummaryAdverts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpOutSubsetAdverts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/vtpOutSubsetAdverts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "vtpOutSubsetAdverts"
                  ]
                },
                "description": "Retrieve vtpOutSubsetAdverts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpOutAdvertRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/vtpOutAdvertRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "vtpOutAdvertRequests"
                  ]
                },
                "description": "Retrieve vtpOutAdvertRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpConfigRevNumberErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/vtpConfigRevNumberErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "vtpConfigRevNumberErrors"
                  ]
                },
                "description": "Retrieve vtpConfigRevNumberErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpConfigDigestErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/managementDomainTable/managementDomainEntry/vtpConfigDigestErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "managementDomainTable",
                    "managementDomainEntry",
                    "vtpConfigDigestErrors"
                  ]
                },
                "description": "Retrieve vtpConfigDigestErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable"
                  ]
                },
                "description": "Retrieve vtpVlanTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry"
                  ]
                },
                "description": "Retrieve vtpVlanEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/managementDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "managementDomainIndex"
                  ]
                },
                "description": "Retrieve managementDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanIndex"
                  ]
                },
                "description": "Retrieve vtpVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanState"
                  ]
                },
                "description": "Retrieve vtpVlanState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanType"
                  ]
                },
                "description": "Retrieve vtpVlanType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanName"
                  ]
                },
                "description": "Retrieve vtpVlanName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanMtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanMtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanMtu"
                  ]
                },
                "description": "Retrieve vtpVlanMtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanDot10Said",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanDot10Said",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanDot10Said"
                  ]
                },
                "description": "Retrieve vtpVlanDot10Said from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanRingNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanRingNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanRingNumber"
                  ]
                },
                "description": "Retrieve vtpVlanRingNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanBridgeNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanBridgeNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanBridgeNumber"
                  ]
                },
                "description": "Retrieve vtpVlanBridgeNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanStpType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanStpType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanStpType"
                  ]
                },
                "description": "Retrieve vtpVlanStpType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanParentVlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanParentVlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanParentVlan"
                  ]
                },
                "description": "Retrieve vtpVlanParentVlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanTranslationalVlan1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanTranslationalVlan1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanTranslationalVlan1"
                  ]
                },
                "description": "Retrieve vtpVlanTranslationalVlan1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanTranslationalVlan2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanTranslationalVlan2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanTranslationalVlan2"
                  ]
                },
                "description": "Retrieve vtpVlanTranslationalVlan2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanBridgeType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanBridgeType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanBridgeType"
                  ]
                },
                "description": "Retrieve vtpVlanBridgeType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanAreHopCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanAreHopCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanAreHopCount"
                  ]
                },
                "description": "Retrieve vtpVlanAreHopCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanSteHopCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanSteHopCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanSteHopCount"
                  ]
                },
                "description": "Retrieve vtpVlanSteHopCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanIsCRFBackup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanIsCRFBackup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanIsCRFBackup"
                  ]
                },
                "description": "Retrieve vtpVlanIsCRFBackup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanTypeExt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanTypeExt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanTypeExt"
                  ]
                },
                "description": "Retrieve vtpVlanTypeExt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanTable/vtpVlanEntry/vtpVlanIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanTable",
                    "vtpVlanEntry",
                    "vtpVlanIfIndex"
                  ]
                },
                "description": "Retrieve vtpVlanIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpInternalVlanTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpInternalVlanTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpInternalVlanTable"
                  ]
                },
                "description": "Retrieve vtpInternalVlanTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpInternalVlanEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpInternalVlanTable/vtpInternalVlanEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpInternalVlanTable",
                    "vtpInternalVlanEntry"
                  ]
                },
                "description": "Retrieve vtpInternalVlanEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpInternalVlanTable/vtpInternalVlanEntry/managementDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpInternalVlanTable",
                    "vtpInternalVlanEntry",
                    "managementDomainIndex"
                  ]
                },
                "description": "Retrieve managementDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpInternalVlanTable/vtpInternalVlanEntry/vtpVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpInternalVlanTable",
                    "vtpInternalVlanEntry",
                    "vtpVlanIndex"
                  ]
                },
                "description": "Retrieve vtpVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpInternalVlanOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpInternalVlanTable/vtpInternalVlanEntry/vtpInternalVlanOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpInternalVlanTable",
                    "vtpInternalVlanEntry",
                    "vtpInternalVlanOwner"
                  ]
                },
                "description": "Retrieve vtpInternalVlanOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable"
                  ]
                },
                "description": "Retrieve vtpVlanEditTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry"
                  ]
                },
                "description": "Retrieve vtpVlanEditEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/managementDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "managementDomainIndex"
                  ]
                },
                "description": "Retrieve managementDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditIndex"
                  ]
                },
                "description": "Retrieve vtpVlanEditIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditState"
                  ]
                },
                "description": "Retrieve vtpVlanEditState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditType"
                  ]
                },
                "description": "Retrieve vtpVlanEditType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditName"
                  ]
                },
                "description": "Retrieve vtpVlanEditName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditMtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditMtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditMtu"
                  ]
                },
                "description": "Retrieve vtpVlanEditMtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditDot10Said",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditDot10Said",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditDot10Said"
                  ]
                },
                "description": "Retrieve vtpVlanEditDot10Said from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditRingNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditRingNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditRingNumber"
                  ]
                },
                "description": "Retrieve vtpVlanEditRingNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditBridgeNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditBridgeNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditBridgeNumber"
                  ]
                },
                "description": "Retrieve vtpVlanEditBridgeNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditStpType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditStpType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditStpType"
                  ]
                },
                "description": "Retrieve vtpVlanEditStpType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditParentVlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditParentVlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditParentVlan"
                  ]
                },
                "description": "Retrieve vtpVlanEditParentVlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditRowStatus"
                  ]
                },
                "description": "Retrieve vtpVlanEditRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditTranslationalVlan1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditTranslationalVlan1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditTranslationalVlan1"
                  ]
                },
                "description": "Retrieve vtpVlanEditTranslationalVlan1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditTranslationalVlan2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditTranslationalVlan2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditTranslationalVlan2"
                  ]
                },
                "description": "Retrieve vtpVlanEditTranslationalVlan2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditBridgeType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditBridgeType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditBridgeType"
                  ]
                },
                "description": "Retrieve vtpVlanEditBridgeType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditAreHopCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditAreHopCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditAreHopCount"
                  ]
                },
                "description": "Retrieve vtpVlanEditAreHopCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditSteHopCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditSteHopCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditSteHopCount"
                  ]
                },
                "description": "Retrieve vtpVlanEditSteHopCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditIsCRFBackup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditIsCRFBackup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditIsCRFBackup"
                  ]
                },
                "description": "Retrieve vtpVlanEditIsCRFBackup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanEditTypeExt2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanEditTable/vtpVlanEditEntry/vtpVlanEditTypeExt2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanEditTable",
                    "vtpVlanEditEntry",
                    "vtpVlanEditTypeExt2"
                  ]
                },
                "description": "Retrieve vtpVlanEditTypeExt2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanLocalShutdownTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanLocalShutdownTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanLocalShutdownTable"
                  ]
                },
                "description": "Retrieve vtpVlanLocalShutdownTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanLocalShutdownEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanLocalShutdownTable/vtpVlanLocalShutdownEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanLocalShutdownTable",
                    "vtpVlanLocalShutdownEntry"
                  ]
                },
                "description": "Retrieve vtpVlanLocalShutdownEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanLocalShutdownTable/vtpVlanLocalShutdownEntry/managementDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanLocalShutdownTable",
                    "vtpVlanLocalShutdownEntry",
                    "managementDomainIndex"
                  ]
                },
                "description": "Retrieve managementDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanLocalShutdownTable/vtpVlanLocalShutdownEntry/vtpVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanLocalShutdownTable",
                    "vtpVlanLocalShutdownEntry",
                    "vtpVlanIndex"
                  ]
                },
                "description": "Retrieve vtpVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanLocalShutdown",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpVlanLocalShutdownTable/vtpVlanLocalShutdownEntry/vtpVlanLocalShutdown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpVlanLocalShutdownTable",
                    "vtpVlanLocalShutdownEntry",
                    "vtpVlanLocalShutdown"
                  ]
                },
                "description": "Retrieve vtpVlanLocalShutdown from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable"
                  ]
                },
                "description": "Retrieve vlanTrunkPortTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry"
                  ]
                },
                "description": "Retrieve vlanTrunkPortEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortIfIndex"
                  ]
                },
                "description": "Retrieve vlanTrunkPortIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortManagementDomain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortManagementDomain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortManagementDomain"
                  ]
                },
                "description": "Retrieve vlanTrunkPortManagementDomain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortEncapsulationType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortEncapsulationType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortEncapsulationType"
                  ]
                },
                "description": "Retrieve vlanTrunkPortEncapsulationType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortVlansEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortVlansEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortVlansEnabled"
                  ]
                },
                "description": "Retrieve vlanTrunkPortVlansEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortNativeVlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortNativeVlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortNativeVlan"
                  ]
                },
                "description": "Retrieve vlanTrunkPortNativeVlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortRowStatus"
                  ]
                },
                "description": "Retrieve vlanTrunkPortRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortInJoins",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortInJoins",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortInJoins"
                  ]
                },
                "description": "Retrieve vlanTrunkPortInJoins from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortOutJoins",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortOutJoins",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortOutJoins"
                  ]
                },
                "description": "Retrieve vlanTrunkPortOutJoins from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortOldAdverts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortOldAdverts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortOldAdverts"
                  ]
                },
                "description": "Retrieve vlanTrunkPortOldAdverts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortVlansPruningEligible",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortVlansPruningEligible",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortVlansPruningEligible"
                  ]
                },
                "description": "Retrieve vlanTrunkPortVlansPruningEligible from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortVlansXmitJoined",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortVlansXmitJoined",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortVlansXmitJoined"
                  ]
                },
                "description": "Retrieve vlanTrunkPortVlansXmitJoined from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortVlansRcvJoined",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortVlansRcvJoined",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortVlansRcvJoined"
                  ]
                },
                "description": "Retrieve vlanTrunkPortVlansRcvJoined from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortDynamicState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortDynamicState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortDynamicState"
                  ]
                },
                "description": "Retrieve vlanTrunkPortDynamicState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortDynamicStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortDynamicStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortDynamicStatus"
                  ]
                },
                "description": "Retrieve vlanTrunkPortDynamicStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortVtpEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortVtpEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortVtpEnabled"
                  ]
                },
                "description": "Retrieve vlanTrunkPortVtpEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortEncapsulationOperType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortEncapsulationOperType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortEncapsulationOperType"
                  ]
                },
                "description": "Retrieve vlanTrunkPortEncapsulationOperType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortVlansEnabled2k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortVlansEnabled2k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortVlansEnabled2k"
                  ]
                },
                "description": "Retrieve vlanTrunkPortVlansEnabled2k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortVlansEnabled3k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortVlansEnabled3k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortVlansEnabled3k"
                  ]
                },
                "description": "Retrieve vlanTrunkPortVlansEnabled3k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortVlansEnabled4k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortVlansEnabled4k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortVlansEnabled4k"
                  ]
                },
                "description": "Retrieve vlanTrunkPortVlansEnabled4k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlansPruningEligible2k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vtpVlansPruningEligible2k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vtpVlansPruningEligible2k"
                  ]
                },
                "description": "Retrieve vtpVlansPruningEligible2k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlansPruningEligible3k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vtpVlansPruningEligible3k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vtpVlansPruningEligible3k"
                  ]
                },
                "description": "Retrieve vtpVlansPruningEligible3k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlansPruningEligible4k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vtpVlansPruningEligible4k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vtpVlansPruningEligible4k"
                  ]
                },
                "description": "Retrieve vtpVlansPruningEligible4k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortVlansXmitJoined2k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortVlansXmitJoined2k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortVlansXmitJoined2k"
                  ]
                },
                "description": "Retrieve vlanTrunkPortVlansXmitJoined2k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortVlansXmitJoined3k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortVlansXmitJoined3k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortVlansXmitJoined3k"
                  ]
                },
                "description": "Retrieve vlanTrunkPortVlansXmitJoined3k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortVlansXmitJoined4k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortVlansXmitJoined4k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortVlansXmitJoined4k"
                  ]
                },
                "description": "Retrieve vlanTrunkPortVlansXmitJoined4k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortVlansRcvJoined2k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortVlansRcvJoined2k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortVlansRcvJoined2k"
                  ]
                },
                "description": "Retrieve vlanTrunkPortVlansRcvJoined2k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortVlansRcvJoined3k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortVlansRcvJoined3k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortVlansRcvJoined3k"
                  ]
                },
                "description": "Retrieve vlanTrunkPortVlansRcvJoined3k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortVlansRcvJoined4k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortVlansRcvJoined4k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortVlansRcvJoined4k"
                  ]
                },
                "description": "Retrieve vlanTrunkPortVlansRcvJoined4k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortVlansActiveFirst2k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortVlansActiveFirst2k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortVlansActiveFirst2k"
                  ]
                },
                "description": "Retrieve vlanTrunkPortVlansActiveFirst2k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortVlansActiveSecond2k",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vlanTrunkPortTable/vlanTrunkPortEntry/vlanTrunkPortVlansActiveSecond2k",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vlanTrunkPortTable",
                    "vlanTrunkPortEntry",
                    "vlanTrunkPortVlansActiveSecond2k"
                  ]
                },
                "description": "Retrieve vlanTrunkPortVlansActiveSecond2k from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDiscoverTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDiscoverTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDiscoverTable"
                  ]
                },
                "description": "Retrieve vtpDiscoverTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDiscoverEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDiscoverTable/vtpDiscoverEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDiscoverTable",
                    "vtpDiscoverEntry"
                  ]
                },
                "description": "Retrieve vtpDiscoverEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDiscoverTable/vtpDiscoverEntry/managementDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDiscoverTable",
                    "vtpDiscoverEntry",
                    "managementDomainIndex"
                  ]
                },
                "description": "Retrieve managementDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDiscoverAction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDiscoverTable/vtpDiscoverEntry/vtpDiscoverAction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDiscoverTable",
                    "vtpDiscoverEntry",
                    "vtpDiscoverAction"
                  ]
                },
                "description": "Retrieve vtpDiscoverAction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDiscoverStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDiscoverTable/vtpDiscoverEntry/vtpDiscoverStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDiscoverTable",
                    "vtpDiscoverEntry",
                    "vtpDiscoverStatus"
                  ]
                },
                "description": "Retrieve vtpDiscoverStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpLastDiscoverTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDiscoverTable/vtpDiscoverEntry/vtpLastDiscoverTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDiscoverTable",
                    "vtpDiscoverEntry",
                    "vtpLastDiscoverTime"
                  ]
                },
                "description": "Retrieve vtpLastDiscoverTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDiscoverResultTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDiscoverResultTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDiscoverResultTable"
                  ]
                },
                "description": "Retrieve vtpDiscoverResultTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDiscoverResultEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDiscoverResultTable/vtpDiscoverResultEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDiscoverResultTable",
                    "vtpDiscoverResultEntry"
                  ]
                },
                "description": "Retrieve vtpDiscoverResultEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDiscoverResultTable/vtpDiscoverResultEntry/managementDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDiscoverResultTable",
                    "vtpDiscoverResultEntry",
                    "managementDomainIndex"
                  ]
                },
                "description": "Retrieve managementDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDiscoverResultIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDiscoverResultTable/vtpDiscoverResultEntry/vtpDiscoverResultIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDiscoverResultTable",
                    "vtpDiscoverResultEntry",
                    "vtpDiscoverResultIndex"
                  ]
                },
                "description": "Retrieve vtpDiscoverResultIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDiscoverResultDatabaseName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDiscoverResultTable/vtpDiscoverResultEntry/vtpDiscoverResultDatabaseName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDiscoverResultTable",
                    "vtpDiscoverResultEntry",
                    "vtpDiscoverResultDatabaseName"
                  ]
                },
                "description": "Retrieve vtpDiscoverResultDatabaseName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDiscoverResultConflicting",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDiscoverResultTable/vtpDiscoverResultEntry/vtpDiscoverResultConflicting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDiscoverResultTable",
                    "vtpDiscoverResultEntry",
                    "vtpDiscoverResultConflicting"
                  ]
                },
                "description": "Retrieve vtpDiscoverResultConflicting from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDiscoverResultDeviceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDiscoverResultTable/vtpDiscoverResultEntry/vtpDiscoverResultDeviceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDiscoverResultTable",
                    "vtpDiscoverResultEntry",
                    "vtpDiscoverResultDeviceId"
                  ]
                },
                "description": "Retrieve vtpDiscoverResultDeviceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDiscoverResultPrimaryServer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDiscoverResultTable/vtpDiscoverResultEntry/vtpDiscoverResultPrimaryServer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDiscoverResultTable",
                    "vtpDiscoverResultEntry",
                    "vtpDiscoverResultPrimaryServer"
                  ]
                },
                "description": "Retrieve vtpDiscoverResultPrimaryServer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDiscoverResultRevNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDiscoverResultTable/vtpDiscoverResultEntry/vtpDiscoverResultRevNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDiscoverResultTable",
                    "vtpDiscoverResultEntry",
                    "vtpDiscoverResultRevNumber"
                  ]
                },
                "description": "Retrieve vtpDiscoverResultRevNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDiscoverResultSystemName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDiscoverResultTable/vtpDiscoverResultEntry/vtpDiscoverResultSystemName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDiscoverResultTable",
                    "vtpDiscoverResultEntry",
                    "vtpDiscoverResultSystemName"
                  ]
                },
                "description": "Retrieve vtpDiscoverResultSystemName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDatabaseTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDatabaseTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDatabaseTable"
                  ]
                },
                "description": "Retrieve vtpDatabaseTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDatabaseEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDatabaseTable/vtpDatabaseEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDatabaseTable",
                    "vtpDatabaseEntry"
                  ]
                },
                "description": "Retrieve vtpDatabaseEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDatabaseTable/vtpDatabaseEntry/managementDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDatabaseTable",
                    "vtpDatabaseEntry",
                    "managementDomainIndex"
                  ]
                },
                "description": "Retrieve managementDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDatabaseIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDatabaseTable/vtpDatabaseEntry/vtpDatabaseIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDatabaseTable",
                    "vtpDatabaseEntry",
                    "vtpDatabaseIndex"
                  ]
                },
                "description": "Retrieve vtpDatabaseIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDatabaseName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDatabaseTable/vtpDatabaseEntry/vtpDatabaseName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDatabaseTable",
                    "vtpDatabaseEntry",
                    "vtpDatabaseName"
                  ]
                },
                "description": "Retrieve vtpDatabaseName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDatabaseLocalMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDatabaseTable/vtpDatabaseEntry/vtpDatabaseLocalMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDatabaseTable",
                    "vtpDatabaseEntry",
                    "vtpDatabaseLocalMode"
                  ]
                },
                "description": "Retrieve vtpDatabaseLocalMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDatabaseRevNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDatabaseTable/vtpDatabaseEntry/vtpDatabaseRevNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDatabaseTable",
                    "vtpDatabaseEntry",
                    "vtpDatabaseRevNumber"
                  ]
                },
                "description": "Retrieve vtpDatabaseRevNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDatabasePrimaryServer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDatabaseTable/vtpDatabaseEntry/vtpDatabasePrimaryServer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDatabaseTable",
                    "vtpDatabaseEntry",
                    "vtpDatabasePrimaryServer"
                  ]
                },
                "description": "Retrieve vtpDatabasePrimaryServer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDatabasePrimaryServerId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDatabaseTable/vtpDatabaseEntry/vtpDatabasePrimaryServerId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDatabaseTable",
                    "vtpDatabaseEntry",
                    "vtpDatabasePrimaryServerId"
                  ]
                },
                "description": "Retrieve vtpDatabasePrimaryServerId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDatabaseTakeOverPrimary",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDatabaseTable/vtpDatabaseEntry/vtpDatabaseTakeOverPrimary",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDatabaseTable",
                    "vtpDatabaseEntry",
                    "vtpDatabaseTakeOverPrimary"
                  ]
                },
                "description": "Retrieve vtpDatabaseTakeOverPrimary from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpDatabaseTakeOverPassword",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpDatabaseTable/vtpDatabaseEntry/vtpDatabaseTakeOverPassword",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpDatabaseTable",
                    "vtpDatabaseEntry",
                    "vtpDatabaseTakeOverPassword"
                  ]
                },
                "description": "Retrieve vtpDatabaseTakeOverPassword from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpAuthenticationTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable"
                  ]
                },
                "description": "Retrieve vtpAuthenticationTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpAuthEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/vtpAuthEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "vtpAuthEntry"
                  ]
                },
                "description": "Retrieve vtpAuthEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/vtpAuthEntry/managementDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "vtpAuthEntry",
                    "managementDomainIndex"
                  ]
                },
                "description": "Retrieve managementDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpAuthPassword",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/vtpAuthEntry/vtpAuthPassword",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "vtpAuthEntry",
                    "vtpAuthPassword"
                  ]
                },
                "description": "Retrieve vtpAuthPassword from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpAuthPasswordType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/vtpAuthEntry/vtpAuthPasswordType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "vtpAuthEntry",
                    "vtpAuthPasswordType"
                  ]
                },
                "description": "Retrieve vtpAuthPasswordType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpAuthSecretKey",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/vtpAuthEntry/vtpAuthSecretKey",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "vtpAuthEntry",
                    "vtpAuthSecretKey"
                  ]
                },
                "description": "Retrieve vtpAuthSecretKey from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-1/managementDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-1",
                    "managementDomainIndex"
                  ]
                },
                "description": "Retrieve managementDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainConfigRevNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-1/managementDomainConfigRevNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-1",
                    "managementDomainConfigRevNumber"
                  ]
                },
                "description": "Retrieve managementDomainConfigRevNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpMaxVlanStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-2/vtpMaxVlanStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-2",
                    "vtpMaxVlanStorage"
                  ]
                },
                "description": "Retrieve vtpMaxVlanStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-1/vlanTrunkPortIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-1",
                    "vlanTrunkPortIfIndex"
                  ]
                },
                "description": "Retrieve vlanTrunkPortIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortManagementDomain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-1/vlanTrunkPortManagementDomain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-1",
                    "vlanTrunkPortManagementDomain"
                  ]
                },
                "description": "Retrieve vlanTrunkPortManagementDomain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-2/managementDomainIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-2",
                    "managementDomainIndex"
                  ]
                },
                "description": "Retrieve managementDomainIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-2/vtpVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-2",
                    "vtpVlanIndex"
                  ]
                },
                "description": "Retrieve vtpVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-2/vtpVlanState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-2",
                    "vtpVlanState"
                  ]
                },
                "description": "Retrieve vtpVlanState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlanTrunkPortDynamicStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-1/vlanTrunkPortDynamicStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-1",
                    "vlanTrunkPortDynamicStatus"
                  ]
                },
                "description": "Retrieve vlanTrunkPortDynamicStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainLocalMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-1/managementDomainLocalMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-1",
                    "managementDomainLocalMode"
                  ]
                },
                "description": "Retrieve managementDomainLocalMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainVersionInUse",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-1/managementDomainVersionInUse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-1",
                    "managementDomainVersionInUse"
                  ]
                },
                "description": "Retrieve managementDomainVersionInUse from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-1/vtpVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-1",
                    "vtpVlanIndex"
                  ]
                },
                "description": "Retrieve vtpVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-1/vtpVlanName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-1",
                    "vtpVlanName"
                  ]
                },
                "description": "Retrieve vtpVlanName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanRingNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-1/vtpVlanRingNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-1",
                    "vtpVlanRingNumber"
                  ]
                },
                "description": "Retrieve vtpVlanRingNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-2/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-2",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vtpVlanPortLocalSegment",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-3/vtpVlanPortLocalSegment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-3",
                    "vtpVlanPortLocalSegment"
                  ]
                },
                "description": "Retrieve vtpVlanPortLocalSegment from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get managementDomainPruningStateOper",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/CISCO-VTP-MIB:CISCO-VTP-MIB/vtpAuthenticationTable/object-1/managementDomainPruningStateOper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "CISCO-VTP-MIB:CISCO-VTP-MIB",
                    "vtpAuthenticationTable",
                    "object-1",
                    "managementDomainPruningStateOper"
                  ]
                },
                "description": "Retrieve managementDomainPruningStateOper from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "DIAL-CONTROL-MIB",
          "description": "Cisco IOS-XE MIB - DIAL-CONTROL-MIB\n\nMIB data from `DIAL-CONTROL-MIB` module.\n\n**Root containers:** 1 (DIAL-CONTROL-MIB)\n**Paths:** 126 | **Descendants:** 149\n\nAll endpoints are read-only (GET).\n\nEndpoints: 126 | Operations: 126",
          "item": [
            {
              "name": "GET Get DIAL-CONTROL-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB"
                  ]
                },
                "description": "Retrieve DIAL-CONTROL-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlConfiguration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlConfiguration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlConfiguration"
                  ]
                },
                "description": "Retrieve dialCtlConfiguration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlAcceptMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlConfiguration/dialCtlAcceptMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlConfiguration",
                    "dialCtlAcceptMode"
                  ]
                },
                "description": "Retrieve dialCtlAcceptMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlTrapEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlConfiguration/dialCtlTrapEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlConfiguration",
                    "dialCtlTrapEnable"
                  ]
                },
                "description": "Retrieve dialCtlTrapEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistory",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistory",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistory"
                  ]
                },
                "description": "Retrieve callHistory from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryTableMaxLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistory/callHistoryTableMaxLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistory",
                    "callHistoryTableMaxLength"
                  ]
                },
                "description": "Retrieve callHistoryTableMaxLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryRetainTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistory/callHistoryRetainTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistory",
                    "callHistoryRetainTimer"
                  ]
                },
                "description": "Retrieve callHistoryRetainTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgId"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgIfType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgIfType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgIfType"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgIfType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgLowerIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgLowerIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgLowerIf"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgLowerIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgOriginateAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgOriginateAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgOriginateAddress"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgOriginateAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgAnswerAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgAnswerAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgAnswerAddress"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgAnswerAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgSubAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgSubAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgSubAddress"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgSubAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgClosedUserGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgClosedUserGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgClosedUserGroup"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgClosedUserGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgSpeed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgSpeed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgSpeed"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgSpeed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgInfoType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgInfoType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgInfoType"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgInfoType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgPermission",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgPermission",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgPermission"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgPermission from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgInactivityTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgInactivityTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgInactivityTimer"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgInactivityTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgMinDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgMinDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgMinDuration"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgMinDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgMaxDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgMaxDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgMaxDuration"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgMaxDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgCarrierDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgCarrierDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgCarrierDelay"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgCarrierDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgCallRetries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgCallRetries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgCallRetries"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgCallRetries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgRetryDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgRetryDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgRetryDelay"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgRetryDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgFailureDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgFailureDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgFailureDelay"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgFailureDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgTrapEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgTrapEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgTrapEnable"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgTrapEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerCfgStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerCfgStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerCfgStatus"
                  ]
                },
                "description": "Retrieve dialCtlPeerCfgStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerStatsConnectTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerStatsConnectTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerStatsConnectTime"
                  ]
                },
                "description": "Retrieve dialCtlPeerStatsConnectTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerStatsChargedUnits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerStatsChargedUnits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerStatsChargedUnits"
                  ]
                },
                "description": "Retrieve dialCtlPeerStatsChargedUnits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerStatsSuccessCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerStatsSuccessCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerStatsSuccessCalls"
                  ]
                },
                "description": "Retrieve dialCtlPeerStatsSuccessCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerStatsFailCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerStatsFailCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerStatsFailCalls"
                  ]
                },
                "description": "Retrieve dialCtlPeerStatsFailCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerStatsAcceptCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerStatsAcceptCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerStatsAcceptCalls"
                  ]
                },
                "description": "Retrieve dialCtlPeerStatsAcceptCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerStatsRefuseCalls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerStatsRefuseCalls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerStatsRefuseCalls"
                  ]
                },
                "description": "Retrieve dialCtlPeerStatsRefuseCalls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerStatsLastDisconnectCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerStatsLastDisconnectCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerStatsLastDisconnectCause"
                  ]
                },
                "description": "Retrieve dialCtlPeerStatsLastDisconnectCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerStatsLastDisconnectText",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerStatsLastDisconnectText",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerStatsLastDisconnectText"
                  ]
                },
                "description": "Retrieve dialCtlPeerStatsLastDisconnectText from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dialCtlPeerStatsLastSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/dialCtlPeerCfgTable/dialCtlPeerCfgEntry/dialCtlPeerStatsLastSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "dialCtlPeerCfgTable",
                    "dialCtlPeerCfgEntry",
                    "dialCtlPeerStatsLastSetupTime"
                  ]
                },
                "description": "Retrieve dialCtlPeerStatsLastSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable"
                  ]
                },
                "description": "Retrieve callActiveTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry"
                  ]
                },
                "description": "Retrieve callActiveEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActivePeerAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry/callActivePeerAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry",
                    "callActivePeerAddress"
                  ]
                },
                "description": "Retrieve callActivePeerAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActivePeerSubAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry/callActivePeerSubAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry",
                    "callActivePeerSubAddress"
                  ]
                },
                "description": "Retrieve callActivePeerSubAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActivePeerId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry/callActivePeerId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry",
                    "callActivePeerId"
                  ]
                },
                "description": "Retrieve callActivePeerId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActivePeerIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry/callActivePeerIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry",
                    "callActivePeerIfIndex"
                  ]
                },
                "description": "Retrieve callActivePeerIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveLogicalIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry/callActiveLogicalIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry",
                    "callActiveLogicalIfIndex"
                  ]
                },
                "description": "Retrieve callActiveLogicalIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveConnectTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry/callActiveConnectTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry",
                    "callActiveConnectTime"
                  ]
                },
                "description": "Retrieve callActiveConnectTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveCallState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry/callActiveCallState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry",
                    "callActiveCallState"
                  ]
                },
                "description": "Retrieve callActiveCallState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveCallOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry/callActiveCallOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry",
                    "callActiveCallOrigin"
                  ]
                },
                "description": "Retrieve callActiveCallOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveChargedUnits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry/callActiveChargedUnits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry",
                    "callActiveChargedUnits"
                  ]
                },
                "description": "Retrieve callActiveChargedUnits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveInfoType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry/callActiveInfoType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry",
                    "callActiveInfoType"
                  ]
                },
                "description": "Retrieve callActiveInfoType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveTransmitPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry/callActiveTransmitPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry",
                    "callActiveTransmitPackets"
                  ]
                },
                "description": "Retrieve callActiveTransmitPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveTransmitBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry/callActiveTransmitBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry",
                    "callActiveTransmitBytes"
                  ]
                },
                "description": "Retrieve callActiveTransmitBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveReceivePackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry/callActiveReceivePackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry",
                    "callActiveReceivePackets"
                  ]
                },
                "description": "Retrieve callActiveReceivePackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveReceiveBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callActiveTable/callActiveEntry/callActiveReceiveBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callActiveTable",
                    "callActiveEntry",
                    "callActiveReceiveBytes"
                  ]
                },
                "description": "Retrieve callActiveReceiveBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable"
                  ]
                },
                "description": "Retrieve callHistoryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry"
                  ]
                },
                "description": "Retrieve callHistoryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryPeerAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callHistoryPeerAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callHistoryPeerAddress"
                  ]
                },
                "description": "Retrieve callHistoryPeerAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryPeerSubAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callHistoryPeerSubAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callHistoryPeerSubAddress"
                  ]
                },
                "description": "Retrieve callHistoryPeerSubAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryPeerId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callHistoryPeerId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callHistoryPeerId"
                  ]
                },
                "description": "Retrieve callHistoryPeerId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryPeerIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callHistoryPeerIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callHistoryPeerIfIndex"
                  ]
                },
                "description": "Retrieve callHistoryPeerIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryLogicalIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callHistoryLogicalIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callHistoryLogicalIfIndex"
                  ]
                },
                "description": "Retrieve callHistoryLogicalIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryDisconnectCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callHistoryDisconnectCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callHistoryDisconnectCause"
                  ]
                },
                "description": "Retrieve callHistoryDisconnectCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryDisconnectText",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callHistoryDisconnectText",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callHistoryDisconnectText"
                  ]
                },
                "description": "Retrieve callHistoryDisconnectText from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryConnectTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callHistoryConnectTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callHistoryConnectTime"
                  ]
                },
                "description": "Retrieve callHistoryConnectTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryDisconnectTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callHistoryDisconnectTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callHistoryDisconnectTime"
                  ]
                },
                "description": "Retrieve callHistoryDisconnectTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryCallOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callHistoryCallOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callHistoryCallOrigin"
                  ]
                },
                "description": "Retrieve callHistoryCallOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryChargedUnits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callHistoryChargedUnits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callHistoryChargedUnits"
                  ]
                },
                "description": "Retrieve callHistoryChargedUnits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryInfoType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callHistoryInfoType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callHistoryInfoType"
                  ]
                },
                "description": "Retrieve callHistoryInfoType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryTransmitPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callHistoryTransmitPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callHistoryTransmitPackets"
                  ]
                },
                "description": "Retrieve callHistoryTransmitPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryTransmitBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callHistoryTransmitBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callHistoryTransmitBytes"
                  ]
                },
                "description": "Retrieve callHistoryTransmitBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryReceivePackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callHistoryReceivePackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callHistoryReceivePackets"
                  ]
                },
                "description": "Retrieve callHistoryReceivePackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryReceiveBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/callHistoryEntry/callHistoryReceiveBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "callHistoryEntry",
                    "callHistoryReceiveBytes"
                  ]
                },
                "description": "Retrieve callHistoryReceiveBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-1/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-1",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-1/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-1",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryPeerId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-1/callHistoryPeerId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-1",
                    "callHistoryPeerId"
                  ]
                },
                "description": "Retrieve callHistoryPeerId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-2/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-2",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-2/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-2",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryPeerIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-2/callHistoryPeerIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-2",
                    "callHistoryPeerIfIndex"
                  ]
                },
                "description": "Retrieve callHistoryPeerIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-3/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-3",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-3/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-3",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryLogicalIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-3/callHistoryLogicalIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-3",
                    "callHistoryLogicalIfIndex"
                  ]
                },
                "description": "Retrieve callHistoryLogicalIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-4/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-4",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-4/ifOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-4",
                    "ifOperStatus"
                  ]
                },
                "description": "Retrieve ifOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-5/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-5",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-5/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-5",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryPeerAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-5/callHistoryPeerAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-5",
                    "callHistoryPeerAddress"
                  ]
                },
                "description": "Retrieve callHistoryPeerAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-6"
                  ]
                },
                "description": "Retrieve object-6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-6/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-6",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-6/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-6",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryPeerSubAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-6/callHistoryPeerSubAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-6",
                    "callHistoryPeerSubAddress"
                  ]
                },
                "description": "Retrieve callHistoryPeerSubAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-7",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-7",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-7"
                  ]
                },
                "description": "Retrieve object-7 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-7/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-7",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-7/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-7",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryDisconnectCause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-7/callHistoryDisconnectCause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-7",
                    "callHistoryDisconnectCause"
                  ]
                },
                "description": "Retrieve callHistoryDisconnectCause from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-8",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-8",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-8"
                  ]
                },
                "description": "Retrieve object-8 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-8/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-8",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-8/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-8",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryConnectTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-8/callHistoryConnectTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-8",
                    "callHistoryConnectTime"
                  ]
                },
                "description": "Retrieve callHistoryConnectTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-9",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-9",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-9"
                  ]
                },
                "description": "Retrieve object-9 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-9/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-9",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-9/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-9",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryDisconnectTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-9/callHistoryDisconnectTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-9",
                    "callHistoryDisconnectTime"
                  ]
                },
                "description": "Retrieve callHistoryDisconnectTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-10",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-10",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-10"
                  ]
                },
                "description": "Retrieve object-10 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-10/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-10",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-10/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-10",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryInfoType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-10/callHistoryInfoType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-10",
                    "callHistoryInfoType"
                  ]
                },
                "description": "Retrieve callHistoryInfoType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-11",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-11",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-11"
                  ]
                },
                "description": "Retrieve object-11 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveSetupTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-11/callActiveSetupTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-11",
                    "callActiveSetupTime"
                  ]
                },
                "description": "Retrieve callActiveSetupTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-11/callActiveIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-11",
                    "callActiveIndex"
                  ]
                },
                "description": "Retrieve callActiveIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callHistoryCallOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-11/callHistoryCallOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-11",
                    "callHistoryCallOrigin"
                  ]
                },
                "description": "Retrieve callHistoryCallOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActivePeerId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-1/callActivePeerId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-1",
                    "callActivePeerId"
                  ]
                },
                "description": "Retrieve callActivePeerId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActivePeerIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-2/callActivePeerIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-2",
                    "callActivePeerIfIndex"
                  ]
                },
                "description": "Retrieve callActivePeerIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveLogicalIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-3/callActiveLogicalIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-3",
                    "callActiveLogicalIfIndex"
                  ]
                },
                "description": "Retrieve callActiveLogicalIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActivePeerAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-5/callActivePeerAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-5",
                    "callActivePeerAddress"
                  ]
                },
                "description": "Retrieve callActivePeerAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActivePeerSubAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-6/callActivePeerSubAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-6",
                    "callActivePeerSubAddress"
                  ]
                },
                "description": "Retrieve callActivePeerSubAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveInfoType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-7/callActiveInfoType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-7",
                    "callActiveInfoType"
                  ]
                },
                "description": "Retrieve callActiveInfoType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callActiveCallOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIAL-CONTROL-MIB:DIAL-CONTROL-MIB/callHistoryTable/object-8/callActiveCallOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIAL-CONTROL-MIB:DIAL-CONTROL-MIB",
                    "callHistoryTable",
                    "object-8",
                    "callActiveCallOrigin"
                  ]
                },
                "description": "Retrieve callActiveCallOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "DIFFSERV-MIB",
          "description": "Cisco IOS-XE MIB - DIFFSERV-MIB\n\nMIB data from `DIFFSERV-MIB` module.\n\n**Root containers:** 1 (DIFFSERV-MIB)\n**Paths:** 154 | **Descendants:** 153\n\nAll endpoints are read-only (GET).\n\nEndpoints: 154 | Operations: 154",
          "item": [
            {
              "name": "GET Get DIFFSERV-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB"
                  ]
                },
                "description": "Retrieve DIFFSERV-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClassifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClassifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClassifier"
                  ]
                },
                "description": "Retrieve diffServClassifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClfrNextFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClassifier/diffServClfrNextFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClassifier",
                    "diffServClfrNextFree"
                  ]
                },
                "description": "Retrieve diffServClfrNextFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClfrElementNextFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClassifier/diffServClfrElementNextFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClassifier",
                    "diffServClfrElementNextFree"
                  ]
                },
                "description": "Retrieve diffServClfrElementNextFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrNextFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClassifier/diffServMultiFieldClfrNextFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClassifier",
                    "diffServMultiFieldClfrNextFree"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrNextFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMeter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMeter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMeter"
                  ]
                },
                "description": "Retrieve diffServMeter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMeterNextFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMeter/diffServMeterNextFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMeter",
                    "diffServMeterNextFree"
                  ]
                },
                "description": "Retrieve diffServMeterNextFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServTBParam",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServTBParam",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServTBParam"
                  ]
                },
                "description": "Retrieve diffServTBParam from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServTBParamNextFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServTBParam/diffServTBParamNextFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServTBParam",
                    "diffServTBParamNextFree"
                  ]
                },
                "description": "Retrieve diffServTBParamNextFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAction"
                  ]
                },
                "description": "Retrieve diffServAction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServActionNextFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAction/diffServActionNextFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAction",
                    "diffServActionNextFree"
                  ]
                },
                "description": "Retrieve diffServActionNextFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServCountActNextFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAction/diffServCountActNextFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAction",
                    "diffServCountActNextFree"
                  ]
                },
                "description": "Retrieve diffServCountActNextFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAlgDrop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDrop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDrop"
                  ]
                },
                "description": "Retrieve diffServAlgDrop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAlgDropNextFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDrop/diffServAlgDropNextFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDrop",
                    "diffServAlgDropNextFree"
                  ]
                },
                "description": "Retrieve diffServAlgDropNextFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServRandomDropNextFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDrop/diffServRandomDropNextFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDrop",
                    "diffServRandomDropNextFree"
                  ]
                },
                "description": "Retrieve diffServRandomDropNextFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServQueue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServQueue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServQueue"
                  ]
                },
                "description": "Retrieve diffServQueue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServQNextFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServQueue/diffServQNextFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServQueue",
                    "diffServQNextFree"
                  ]
                },
                "description": "Retrieve diffServQNextFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServScheduler",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServScheduler",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServScheduler"
                  ]
                },
                "description": "Retrieve diffServScheduler from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServSchedulerNextFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServScheduler/diffServSchedulerNextFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServScheduler",
                    "diffServSchedulerNextFree"
                  ]
                },
                "description": "Retrieve diffServSchedulerNextFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMinRateNextFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServScheduler/diffServMinRateNextFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServScheduler",
                    "diffServMinRateNextFree"
                  ]
                },
                "description": "Retrieve diffServMinRateNextFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMaxRateNextFree",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServScheduler/diffServMaxRateNextFree",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServScheduler",
                    "diffServMaxRateNextFree"
                  ]
                },
                "description": "Retrieve diffServMaxRateNextFree from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServDataPathTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServDataPathTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServDataPathTable"
                  ]
                },
                "description": "Retrieve diffServDataPathTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServDataPathEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServDataPathTable/diffServDataPathEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServDataPathTable",
                    "diffServDataPathEntry"
                  ]
                },
                "description": "Retrieve diffServDataPathEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServDataPathTable/diffServDataPathEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServDataPathTable",
                    "diffServDataPathEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServDataPathIfDirection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServDataPathTable/diffServDataPathEntry/diffServDataPathIfDirection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServDataPathTable",
                    "diffServDataPathEntry",
                    "diffServDataPathIfDirection"
                  ]
                },
                "description": "Retrieve diffServDataPathIfDirection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServDataPathStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServDataPathTable/diffServDataPathEntry/diffServDataPathStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServDataPathTable",
                    "diffServDataPathEntry",
                    "diffServDataPathStart"
                  ]
                },
                "description": "Retrieve diffServDataPathStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServDataPathStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServDataPathTable/diffServDataPathEntry/diffServDataPathStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServDataPathTable",
                    "diffServDataPathEntry",
                    "diffServDataPathStorage"
                  ]
                },
                "description": "Retrieve diffServDataPathStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServDataPathStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServDataPathTable/diffServDataPathEntry/diffServDataPathStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServDataPathTable",
                    "diffServDataPathEntry",
                    "diffServDataPathStatus"
                  ]
                },
                "description": "Retrieve diffServDataPathStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClfrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClfrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClfrTable"
                  ]
                },
                "description": "Retrieve diffServClfrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClfrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClfrTable/diffServClfrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClfrTable",
                    "diffServClfrEntry"
                  ]
                },
                "description": "Retrieve diffServClfrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClfrId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClfrTable/diffServClfrEntry/diffServClfrId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClfrTable",
                    "diffServClfrEntry",
                    "diffServClfrId"
                  ]
                },
                "description": "Retrieve diffServClfrId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClfrStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClfrTable/diffServClfrEntry/diffServClfrStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClfrTable",
                    "diffServClfrEntry",
                    "diffServClfrStorage"
                  ]
                },
                "description": "Retrieve diffServClfrStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClfrStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClfrTable/diffServClfrEntry/diffServClfrStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClfrTable",
                    "diffServClfrEntry",
                    "diffServClfrStatus"
                  ]
                },
                "description": "Retrieve diffServClfrStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClfrElementTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClfrElementTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClfrElementTable"
                  ]
                },
                "description": "Retrieve diffServClfrElementTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClfrElementEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClfrElementTable/diffServClfrElementEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClfrElementTable",
                    "diffServClfrElementEntry"
                  ]
                },
                "description": "Retrieve diffServClfrElementEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClfrId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClfrElementTable/diffServClfrElementEntry/diffServClfrId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClfrElementTable",
                    "diffServClfrElementEntry",
                    "diffServClfrId"
                  ]
                },
                "description": "Retrieve diffServClfrId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClfrElementId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClfrElementTable/diffServClfrElementEntry/diffServClfrElementId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClfrElementTable",
                    "diffServClfrElementEntry",
                    "diffServClfrElementId"
                  ]
                },
                "description": "Retrieve diffServClfrElementId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClfrElementPrecedence",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClfrElementTable/diffServClfrElementEntry/diffServClfrElementPrecedence",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClfrElementTable",
                    "diffServClfrElementEntry",
                    "diffServClfrElementPrecedence"
                  ]
                },
                "description": "Retrieve diffServClfrElementPrecedence from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClfrElementNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClfrElementTable/diffServClfrElementEntry/diffServClfrElementNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClfrElementTable",
                    "diffServClfrElementEntry",
                    "diffServClfrElementNext"
                  ]
                },
                "description": "Retrieve diffServClfrElementNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClfrElementSpecific",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClfrElementTable/diffServClfrElementEntry/diffServClfrElementSpecific",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClfrElementTable",
                    "diffServClfrElementEntry",
                    "diffServClfrElementSpecific"
                  ]
                },
                "description": "Retrieve diffServClfrElementSpecific from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClfrElementStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClfrElementTable/diffServClfrElementEntry/diffServClfrElementStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClfrElementTable",
                    "diffServClfrElementEntry",
                    "diffServClfrElementStorage"
                  ]
                },
                "description": "Retrieve diffServClfrElementStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServClfrElementStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServClfrElementTable/diffServClfrElementEntry/diffServClfrElementStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServClfrElementTable",
                    "diffServClfrElementEntry",
                    "diffServClfrElementStatus"
                  ]
                },
                "description": "Retrieve diffServClfrElementStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable",
                    "diffServMultiFieldClfrEntry"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry/diffServMultiFieldClfrId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable",
                    "diffServMultiFieldClfrEntry",
                    "diffServMultiFieldClfrId"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry/diffServMultiFieldClfrAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable",
                    "diffServMultiFieldClfrEntry",
                    "diffServMultiFieldClfrAddrType"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrDstAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry/diffServMultiFieldClfrDstAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable",
                    "diffServMultiFieldClfrEntry",
                    "diffServMultiFieldClfrDstAddr"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrDstAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrDstPrefixLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry/diffServMultiFieldClfrDstPrefixLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable",
                    "diffServMultiFieldClfrEntry",
                    "diffServMultiFieldClfrDstPrefixLength"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrDstPrefixLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrSrcAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry/diffServMultiFieldClfrSrcAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable",
                    "diffServMultiFieldClfrEntry",
                    "diffServMultiFieldClfrSrcAddr"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrSrcAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrSrcPrefixLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry/diffServMultiFieldClfrSrcPrefixLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable",
                    "diffServMultiFieldClfrEntry",
                    "diffServMultiFieldClfrSrcPrefixLength"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrSrcPrefixLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrDscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry/diffServMultiFieldClfrDscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable",
                    "diffServMultiFieldClfrEntry",
                    "diffServMultiFieldClfrDscp"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrDscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrFlowId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry/diffServMultiFieldClfrFlowId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable",
                    "diffServMultiFieldClfrEntry",
                    "diffServMultiFieldClfrFlowId"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrFlowId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry/diffServMultiFieldClfrProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable",
                    "diffServMultiFieldClfrEntry",
                    "diffServMultiFieldClfrProtocol"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrDstL4PortMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry/diffServMultiFieldClfrDstL4PortMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable",
                    "diffServMultiFieldClfrEntry",
                    "diffServMultiFieldClfrDstL4PortMin"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrDstL4PortMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrDstL4PortMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry/diffServMultiFieldClfrDstL4PortMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable",
                    "diffServMultiFieldClfrEntry",
                    "diffServMultiFieldClfrDstL4PortMax"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrDstL4PortMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrSrcL4PortMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry/diffServMultiFieldClfrSrcL4PortMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable",
                    "diffServMultiFieldClfrEntry",
                    "diffServMultiFieldClfrSrcL4PortMin"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrSrcL4PortMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrSrcL4PortMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry/diffServMultiFieldClfrSrcL4PortMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable",
                    "diffServMultiFieldClfrEntry",
                    "diffServMultiFieldClfrSrcL4PortMax"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrSrcL4PortMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry/diffServMultiFieldClfrStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable",
                    "diffServMultiFieldClfrEntry",
                    "diffServMultiFieldClfrStorage"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMultiFieldClfrStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMultiFieldClfrTable/diffServMultiFieldClfrEntry/diffServMultiFieldClfrStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMultiFieldClfrTable",
                    "diffServMultiFieldClfrEntry",
                    "diffServMultiFieldClfrStatus"
                  ]
                },
                "description": "Retrieve diffServMultiFieldClfrStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMeterTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMeterTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMeterTable"
                  ]
                },
                "description": "Retrieve diffServMeterTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMeterEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMeterTable/diffServMeterEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMeterTable",
                    "diffServMeterEntry"
                  ]
                },
                "description": "Retrieve diffServMeterEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMeterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMeterTable/diffServMeterEntry/diffServMeterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMeterTable",
                    "diffServMeterEntry",
                    "diffServMeterId"
                  ]
                },
                "description": "Retrieve diffServMeterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMeterSucceedNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMeterTable/diffServMeterEntry/diffServMeterSucceedNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMeterTable",
                    "diffServMeterEntry",
                    "diffServMeterSucceedNext"
                  ]
                },
                "description": "Retrieve diffServMeterSucceedNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMeterFailNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMeterTable/diffServMeterEntry/diffServMeterFailNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMeterTable",
                    "diffServMeterEntry",
                    "diffServMeterFailNext"
                  ]
                },
                "description": "Retrieve diffServMeterFailNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMeterSpecific",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMeterTable/diffServMeterEntry/diffServMeterSpecific",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMeterTable",
                    "diffServMeterEntry",
                    "diffServMeterSpecific"
                  ]
                },
                "description": "Retrieve diffServMeterSpecific from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMeterStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMeterTable/diffServMeterEntry/diffServMeterStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMeterTable",
                    "diffServMeterEntry",
                    "diffServMeterStorage"
                  ]
                },
                "description": "Retrieve diffServMeterStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMeterStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMeterTable/diffServMeterEntry/diffServMeterStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMeterTable",
                    "diffServMeterEntry",
                    "diffServMeterStatus"
                  ]
                },
                "description": "Retrieve diffServMeterStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServTBParamTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServTBParamTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServTBParamTable"
                  ]
                },
                "description": "Retrieve diffServTBParamTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServTBParamEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServTBParamTable/diffServTBParamEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServTBParamTable",
                    "diffServTBParamEntry"
                  ]
                },
                "description": "Retrieve diffServTBParamEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServTBParamId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServTBParamTable/diffServTBParamEntry/diffServTBParamId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServTBParamTable",
                    "diffServTBParamEntry",
                    "diffServTBParamId"
                  ]
                },
                "description": "Retrieve diffServTBParamId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServTBParamType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServTBParamTable/diffServTBParamEntry/diffServTBParamType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServTBParamTable",
                    "diffServTBParamEntry",
                    "diffServTBParamType"
                  ]
                },
                "description": "Retrieve diffServTBParamType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServTBParamRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServTBParamTable/diffServTBParamEntry/diffServTBParamRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServTBParamTable",
                    "diffServTBParamEntry",
                    "diffServTBParamRate"
                  ]
                },
                "description": "Retrieve diffServTBParamRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServTBParamBurstSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServTBParamTable/diffServTBParamEntry/diffServTBParamBurstSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServTBParamTable",
                    "diffServTBParamEntry",
                    "diffServTBParamBurstSize"
                  ]
                },
                "description": "Retrieve diffServTBParamBurstSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServTBParamInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServTBParamTable/diffServTBParamEntry/diffServTBParamInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServTBParamTable",
                    "diffServTBParamEntry",
                    "diffServTBParamInterval"
                  ]
                },
                "description": "Retrieve diffServTBParamInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServTBParamStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServTBParamTable/diffServTBParamEntry/diffServTBParamStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServTBParamTable",
                    "diffServTBParamEntry",
                    "diffServTBParamStorage"
                  ]
                },
                "description": "Retrieve diffServTBParamStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServTBParamStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServTBParamTable/diffServTBParamEntry/diffServTBParamStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServTBParamTable",
                    "diffServTBParamEntry",
                    "diffServTBParamStatus"
                  ]
                },
                "description": "Retrieve diffServTBParamStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServActionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServActionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServActionTable"
                  ]
                },
                "description": "Retrieve diffServActionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServActionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServActionTable/diffServActionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServActionTable",
                    "diffServActionEntry"
                  ]
                },
                "description": "Retrieve diffServActionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServActionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServActionTable/diffServActionEntry/diffServActionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServActionTable",
                    "diffServActionEntry",
                    "diffServActionId"
                  ]
                },
                "description": "Retrieve diffServActionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServActionInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServActionTable/diffServActionEntry/diffServActionInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServActionTable",
                    "diffServActionEntry",
                    "diffServActionInterface"
                  ]
                },
                "description": "Retrieve diffServActionInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServActionNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServActionTable/diffServActionEntry/diffServActionNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServActionTable",
                    "diffServActionEntry",
                    "diffServActionNext"
                  ]
                },
                "description": "Retrieve diffServActionNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServActionSpecific",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServActionTable/diffServActionEntry/diffServActionSpecific",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServActionTable",
                    "diffServActionEntry",
                    "diffServActionSpecific"
                  ]
                },
                "description": "Retrieve diffServActionSpecific from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServActionStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServActionTable/diffServActionEntry/diffServActionStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServActionTable",
                    "diffServActionEntry",
                    "diffServActionStorage"
                  ]
                },
                "description": "Retrieve diffServActionStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServActionStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServActionTable/diffServActionEntry/diffServActionStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServActionTable",
                    "diffServActionEntry",
                    "diffServActionStatus"
                  ]
                },
                "description": "Retrieve diffServActionStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServDscpMarkActTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServDscpMarkActTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServDscpMarkActTable"
                  ]
                },
                "description": "Retrieve diffServDscpMarkActTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServDscpMarkActEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServDscpMarkActTable/diffServDscpMarkActEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServDscpMarkActTable",
                    "diffServDscpMarkActEntry"
                  ]
                },
                "description": "Retrieve diffServDscpMarkActEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServDscpMarkActDscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServDscpMarkActTable/diffServDscpMarkActEntry/diffServDscpMarkActDscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServDscpMarkActTable",
                    "diffServDscpMarkActEntry",
                    "diffServDscpMarkActDscp"
                  ]
                },
                "description": "Retrieve diffServDscpMarkActDscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServCountActTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServCountActTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServCountActTable"
                  ]
                },
                "description": "Retrieve diffServCountActTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServCountActEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServCountActTable/diffServCountActEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServCountActTable",
                    "diffServCountActEntry"
                  ]
                },
                "description": "Retrieve diffServCountActEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServCountActId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServCountActTable/diffServCountActEntry/diffServCountActId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServCountActTable",
                    "diffServCountActEntry",
                    "diffServCountActId"
                  ]
                },
                "description": "Retrieve diffServCountActId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServCountActOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServCountActTable/diffServCountActEntry/diffServCountActOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServCountActTable",
                    "diffServCountActEntry",
                    "diffServCountActOctets"
                  ]
                },
                "description": "Retrieve diffServCountActOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServCountActPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServCountActTable/diffServCountActEntry/diffServCountActPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServCountActTable",
                    "diffServCountActEntry",
                    "diffServCountActPkts"
                  ]
                },
                "description": "Retrieve diffServCountActPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServCountActStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServCountActTable/diffServCountActEntry/diffServCountActStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServCountActTable",
                    "diffServCountActEntry",
                    "diffServCountActStorage"
                  ]
                },
                "description": "Retrieve diffServCountActStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServCountActStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServCountActTable/diffServCountActEntry/diffServCountActStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServCountActTable",
                    "diffServCountActEntry",
                    "diffServCountActStatus"
                  ]
                },
                "description": "Retrieve diffServCountActStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAlgDropTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDropTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDropTable"
                  ]
                },
                "description": "Retrieve diffServAlgDropTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAlgDropEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDropTable/diffServAlgDropEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDropTable",
                    "diffServAlgDropEntry"
                  ]
                },
                "description": "Retrieve diffServAlgDropEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAlgDropId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDropTable/diffServAlgDropEntry/diffServAlgDropId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDropTable",
                    "diffServAlgDropEntry",
                    "diffServAlgDropId"
                  ]
                },
                "description": "Retrieve diffServAlgDropId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAlgDropType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDropTable/diffServAlgDropEntry/diffServAlgDropType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDropTable",
                    "diffServAlgDropEntry",
                    "diffServAlgDropType"
                  ]
                },
                "description": "Retrieve diffServAlgDropType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAlgDropNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDropTable/diffServAlgDropEntry/diffServAlgDropNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDropTable",
                    "diffServAlgDropEntry",
                    "diffServAlgDropNext"
                  ]
                },
                "description": "Retrieve diffServAlgDropNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAlgDropQMeasure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDropTable/diffServAlgDropEntry/diffServAlgDropQMeasure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDropTable",
                    "diffServAlgDropEntry",
                    "diffServAlgDropQMeasure"
                  ]
                },
                "description": "Retrieve diffServAlgDropQMeasure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAlgDropQThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDropTable/diffServAlgDropEntry/diffServAlgDropQThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDropTable",
                    "diffServAlgDropEntry",
                    "diffServAlgDropQThreshold"
                  ]
                },
                "description": "Retrieve diffServAlgDropQThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAlgDropSpecific",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDropTable/diffServAlgDropEntry/diffServAlgDropSpecific",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDropTable",
                    "diffServAlgDropEntry",
                    "diffServAlgDropSpecific"
                  ]
                },
                "description": "Retrieve diffServAlgDropSpecific from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAlgDropOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDropTable/diffServAlgDropEntry/diffServAlgDropOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDropTable",
                    "diffServAlgDropEntry",
                    "diffServAlgDropOctets"
                  ]
                },
                "description": "Retrieve diffServAlgDropOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAlgDropPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDropTable/diffServAlgDropEntry/diffServAlgDropPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDropTable",
                    "diffServAlgDropEntry",
                    "diffServAlgDropPkts"
                  ]
                },
                "description": "Retrieve diffServAlgDropPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAlgRandomDropOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDropTable/diffServAlgDropEntry/diffServAlgRandomDropOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDropTable",
                    "diffServAlgDropEntry",
                    "diffServAlgRandomDropOctets"
                  ]
                },
                "description": "Retrieve diffServAlgRandomDropOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAlgRandomDropPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDropTable/diffServAlgDropEntry/diffServAlgRandomDropPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDropTable",
                    "diffServAlgDropEntry",
                    "diffServAlgRandomDropPkts"
                  ]
                },
                "description": "Retrieve diffServAlgRandomDropPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAlgDropStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDropTable/diffServAlgDropEntry/diffServAlgDropStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDropTable",
                    "diffServAlgDropEntry",
                    "diffServAlgDropStorage"
                  ]
                },
                "description": "Retrieve diffServAlgDropStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServAlgDropStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServAlgDropTable/diffServAlgDropEntry/diffServAlgDropStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServAlgDropTable",
                    "diffServAlgDropEntry",
                    "diffServAlgDropStatus"
                  ]
                },
                "description": "Retrieve diffServAlgDropStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServRandomDropTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServRandomDropTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServRandomDropTable"
                  ]
                },
                "description": "Retrieve diffServRandomDropTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServRandomDropEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServRandomDropTable/diffServRandomDropEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServRandomDropTable",
                    "diffServRandomDropEntry"
                  ]
                },
                "description": "Retrieve diffServRandomDropEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServRandomDropId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServRandomDropTable/diffServRandomDropEntry/diffServRandomDropId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServRandomDropTable",
                    "diffServRandomDropEntry",
                    "diffServRandomDropId"
                  ]
                },
                "description": "Retrieve diffServRandomDropId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServRandomDropMinThreshBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServRandomDropTable/diffServRandomDropEntry/diffServRandomDropMinThreshBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServRandomDropTable",
                    "diffServRandomDropEntry",
                    "diffServRandomDropMinThreshBytes"
                  ]
                },
                "description": "Retrieve diffServRandomDropMinThreshBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServRandomDropMinThreshPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServRandomDropTable/diffServRandomDropEntry/diffServRandomDropMinThreshPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServRandomDropTable",
                    "diffServRandomDropEntry",
                    "diffServRandomDropMinThreshPkts"
                  ]
                },
                "description": "Retrieve diffServRandomDropMinThreshPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServRandomDropMaxThreshBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServRandomDropTable/diffServRandomDropEntry/diffServRandomDropMaxThreshBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServRandomDropTable",
                    "diffServRandomDropEntry",
                    "diffServRandomDropMaxThreshBytes"
                  ]
                },
                "description": "Retrieve diffServRandomDropMaxThreshBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServRandomDropMaxThreshPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServRandomDropTable/diffServRandomDropEntry/diffServRandomDropMaxThreshPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServRandomDropTable",
                    "diffServRandomDropEntry",
                    "diffServRandomDropMaxThreshPkts"
                  ]
                },
                "description": "Retrieve diffServRandomDropMaxThreshPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServRandomDropProbMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServRandomDropTable/diffServRandomDropEntry/diffServRandomDropProbMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServRandomDropTable",
                    "diffServRandomDropEntry",
                    "diffServRandomDropProbMax"
                  ]
                },
                "description": "Retrieve diffServRandomDropProbMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServRandomDropWeight",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServRandomDropTable/diffServRandomDropEntry/diffServRandomDropWeight",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServRandomDropTable",
                    "diffServRandomDropEntry",
                    "diffServRandomDropWeight"
                  ]
                },
                "description": "Retrieve diffServRandomDropWeight from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServRandomDropSamplingRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServRandomDropTable/diffServRandomDropEntry/diffServRandomDropSamplingRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServRandomDropTable",
                    "diffServRandomDropEntry",
                    "diffServRandomDropSamplingRate"
                  ]
                },
                "description": "Retrieve diffServRandomDropSamplingRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServRandomDropStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServRandomDropTable/diffServRandomDropEntry/diffServRandomDropStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServRandomDropTable",
                    "diffServRandomDropEntry",
                    "diffServRandomDropStorage"
                  ]
                },
                "description": "Retrieve diffServRandomDropStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServRandomDropStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServRandomDropTable/diffServRandomDropEntry/diffServRandomDropStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServRandomDropTable",
                    "diffServRandomDropEntry",
                    "diffServRandomDropStatus"
                  ]
                },
                "description": "Retrieve diffServRandomDropStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServQTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServQTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServQTable"
                  ]
                },
                "description": "Retrieve diffServQTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServQEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServQTable/diffServQEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServQTable",
                    "diffServQEntry"
                  ]
                },
                "description": "Retrieve diffServQEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServQId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServQTable/diffServQEntry/diffServQId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServQTable",
                    "diffServQEntry",
                    "diffServQId"
                  ]
                },
                "description": "Retrieve diffServQId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServQNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServQTable/diffServQEntry/diffServQNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServQTable",
                    "diffServQEntry",
                    "diffServQNext"
                  ]
                },
                "description": "Retrieve diffServQNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServQMinRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServQTable/diffServQEntry/diffServQMinRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServQTable",
                    "diffServQEntry",
                    "diffServQMinRate"
                  ]
                },
                "description": "Retrieve diffServQMinRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServQMaxRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServQTable/diffServQEntry/diffServQMaxRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServQTable",
                    "diffServQEntry",
                    "diffServQMaxRate"
                  ]
                },
                "description": "Retrieve diffServQMaxRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServQStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServQTable/diffServQEntry/diffServQStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServQTable",
                    "diffServQEntry",
                    "diffServQStorage"
                  ]
                },
                "description": "Retrieve diffServQStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServQStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServQTable/diffServQEntry/diffServQStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServQTable",
                    "diffServQEntry",
                    "diffServQStatus"
                  ]
                },
                "description": "Retrieve diffServQStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServSchedulerTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServSchedulerTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServSchedulerTable"
                  ]
                },
                "description": "Retrieve diffServSchedulerTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServSchedulerEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServSchedulerTable/diffServSchedulerEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServSchedulerTable",
                    "diffServSchedulerEntry"
                  ]
                },
                "description": "Retrieve diffServSchedulerEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServSchedulerId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServSchedulerTable/diffServSchedulerEntry/diffServSchedulerId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServSchedulerTable",
                    "diffServSchedulerEntry",
                    "diffServSchedulerId"
                  ]
                },
                "description": "Retrieve diffServSchedulerId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServSchedulerNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServSchedulerTable/diffServSchedulerEntry/diffServSchedulerNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServSchedulerTable",
                    "diffServSchedulerEntry",
                    "diffServSchedulerNext"
                  ]
                },
                "description": "Retrieve diffServSchedulerNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServSchedulerMethod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServSchedulerTable/diffServSchedulerEntry/diffServSchedulerMethod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServSchedulerTable",
                    "diffServSchedulerEntry",
                    "diffServSchedulerMethod"
                  ]
                },
                "description": "Retrieve diffServSchedulerMethod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServSchedulerMinRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServSchedulerTable/diffServSchedulerEntry/diffServSchedulerMinRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServSchedulerTable",
                    "diffServSchedulerEntry",
                    "diffServSchedulerMinRate"
                  ]
                },
                "description": "Retrieve diffServSchedulerMinRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServSchedulerMaxRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServSchedulerTable/diffServSchedulerEntry/diffServSchedulerMaxRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServSchedulerTable",
                    "diffServSchedulerEntry",
                    "diffServSchedulerMaxRate"
                  ]
                },
                "description": "Retrieve diffServSchedulerMaxRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServSchedulerStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServSchedulerTable/diffServSchedulerEntry/diffServSchedulerStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServSchedulerTable",
                    "diffServSchedulerEntry",
                    "diffServSchedulerStorage"
                  ]
                },
                "description": "Retrieve diffServSchedulerStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServSchedulerStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServSchedulerTable/diffServSchedulerEntry/diffServSchedulerStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServSchedulerTable",
                    "diffServSchedulerEntry",
                    "diffServSchedulerStatus"
                  ]
                },
                "description": "Retrieve diffServSchedulerStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMinRateTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMinRateTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMinRateTable"
                  ]
                },
                "description": "Retrieve diffServMinRateTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMinRateEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMinRateTable/diffServMinRateEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMinRateTable",
                    "diffServMinRateEntry"
                  ]
                },
                "description": "Retrieve diffServMinRateEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMinRateId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMinRateTable/diffServMinRateEntry/diffServMinRateId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMinRateTable",
                    "diffServMinRateEntry",
                    "diffServMinRateId"
                  ]
                },
                "description": "Retrieve diffServMinRateId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMinRatePriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMinRateTable/diffServMinRateEntry/diffServMinRatePriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMinRateTable",
                    "diffServMinRateEntry",
                    "diffServMinRatePriority"
                  ]
                },
                "description": "Retrieve diffServMinRatePriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMinRateAbsolute",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMinRateTable/diffServMinRateEntry/diffServMinRateAbsolute",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMinRateTable",
                    "diffServMinRateEntry",
                    "diffServMinRateAbsolute"
                  ]
                },
                "description": "Retrieve diffServMinRateAbsolute from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMinRateRelative",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMinRateTable/diffServMinRateEntry/diffServMinRateRelative",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMinRateTable",
                    "diffServMinRateEntry",
                    "diffServMinRateRelative"
                  ]
                },
                "description": "Retrieve diffServMinRateRelative from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMinRateStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMinRateTable/diffServMinRateEntry/diffServMinRateStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMinRateTable",
                    "diffServMinRateEntry",
                    "diffServMinRateStorage"
                  ]
                },
                "description": "Retrieve diffServMinRateStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMinRateStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMinRateTable/diffServMinRateEntry/diffServMinRateStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMinRateTable",
                    "diffServMinRateEntry",
                    "diffServMinRateStatus"
                  ]
                },
                "description": "Retrieve diffServMinRateStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMaxRateTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMaxRateTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMaxRateTable"
                  ]
                },
                "description": "Retrieve diffServMaxRateTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMaxRateEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMaxRateTable/diffServMaxRateEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMaxRateTable",
                    "diffServMaxRateEntry"
                  ]
                },
                "description": "Retrieve diffServMaxRateEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMaxRateId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMaxRateTable/diffServMaxRateEntry/diffServMaxRateId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMaxRateTable",
                    "diffServMaxRateEntry",
                    "diffServMaxRateId"
                  ]
                },
                "description": "Retrieve diffServMaxRateId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMaxRateLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMaxRateTable/diffServMaxRateEntry/diffServMaxRateLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMaxRateTable",
                    "diffServMaxRateEntry",
                    "diffServMaxRateLevel"
                  ]
                },
                "description": "Retrieve diffServMaxRateLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMaxRateAbsolute",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMaxRateTable/diffServMaxRateEntry/diffServMaxRateAbsolute",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMaxRateTable",
                    "diffServMaxRateEntry",
                    "diffServMaxRateAbsolute"
                  ]
                },
                "description": "Retrieve diffServMaxRateAbsolute from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMaxRateRelative",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMaxRateTable/diffServMaxRateEntry/diffServMaxRateRelative",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMaxRateTable",
                    "diffServMaxRateEntry",
                    "diffServMaxRateRelative"
                  ]
                },
                "description": "Retrieve diffServMaxRateRelative from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMaxRateThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMaxRateTable/diffServMaxRateEntry/diffServMaxRateThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMaxRateTable",
                    "diffServMaxRateEntry",
                    "diffServMaxRateThreshold"
                  ]
                },
                "description": "Retrieve diffServMaxRateThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMaxRateStorage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMaxRateTable/diffServMaxRateEntry/diffServMaxRateStorage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMaxRateTable",
                    "diffServMaxRateEntry",
                    "diffServMaxRateStorage"
                  ]
                },
                "description": "Retrieve diffServMaxRateStorage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get diffServMaxRateStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DIFFSERV-MIB:DIFFSERV-MIB/diffServMaxRateTable/diffServMaxRateEntry/diffServMaxRateStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DIFFSERV-MIB:DIFFSERV-MIB",
                    "diffServMaxRateTable",
                    "diffServMaxRateEntry",
                    "diffServMaxRateStatus"
                  ]
                },
                "description": "Retrieve diffServMaxRateStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "DISMAN-EVENT-MIB",
          "description": "Cisco IOS-XE MIB - DISMAN-EVENT-MIB\n\nMIB data from `DISMAN-EVENT-MIB` module.\n\n**Root containers:** 1 (DISMAN-EVENT-MIB)\n**Paths:** 119 | **Descendants:** 157\n\nAll endpoints are read-only (GET).\n\nEndpoints: 119 | Operations: 119",
          "item": [
            {
              "name": "GET Get DISMAN-EVENT-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB"
                  ]
                },
                "description": "Retrieve DISMAN-EVENT-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteResource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteResource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteResource"
                  ]
                },
                "description": "Retrieve mteResource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteResourceSampleMinimum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteResource/mteResourceSampleMinimum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteResource",
                    "mteResourceSampleMinimum"
                  ]
                },
                "description": "Retrieve mteResourceSampleMinimum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteResourceSampleInstanceMaximum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteResource/mteResourceSampleInstanceMaximum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteResource",
                    "mteResourceSampleInstanceMaximum"
                  ]
                },
                "description": "Retrieve mteResourceSampleInstanceMaximum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteResourceSampleInstances",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteResource/mteResourceSampleInstances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteResource",
                    "mteResourceSampleInstances"
                  ]
                },
                "description": "Retrieve mteResourceSampleInstances from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteResourceSampleInstancesHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteResource/mteResourceSampleInstancesHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteResource",
                    "mteResourceSampleInstancesHigh"
                  ]
                },
                "description": "Retrieve mteResourceSampleInstancesHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteResourceSampleInstanceLacks",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteResource/mteResourceSampleInstanceLacks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteResource",
                    "mteResourceSampleInstanceLacks"
                  ]
                },
                "description": "Retrieve mteResourceSampleInstanceLacks from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTrigger",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTrigger",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTrigger"
                  ]
                },
                "description": "Retrieve mteTrigger from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTrigger/mteTriggerFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTrigger",
                    "mteTriggerFailures"
                  ]
                },
                "description": "Retrieve mteTriggerFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEvent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEvent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEvent"
                  ]
                },
                "description": "Retrieve mteEvent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEvent/mteEventFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEvent",
                    "mteEventFailures"
                  ]
                },
                "description": "Retrieve mteEventFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable"
                  ]
                },
                "description": "Retrieve mteTriggerTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable/mteTriggerEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable",
                    "mteTriggerEntry"
                  ]
                },
                "description": "Retrieve mteTriggerEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable/mteTriggerEntry/mteOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable",
                    "mteTriggerEntry",
                    "mteOwner"
                  ]
                },
                "description": "Retrieve mteOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable/mteTriggerEntry/mteTriggerName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable",
                    "mteTriggerEntry",
                    "mteTriggerName"
                  ]
                },
                "description": "Retrieve mteTriggerName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerComment",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable/mteTriggerEntry/mteTriggerComment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable",
                    "mteTriggerEntry",
                    "mteTriggerComment"
                  ]
                },
                "description": "Retrieve mteTriggerComment from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerTest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable/mteTriggerEntry/mteTriggerTest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable",
                    "mteTriggerEntry",
                    "mteTriggerTest"
                  ]
                },
                "description": "Retrieve mteTriggerTest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerSampleType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable/mteTriggerEntry/mteTriggerSampleType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable",
                    "mteTriggerEntry",
                    "mteTriggerSampleType"
                  ]
                },
                "description": "Retrieve mteTriggerSampleType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerValueID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable/mteTriggerEntry/mteTriggerValueID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable",
                    "mteTriggerEntry",
                    "mteTriggerValueID"
                  ]
                },
                "description": "Retrieve mteTriggerValueID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerValueIDWildcard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable/mteTriggerEntry/mteTriggerValueIDWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable",
                    "mteTriggerEntry",
                    "mteTriggerValueIDWildcard"
                  ]
                },
                "description": "Retrieve mteTriggerValueIDWildcard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerTargetTag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable/mteTriggerEntry/mteTriggerTargetTag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable",
                    "mteTriggerEntry",
                    "mteTriggerTargetTag"
                  ]
                },
                "description": "Retrieve mteTriggerTargetTag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerContextName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable/mteTriggerEntry/mteTriggerContextName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable",
                    "mteTriggerEntry",
                    "mteTriggerContextName"
                  ]
                },
                "description": "Retrieve mteTriggerContextName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerContextNameWildcard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable/mteTriggerEntry/mteTriggerContextNameWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable",
                    "mteTriggerEntry",
                    "mteTriggerContextNameWildcard"
                  ]
                },
                "description": "Retrieve mteTriggerContextNameWildcard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerFrequency",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable/mteTriggerEntry/mteTriggerFrequency",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable",
                    "mteTriggerEntry",
                    "mteTriggerFrequency"
                  ]
                },
                "description": "Retrieve mteTriggerFrequency from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerObjectsOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable/mteTriggerEntry/mteTriggerObjectsOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable",
                    "mteTriggerEntry",
                    "mteTriggerObjectsOwner"
                  ]
                },
                "description": "Retrieve mteTriggerObjectsOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable/mteTriggerEntry/mteTriggerObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable",
                    "mteTriggerEntry",
                    "mteTriggerObjects"
                  ]
                },
                "description": "Retrieve mteTriggerObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable/mteTriggerEntry/mteTriggerEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable",
                    "mteTriggerEntry",
                    "mteTriggerEnabled"
                  ]
                },
                "description": "Retrieve mteTriggerEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerEntryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerTable/mteTriggerEntry/mteTriggerEntryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerTable",
                    "mteTriggerEntry",
                    "mteTriggerEntryStatus"
                  ]
                },
                "description": "Retrieve mteTriggerEntryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerDeltaTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerDeltaTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerDeltaTable"
                  ]
                },
                "description": "Retrieve mteTriggerDeltaTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerDeltaEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerDeltaTable/mteTriggerDeltaEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerDeltaTable",
                    "mteTriggerDeltaEntry"
                  ]
                },
                "description": "Retrieve mteTriggerDeltaEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerDeltaTable/mteTriggerDeltaEntry/mteOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerDeltaTable",
                    "mteTriggerDeltaEntry",
                    "mteOwner"
                  ]
                },
                "description": "Retrieve mteOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerDeltaTable/mteTriggerDeltaEntry/mteTriggerName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerDeltaTable",
                    "mteTriggerDeltaEntry",
                    "mteTriggerName"
                  ]
                },
                "description": "Retrieve mteTriggerName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerDeltaDiscontinuityID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerDeltaTable/mteTriggerDeltaEntry/mteTriggerDeltaDiscontinuityID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerDeltaTable",
                    "mteTriggerDeltaEntry",
                    "mteTriggerDeltaDiscontinuityID"
                  ]
                },
                "description": "Retrieve mteTriggerDeltaDiscontinuityID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerDeltaDiscontinuityIDWildcard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerDeltaTable/mteTriggerDeltaEntry/mteTriggerDeltaDiscontinuityIDWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerDeltaTable",
                    "mteTriggerDeltaEntry",
                    "mteTriggerDeltaDiscontinuityIDWildcard"
                  ]
                },
                "description": "Retrieve mteTriggerDeltaDiscontinuityIDWildcard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerDeltaDiscontinuityIDType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerDeltaTable/mteTriggerDeltaEntry/mteTriggerDeltaDiscontinuityIDType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerDeltaTable",
                    "mteTriggerDeltaEntry",
                    "mteTriggerDeltaDiscontinuityIDType"
                  ]
                },
                "description": "Retrieve mteTriggerDeltaDiscontinuityIDType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerExistenceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerExistenceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerExistenceTable"
                  ]
                },
                "description": "Retrieve mteTriggerExistenceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerExistenceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerExistenceTable/mteTriggerExistenceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerExistenceTable",
                    "mteTriggerExistenceEntry"
                  ]
                },
                "description": "Retrieve mteTriggerExistenceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerExistenceTable/mteTriggerExistenceEntry/mteOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerExistenceTable",
                    "mteTriggerExistenceEntry",
                    "mteOwner"
                  ]
                },
                "description": "Retrieve mteOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerExistenceTable/mteTriggerExistenceEntry/mteTriggerName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerExistenceTable",
                    "mteTriggerExistenceEntry",
                    "mteTriggerName"
                  ]
                },
                "description": "Retrieve mteTriggerName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerExistenceTest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerExistenceTable/mteTriggerExistenceEntry/mteTriggerExistenceTest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerExistenceTable",
                    "mteTriggerExistenceEntry",
                    "mteTriggerExistenceTest"
                  ]
                },
                "description": "Retrieve mteTriggerExistenceTest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerExistenceStartup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerExistenceTable/mteTriggerExistenceEntry/mteTriggerExistenceStartup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerExistenceTable",
                    "mteTriggerExistenceEntry",
                    "mteTriggerExistenceStartup"
                  ]
                },
                "description": "Retrieve mteTriggerExistenceStartup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerExistenceObjectsOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerExistenceTable/mteTriggerExistenceEntry/mteTriggerExistenceObjectsOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerExistenceTable",
                    "mteTriggerExistenceEntry",
                    "mteTriggerExistenceObjectsOwner"
                  ]
                },
                "description": "Retrieve mteTriggerExistenceObjectsOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerExistenceObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerExistenceTable/mteTriggerExistenceEntry/mteTriggerExistenceObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerExistenceTable",
                    "mteTriggerExistenceEntry",
                    "mteTriggerExistenceObjects"
                  ]
                },
                "description": "Retrieve mteTriggerExistenceObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerExistenceEventOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerExistenceTable/mteTriggerExistenceEntry/mteTriggerExistenceEventOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerExistenceTable",
                    "mteTriggerExistenceEntry",
                    "mteTriggerExistenceEventOwner"
                  ]
                },
                "description": "Retrieve mteTriggerExistenceEventOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerExistenceEvent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerExistenceTable/mteTriggerExistenceEntry/mteTriggerExistenceEvent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerExistenceTable",
                    "mteTriggerExistenceEntry",
                    "mteTriggerExistenceEvent"
                  ]
                },
                "description": "Retrieve mteTriggerExistenceEvent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerBooleanTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerBooleanTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerBooleanTable"
                  ]
                },
                "description": "Retrieve mteTriggerBooleanTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerBooleanEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerBooleanTable/mteTriggerBooleanEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerBooleanTable",
                    "mteTriggerBooleanEntry"
                  ]
                },
                "description": "Retrieve mteTriggerBooleanEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerBooleanTable/mteTriggerBooleanEntry/mteOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerBooleanTable",
                    "mteTriggerBooleanEntry",
                    "mteOwner"
                  ]
                },
                "description": "Retrieve mteOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerBooleanTable/mteTriggerBooleanEntry/mteTriggerName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerBooleanTable",
                    "mteTriggerBooleanEntry",
                    "mteTriggerName"
                  ]
                },
                "description": "Retrieve mteTriggerName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerBooleanComparison",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerBooleanTable/mteTriggerBooleanEntry/mteTriggerBooleanComparison",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerBooleanTable",
                    "mteTriggerBooleanEntry",
                    "mteTriggerBooleanComparison"
                  ]
                },
                "description": "Retrieve mteTriggerBooleanComparison from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerBooleanValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerBooleanTable/mteTriggerBooleanEntry/mteTriggerBooleanValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerBooleanTable",
                    "mteTriggerBooleanEntry",
                    "mteTriggerBooleanValue"
                  ]
                },
                "description": "Retrieve mteTriggerBooleanValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerBooleanStartup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerBooleanTable/mteTriggerBooleanEntry/mteTriggerBooleanStartup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerBooleanTable",
                    "mteTriggerBooleanEntry",
                    "mteTriggerBooleanStartup"
                  ]
                },
                "description": "Retrieve mteTriggerBooleanStartup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerBooleanObjectsOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerBooleanTable/mteTriggerBooleanEntry/mteTriggerBooleanObjectsOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerBooleanTable",
                    "mteTriggerBooleanEntry",
                    "mteTriggerBooleanObjectsOwner"
                  ]
                },
                "description": "Retrieve mteTriggerBooleanObjectsOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerBooleanObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerBooleanTable/mteTriggerBooleanEntry/mteTriggerBooleanObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerBooleanTable",
                    "mteTriggerBooleanEntry",
                    "mteTriggerBooleanObjects"
                  ]
                },
                "description": "Retrieve mteTriggerBooleanObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerBooleanEventOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerBooleanTable/mteTriggerBooleanEntry/mteTriggerBooleanEventOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerBooleanTable",
                    "mteTriggerBooleanEntry",
                    "mteTriggerBooleanEventOwner"
                  ]
                },
                "description": "Retrieve mteTriggerBooleanEventOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerBooleanEvent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerBooleanTable/mteTriggerBooleanEntry/mteTriggerBooleanEvent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerBooleanTable",
                    "mteTriggerBooleanEntry",
                    "mteTriggerBooleanEvent"
                  ]
                },
                "description": "Retrieve mteTriggerBooleanEvent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteOwner"
                  ]
                },
                "description": "Retrieve mteOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteTriggerName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteTriggerName"
                  ]
                },
                "description": "Retrieve mteTriggerName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdStartup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteTriggerThresholdStartup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteTriggerThresholdStartup"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdStartup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdRising",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteTriggerThresholdRising",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteTriggerThresholdRising"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdRising from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdFalling",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteTriggerThresholdFalling",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteTriggerThresholdFalling"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdFalling from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdDeltaRising",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteTriggerThresholdDeltaRising",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteTriggerThresholdDeltaRising"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdDeltaRising from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdDeltaFalling",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteTriggerThresholdDeltaFalling",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteTriggerThresholdDeltaFalling"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdDeltaFalling from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdObjectsOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteTriggerThresholdObjectsOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteTriggerThresholdObjectsOwner"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdObjectsOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteTriggerThresholdObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteTriggerThresholdObjects"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdRisingEventOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteTriggerThresholdRisingEventOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteTriggerThresholdRisingEventOwner"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdRisingEventOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdRisingEvent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteTriggerThresholdRisingEvent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteTriggerThresholdRisingEvent"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdRisingEvent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdFallingEventOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteTriggerThresholdFallingEventOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteTriggerThresholdFallingEventOwner"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdFallingEventOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdFallingEvent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteTriggerThresholdFallingEvent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteTriggerThresholdFallingEvent"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdFallingEvent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdDeltaRisingEventOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteTriggerThresholdDeltaRisingEventOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteTriggerThresholdDeltaRisingEventOwner"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdDeltaRisingEventOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdDeltaRisingEvent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteTriggerThresholdDeltaRisingEvent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteTriggerThresholdDeltaRisingEvent"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdDeltaRisingEvent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdDeltaFallingEventOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteTriggerThresholdDeltaFallingEventOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteTriggerThresholdDeltaFallingEventOwner"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdDeltaFallingEventOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteTriggerThresholdDeltaFallingEvent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteTriggerThresholdTable/mteTriggerThresholdEntry/mteTriggerThresholdDeltaFallingEvent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteTriggerThresholdTable",
                    "mteTriggerThresholdEntry",
                    "mteTriggerThresholdDeltaFallingEvent"
                  ]
                },
                "description": "Retrieve mteTriggerThresholdDeltaFallingEvent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteObjectsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteObjectsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteObjectsTable"
                  ]
                },
                "description": "Retrieve mteObjectsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteObjectsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteObjectsTable/mteObjectsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteObjectsTable",
                    "mteObjectsEntry"
                  ]
                },
                "description": "Retrieve mteObjectsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteObjectsTable/mteObjectsEntry/mteOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteObjectsTable",
                    "mteObjectsEntry",
                    "mteOwner"
                  ]
                },
                "description": "Retrieve mteOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteObjectsName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteObjectsTable/mteObjectsEntry/mteObjectsName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteObjectsTable",
                    "mteObjectsEntry",
                    "mteObjectsName"
                  ]
                },
                "description": "Retrieve mteObjectsName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteObjectsIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteObjectsTable/mteObjectsEntry/mteObjectsIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteObjectsTable",
                    "mteObjectsEntry",
                    "mteObjectsIndex"
                  ]
                },
                "description": "Retrieve mteObjectsIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteObjectsID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteObjectsTable/mteObjectsEntry/mteObjectsID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteObjectsTable",
                    "mteObjectsEntry",
                    "mteObjectsID"
                  ]
                },
                "description": "Retrieve mteObjectsID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteObjectsIDWildcard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteObjectsTable/mteObjectsEntry/mteObjectsIDWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteObjectsTable",
                    "mteObjectsEntry",
                    "mteObjectsIDWildcard"
                  ]
                },
                "description": "Retrieve mteObjectsIDWildcard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteObjectsEntryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteObjectsTable/mteObjectsEntry/mteObjectsEntryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteObjectsTable",
                    "mteObjectsEntry",
                    "mteObjectsEntryStatus"
                  ]
                },
                "description": "Retrieve mteObjectsEntryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventTable"
                  ]
                },
                "description": "Retrieve mteEventTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventTable/mteEventEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventTable",
                    "mteEventEntry"
                  ]
                },
                "description": "Retrieve mteEventEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventTable/mteEventEntry/mteOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventTable",
                    "mteEventEntry",
                    "mteOwner"
                  ]
                },
                "description": "Retrieve mteOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventTable/mteEventEntry/mteEventName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventTable",
                    "mteEventEntry",
                    "mteEventName"
                  ]
                },
                "description": "Retrieve mteEventName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventComment",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventTable/mteEventEntry/mteEventComment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventTable",
                    "mteEventEntry",
                    "mteEventComment"
                  ]
                },
                "description": "Retrieve mteEventComment from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventActions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventTable/mteEventEntry/mteEventActions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventTable",
                    "mteEventEntry",
                    "mteEventActions"
                  ]
                },
                "description": "Retrieve mteEventActions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventTable/mteEventEntry/mteEventEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventTable",
                    "mteEventEntry",
                    "mteEventEnabled"
                  ]
                },
                "description": "Retrieve mteEventEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventEntryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventTable/mteEventEntry/mteEventEntryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventTable",
                    "mteEventEntry",
                    "mteEventEntryStatus"
                  ]
                },
                "description": "Retrieve mteEventEntryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventNotificationTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventNotificationTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventNotificationTable"
                  ]
                },
                "description": "Retrieve mteEventNotificationTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventNotificationEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventNotificationTable/mteEventNotificationEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventNotificationTable",
                    "mteEventNotificationEntry"
                  ]
                },
                "description": "Retrieve mteEventNotificationEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventNotificationTable/mteEventNotificationEntry/mteOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventNotificationTable",
                    "mteEventNotificationEntry",
                    "mteOwner"
                  ]
                },
                "description": "Retrieve mteOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventNotificationTable/mteEventNotificationEntry/mteEventName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventNotificationTable",
                    "mteEventNotificationEntry",
                    "mteEventName"
                  ]
                },
                "description": "Retrieve mteEventName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventNotification",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventNotificationTable/mteEventNotificationEntry/mteEventNotification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventNotificationTable",
                    "mteEventNotificationEntry",
                    "mteEventNotification"
                  ]
                },
                "description": "Retrieve mteEventNotification from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventNotificationObjectsOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventNotificationTable/mteEventNotificationEntry/mteEventNotificationObjectsOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventNotificationTable",
                    "mteEventNotificationEntry",
                    "mteEventNotificationObjectsOwner"
                  ]
                },
                "description": "Retrieve mteEventNotificationObjectsOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventNotificationObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventNotificationTable/mteEventNotificationEntry/mteEventNotificationObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventNotificationTable",
                    "mteEventNotificationEntry",
                    "mteEventNotificationObjects"
                  ]
                },
                "description": "Retrieve mteEventNotificationObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventSetTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable"
                  ]
                },
                "description": "Retrieve mteEventSetTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventSetEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/mteEventSetEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "mteEventSetEntry"
                  ]
                },
                "description": "Retrieve mteEventSetEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/mteEventSetEntry/mteOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "mteEventSetEntry",
                    "mteOwner"
                  ]
                },
                "description": "Retrieve mteOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/mteEventSetEntry/mteEventName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "mteEventSetEntry",
                    "mteEventName"
                  ]
                },
                "description": "Retrieve mteEventName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventSetObject",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/mteEventSetEntry/mteEventSetObject",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "mteEventSetEntry",
                    "mteEventSetObject"
                  ]
                },
                "description": "Retrieve mteEventSetObject from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventSetObjectWildcard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/mteEventSetEntry/mteEventSetObjectWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "mteEventSetEntry",
                    "mteEventSetObjectWildcard"
                  ]
                },
                "description": "Retrieve mteEventSetObjectWildcard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventSetValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/mteEventSetEntry/mteEventSetValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "mteEventSetEntry",
                    "mteEventSetValue"
                  ]
                },
                "description": "Retrieve mteEventSetValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventSetTargetTag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/mteEventSetEntry/mteEventSetTargetTag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "mteEventSetEntry",
                    "mteEventSetTargetTag"
                  ]
                },
                "description": "Retrieve mteEventSetTargetTag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventSetContextName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/mteEventSetEntry/mteEventSetContextName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "mteEventSetEntry",
                    "mteEventSetContextName"
                  ]
                },
                "description": "Retrieve mteEventSetContextName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteEventSetContextNameWildcard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/mteEventSetEntry/mteEventSetContextNameWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "mteEventSetEntry",
                    "mteEventSetContextNameWildcard"
                  ]
                },
                "description": "Retrieve mteEventSetContextNameWildcard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteHotTrigger",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/object-1/mteHotTrigger",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "object-1",
                    "mteHotTrigger"
                  ]
                },
                "description": "Retrieve mteHotTrigger from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteHotTargetName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/object-2/mteHotTargetName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "object-2",
                    "mteHotTargetName"
                  ]
                },
                "description": "Retrieve mteHotTargetName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteHotContextName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/object-3/mteHotContextName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "object-3",
                    "mteHotContextName"
                  ]
                },
                "description": "Retrieve mteHotContextName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteHotOID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/object-4/mteHotOID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "object-4",
                    "mteHotOID"
                  ]
                },
                "description": "Retrieve mteHotOID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteHotValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/object-5/mteHotValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "object-5",
                    "mteHotValue"
                  ]
                },
                "description": "Retrieve mteHotValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mteFailedReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EVENT-MIB:DISMAN-EVENT-MIB/mteEventSetTable/object-5/mteFailedReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EVENT-MIB:DISMAN-EVENT-MIB",
                    "mteEventSetTable",
                    "object-5",
                    "mteFailedReason"
                  ]
                },
                "description": "Retrieve mteFailedReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "DISMAN-EXPRESSION-MIB",
          "description": "Cisco IOS-XE MIB - DISMAN-EXPRESSION-MIB\n\nMIB data from `DISMAN-EXPRESSION-MIB` module.\n\n**Root containers:** 1 (DISMAN-EXPRESSION-MIB)\n**Paths:** 53 | **Descendants:** 52\n\nAll endpoints are read-only (GET).\n\nEndpoints: 53 | Operations: 53",
          "item": [
            {
              "name": "GET Get DISMAN-EXPRESSION-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB"
                  ]
                },
                "description": "Retrieve DISMAN-EXPRESSION-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expResource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expResource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expResource"
                  ]
                },
                "description": "Retrieve expResource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expResourceDeltaMinimum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expResource/expResourceDeltaMinimum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expResource",
                    "expResourceDeltaMinimum"
                  ]
                },
                "description": "Retrieve expResourceDeltaMinimum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expResourceDeltaWildcardInstanceMaximum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expResource/expResourceDeltaWildcardInstanceMaximum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expResource",
                    "expResourceDeltaWildcardInstanceMaximum"
                  ]
                },
                "description": "Retrieve expResourceDeltaWildcardInstanceMaximum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expResourceDeltaWildcardInstances",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expResource/expResourceDeltaWildcardInstances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expResource",
                    "expResourceDeltaWildcardInstances"
                  ]
                },
                "description": "Retrieve expResourceDeltaWildcardInstances from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expResourceDeltaWildcardInstancesHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expResource/expResourceDeltaWildcardInstancesHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expResource",
                    "expResourceDeltaWildcardInstancesHigh"
                  ]
                },
                "description": "Retrieve expResourceDeltaWildcardInstancesHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expResourceDeltaWildcardInstanceResourceLacks",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expResource/expResourceDeltaWildcardInstanceResourceLacks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expResource",
                    "expResourceDeltaWildcardInstanceResourceLacks"
                  ]
                },
                "description": "Retrieve expResourceDeltaWildcardInstanceResourceLacks from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expExpressionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expExpressionTable"
                  ]
                },
                "description": "Retrieve expExpressionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expExpressionTable/expExpressionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry"
                  ]
                },
                "description": "Retrieve expExpressionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionOwner"
                  ]
                },
                "description": "Retrieve expExpressionOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionName"
                  ]
                },
                "description": "Retrieve expExpressionName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpression",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpression",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpression"
                  ]
                },
                "description": "Retrieve expExpression from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionValueType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionValueType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionValueType"
                  ]
                },
                "description": "Retrieve expExpressionValueType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionComment",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionComment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionComment"
                  ]
                },
                "description": "Retrieve expExpressionComment from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionDeltaInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionDeltaInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionDeltaInterval"
                  ]
                },
                "description": "Retrieve expExpressionDeltaInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionPrefix"
                  ]
                },
                "description": "Retrieve expExpressionPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionErrors"
                  ]
                },
                "description": "Retrieve expExpressionErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionEntryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionEntryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionEntryStatus"
                  ]
                },
                "description": "Retrieve expExpressionEntryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expErrorTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expErrorTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expErrorTable"
                  ]
                },
                "description": "Retrieve expErrorTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expErrorEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expErrorTable/expErrorEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expErrorTable",
                    "expErrorEntry"
                  ]
                },
                "description": "Retrieve expErrorEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expErrorTable/expErrorEntry/expExpressionOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expErrorTable",
                    "expErrorEntry",
                    "expExpressionOwner"
                  ]
                },
                "description": "Retrieve expExpressionOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expErrorTable/expErrorEntry/expExpressionName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expErrorTable",
                    "expErrorEntry",
                    "expExpressionName"
                  ]
                },
                "description": "Retrieve expExpressionName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expErrorTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expErrorTable/expErrorEntry/expErrorTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expErrorTable",
                    "expErrorEntry",
                    "expErrorTime"
                  ]
                },
                "description": "Retrieve expErrorTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expErrorIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expErrorTable/expErrorEntry/expErrorIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expErrorTable",
                    "expErrorEntry",
                    "expErrorIndex"
                  ]
                },
                "description": "Retrieve expErrorIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expErrorCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expErrorTable/expErrorEntry/expErrorCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expErrorTable",
                    "expErrorEntry",
                    "expErrorCode"
                  ]
                },
                "description": "Retrieve expErrorCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expErrorInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expErrorTable/expErrorEntry/expErrorInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expErrorTable",
                    "expErrorEntry",
                    "expErrorInstance"
                  ]
                },
                "description": "Retrieve expErrorInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expObjectTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expObjectTable"
                  ]
                },
                "description": "Retrieve expObjectTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expObjectTable/expObjectEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry"
                  ]
                },
                "description": "Retrieve expObjectEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expObjectTable/expObjectEntry/expExpressionOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expExpressionOwner"
                  ]
                },
                "description": "Retrieve expExpressionOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expObjectTable/expObjectEntry/expExpressionName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expExpressionName"
                  ]
                },
                "description": "Retrieve expExpressionName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectIndex"
                  ]
                },
                "description": "Retrieve expObjectIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectID"
                  ]
                },
                "description": "Retrieve expObjectID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectIDWildcard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectIDWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectIDWildcard"
                  ]
                },
                "description": "Retrieve expObjectIDWildcard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectSampleType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectSampleType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectSampleType"
                  ]
                },
                "description": "Retrieve expObjectSampleType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectDeltaDiscontinuityID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectDeltaDiscontinuityID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectDeltaDiscontinuityID"
                  ]
                },
                "description": "Retrieve expObjectDeltaDiscontinuityID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectDiscontinuityIDWildcard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectDiscontinuityIDWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectDiscontinuityIDWildcard"
                  ]
                },
                "description": "Retrieve expObjectDiscontinuityIDWildcard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectDiscontinuityIDType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectDiscontinuityIDType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectDiscontinuityIDType"
                  ]
                },
                "description": "Retrieve expObjectDiscontinuityIDType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectConditional",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectConditional",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectConditional"
                  ]
                },
                "description": "Retrieve expObjectConditional from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectConditionalWildcard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectConditionalWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectConditionalWildcard"
                  ]
                },
                "description": "Retrieve expObjectConditionalWildcard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectEntryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectEntryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectEntryStatus"
                  ]
                },
                "description": "Retrieve expObjectEntryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expValueTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expValueTable"
                  ]
                },
                "description": "Retrieve expValueTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expValueTable/expValueEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry"
                  ]
                },
                "description": "Retrieve expValueEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expValueTable/expValueEntry/expExpressionOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expExpressionOwner"
                  ]
                },
                "description": "Retrieve expExpressionOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expValueTable/expValueEntry/expExpressionName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expExpressionName"
                  ]
                },
                "description": "Retrieve expExpressionName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expValueTable/expValueEntry/expValueInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueInstance"
                  ]
                },
                "description": "Retrieve expValueInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueCounter32Val",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expValueTable/expValueEntry/expValueCounter32Val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueCounter32Val"
                  ]
                },
                "description": "Retrieve expValueCounter32Val from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueUnsigned32Val",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expValueTable/expValueEntry/expValueUnsigned32Val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueUnsigned32Val"
                  ]
                },
                "description": "Retrieve expValueUnsigned32Val from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueTimeTicksVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expValueTable/expValueEntry/expValueTimeTicksVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueTimeTicksVal"
                  ]
                },
                "description": "Retrieve expValueTimeTicksVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueInteger32Val",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expValueTable/expValueEntry/expValueInteger32Val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueInteger32Val"
                  ]
                },
                "description": "Retrieve expValueInteger32Val from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueIpAddressVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expValueTable/expValueEntry/expValueIpAddressVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueIpAddressVal"
                  ]
                },
                "description": "Retrieve expValueIpAddressVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueOctetStringVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expValueTable/expValueEntry/expValueOctetStringVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueOctetStringVal"
                  ]
                },
                "description": "Retrieve expValueOctetStringVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueOidVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expValueTable/expValueEntry/expValueOidVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueOidVal"
                  ]
                },
                "description": "Retrieve expValueOidVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueCounter64Val",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB/expValueTable/expValueEntry/expValueCounter64Val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DISMAN-EXPRESSION-MIB:DISMAN-EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueCounter64Val"
                  ]
                },
                "description": "Retrieve expValueCounter64Val from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "DRAFT-MSDP-MIB",
          "description": "Cisco IOS-XE MIB - DRAFT-MSDP-MIB\n\nMIB data from `DRAFT-MSDP-MIB` module.\n\n**Root containers:** 1 (DRAFT-MSDP-MIB)\n**Paths:** 62 | **Descendants:** 63\n\nAll endpoints are read-only (GET).\n\nEndpoints: 62 | Operations: 62",
          "item": [
            {
              "name": "GET Get DRAFT-MSDP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB"
                  ]
                },
                "description": "Retrieve DRAFT-MSDP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdp"
                  ]
                },
                "description": "Retrieve msdp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdp/msdpEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdp",
                    "msdpEnabled"
                  ]
                },
                "description": "Retrieve msdpEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpCacheLifetime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdp/msdpCacheLifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdp",
                    "msdpCacheLifetime"
                  ]
                },
                "description": "Retrieve msdpCacheLifetime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpNumSACacheEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdp/msdpNumSACacheEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdp",
                    "msdpNumSACacheEntries"
                  ]
                },
                "description": "Retrieve msdpNumSACacheEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpSAHoldDownPeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdp/msdpSAHoldDownPeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdp",
                    "msdpSAHoldDownPeriod"
                  ]
                },
                "description": "Retrieve msdpSAHoldDownPeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpRequestsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpRequestsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpRequestsTable"
                  ]
                },
                "description": "Retrieve msdpRequestsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpRequestsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpRequestsTable/msdpRequestsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpRequestsTable",
                    "msdpRequestsEntry"
                  ]
                },
                "description": "Retrieve msdpRequestsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpRequestsGroupAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpRequestsTable/msdpRequestsEntry/msdpRequestsGroupAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpRequestsTable",
                    "msdpRequestsEntry",
                    "msdpRequestsGroupAddress"
                  ]
                },
                "description": "Retrieve msdpRequestsGroupAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpRequestsGroupMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpRequestsTable/msdpRequestsEntry/msdpRequestsGroupMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpRequestsTable",
                    "msdpRequestsEntry",
                    "msdpRequestsGroupMask"
                  ]
                },
                "description": "Retrieve msdpRequestsGroupMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpRequestsPeer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpRequestsTable/msdpRequestsEntry/msdpRequestsPeer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpRequestsTable",
                    "msdpRequestsEntry",
                    "msdpRequestsPeer"
                  ]
                },
                "description": "Retrieve msdpRequestsPeer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpRequestsStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpRequestsTable/msdpRequestsEntry/msdpRequestsStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpRequestsTable",
                    "msdpRequestsEntry",
                    "msdpRequestsStatus"
                  ]
                },
                "description": "Retrieve msdpRequestsStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable"
                  ]
                },
                "description": "Retrieve msdpPeerTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry"
                  ]
                },
                "description": "Retrieve msdpPeerEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerRemoteAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerRemoteAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerRemoteAddress"
                  ]
                },
                "description": "Retrieve msdpPeerRemoteAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerState"
                  ]
                },
                "description": "Retrieve msdpPeerState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerRPFFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerRPFFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerRPFFailures"
                  ]
                },
                "description": "Retrieve msdpPeerRPFFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerInSAs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerInSAs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerInSAs"
                  ]
                },
                "description": "Retrieve msdpPeerInSAs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerOutSAs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerOutSAs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerOutSAs"
                  ]
                },
                "description": "Retrieve msdpPeerOutSAs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerInSARequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerInSARequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerInSARequests"
                  ]
                },
                "description": "Retrieve msdpPeerInSARequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerOutSARequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerOutSARequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerOutSARequests"
                  ]
                },
                "description": "Retrieve msdpPeerOutSARequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerInSAResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerInSAResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerInSAResponses"
                  ]
                },
                "description": "Retrieve msdpPeerInSAResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerOutSAResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerOutSAResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerOutSAResponses"
                  ]
                },
                "description": "Retrieve msdpPeerOutSAResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerInControlMessages",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerInControlMessages",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerInControlMessages"
                  ]
                },
                "description": "Retrieve msdpPeerInControlMessages from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerOutControlMessages",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerOutControlMessages",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerOutControlMessages"
                  ]
                },
                "description": "Retrieve msdpPeerOutControlMessages from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerInDataPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerInDataPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerInDataPackets"
                  ]
                },
                "description": "Retrieve msdpPeerInDataPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerOutDataPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerOutDataPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerOutDataPackets"
                  ]
                },
                "description": "Retrieve msdpPeerOutDataPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerFsmEstablishedTransitions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerFsmEstablishedTransitions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerFsmEstablishedTransitions"
                  ]
                },
                "description": "Retrieve msdpPeerFsmEstablishedTransitions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerFsmEstablishedTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerFsmEstablishedTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerFsmEstablishedTime"
                  ]
                },
                "description": "Retrieve msdpPeerFsmEstablishedTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerInMessageElapsedTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerInMessageElapsedTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerInMessageElapsedTime"
                  ]
                },
                "description": "Retrieve msdpPeerInMessageElapsedTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerLocalAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerLocalAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerLocalAddress"
                  ]
                },
                "description": "Retrieve msdpPeerLocalAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerSAAdvPeriod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerSAAdvPeriod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerSAAdvPeriod"
                  ]
                },
                "description": "Retrieve msdpPeerSAAdvPeriod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerConnectRetryInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerConnectRetryInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerConnectRetryInterval"
                  ]
                },
                "description": "Retrieve msdpPeerConnectRetryInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerHoldTimeConfigured",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerHoldTimeConfigured",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerHoldTimeConfigured"
                  ]
                },
                "description": "Retrieve msdpPeerHoldTimeConfigured from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerKeepAliveConfigured",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerKeepAliveConfigured",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerKeepAliveConfigured"
                  ]
                },
                "description": "Retrieve msdpPeerKeepAliveConfigured from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerDataTtl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerDataTtl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerDataTtl"
                  ]
                },
                "description": "Retrieve msdpPeerDataTtl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerProcessRequestsFrom",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerProcessRequestsFrom",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerProcessRequestsFrom"
                  ]
                },
                "description": "Retrieve msdpPeerProcessRequestsFrom from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerStatus"
                  ]
                },
                "description": "Retrieve msdpPeerStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerRemotePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerRemotePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerRemotePort"
                  ]
                },
                "description": "Retrieve msdpPeerRemotePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerLocalPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerLocalPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerLocalPort"
                  ]
                },
                "description": "Retrieve msdpPeerLocalPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerEncapsulationState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerEncapsulationState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerEncapsulationState"
                  ]
                },
                "description": "Retrieve msdpPeerEncapsulationState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerEncapsulationType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerEncapsulationType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerEncapsulationType"
                  ]
                },
                "description": "Retrieve msdpPeerEncapsulationType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerConnectionAttempts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerConnectionAttempts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerConnectionAttempts"
                  ]
                },
                "description": "Retrieve msdpPeerConnectionAttempts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerInNotifications",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerInNotifications",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerInNotifications"
                  ]
                },
                "description": "Retrieve msdpPeerInNotifications from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerOutNotifications",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerOutNotifications",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerOutNotifications"
                  ]
                },
                "description": "Retrieve msdpPeerOutNotifications from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerLastError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpPeerTable/msdpPeerEntry/msdpPeerLastError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpPeerTable",
                    "msdpPeerEntry",
                    "msdpPeerLastError"
                  ]
                },
                "description": "Retrieve msdpPeerLastError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpSACacheTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpSACacheTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpSACacheTable"
                  ]
                },
                "description": "Retrieve msdpSACacheTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpSACacheEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpSACacheTable/msdpSACacheEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpSACacheTable",
                    "msdpSACacheEntry"
                  ]
                },
                "description": "Retrieve msdpSACacheEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpSACacheGroupAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpSACacheTable/msdpSACacheEntry/msdpSACacheGroupAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpSACacheTable",
                    "msdpSACacheEntry",
                    "msdpSACacheGroupAddr"
                  ]
                },
                "description": "Retrieve msdpSACacheGroupAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpSACacheSourceAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpSACacheTable/msdpSACacheEntry/msdpSACacheSourceAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpSACacheTable",
                    "msdpSACacheEntry",
                    "msdpSACacheSourceAddr"
                  ]
                },
                "description": "Retrieve msdpSACacheSourceAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpSACacheOriginRP",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpSACacheTable/msdpSACacheEntry/msdpSACacheOriginRP",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpSACacheTable",
                    "msdpSACacheEntry",
                    "msdpSACacheOriginRP"
                  ]
                },
                "description": "Retrieve msdpSACacheOriginRP from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpSACachePeerLearnedFrom",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpSACacheTable/msdpSACacheEntry/msdpSACachePeerLearnedFrom",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpSACacheTable",
                    "msdpSACacheEntry",
                    "msdpSACachePeerLearnedFrom"
                  ]
                },
                "description": "Retrieve msdpSACachePeerLearnedFrom from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpSACacheRPFPeer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpSACacheTable/msdpSACacheEntry/msdpSACacheRPFPeer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpSACacheTable",
                    "msdpSACacheEntry",
                    "msdpSACacheRPFPeer"
                  ]
                },
                "description": "Retrieve msdpSACacheRPFPeer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpSACacheInSAs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpSACacheTable/msdpSACacheEntry/msdpSACacheInSAs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpSACacheTable",
                    "msdpSACacheEntry",
                    "msdpSACacheInSAs"
                  ]
                },
                "description": "Retrieve msdpSACacheInSAs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpSACacheInDataPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpSACacheTable/msdpSACacheEntry/msdpSACacheInDataPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpSACacheTable",
                    "msdpSACacheEntry",
                    "msdpSACacheInDataPackets"
                  ]
                },
                "description": "Retrieve msdpSACacheInDataPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpSACacheUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpSACacheTable/msdpSACacheEntry/msdpSACacheUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpSACacheTable",
                    "msdpSACacheEntry",
                    "msdpSACacheUpTime"
                  ]
                },
                "description": "Retrieve msdpSACacheUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpSACacheExpiryTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpSACacheTable/msdpSACacheEntry/msdpSACacheExpiryTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpSACacheTable",
                    "msdpSACacheEntry",
                    "msdpSACacheExpiryTime"
                  ]
                },
                "description": "Retrieve msdpSACacheExpiryTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpSACacheStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpSACacheTable/msdpSACacheEntry/msdpSACacheStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpSACacheTable",
                    "msdpSACacheEntry",
                    "msdpSACacheStatus"
                  ]
                },
                "description": "Retrieve msdpSACacheStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpSACacheTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpSACacheTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerRemoteAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpSACacheTable/object-1/msdpPeerRemoteAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpSACacheTable",
                    "object-1",
                    "msdpPeerRemoteAddress"
                  ]
                },
                "description": "Retrieve msdpPeerRemoteAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerFsmEstablishedTransitions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpSACacheTable/object-1/msdpPeerFsmEstablishedTransitions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpSACacheTable",
                    "object-1",
                    "msdpPeerFsmEstablishedTransitions"
                  ]
                },
                "description": "Retrieve msdpPeerFsmEstablishedTransitions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get msdpPeerState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DRAFT-MSDP-MIB:DRAFT-MSDP-MIB/msdpSACacheTable/object-1/msdpPeerState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DRAFT-MSDP-MIB:DRAFT-MSDP-MIB",
                    "msdpSACacheTable",
                    "object-1",
                    "msdpPeerState"
                  ]
                },
                "description": "Retrieve msdpPeerState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "DS1-MIB",
          "description": "Cisco IOS-XE MIB - DS1-MIB\n\nMIB data from `DS1-MIB` module.\n\n**Root containers:** 1 (DS1-MIB)\n**Paths:** 115 | **Descendants:** 114\n\nAll endpoints are read-only (GET).\n\nEndpoints: 115 | Operations: 115",
          "item": [
            {
              "name": "GET Get DS1-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB"
                  ]
                },
                "description": "Retrieve DS1-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1ConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable"
                  ]
                },
                "description": "Retrieve dsx1ConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1ConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry"
                  ]
                },
                "description": "Retrieve dsx1ConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1LineIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1LineIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1LineIndex"
                  ]
                },
                "description": "Retrieve dsx1LineIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1TimeElapsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1TimeElapsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1TimeElapsed"
                  ]
                },
                "description": "Retrieve dsx1TimeElapsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1ValidIntervals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1ValidIntervals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1ValidIntervals"
                  ]
                },
                "description": "Retrieve dsx1ValidIntervals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1LineType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1LineType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1LineType"
                  ]
                },
                "description": "Retrieve dsx1LineType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1LineCoding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1LineCoding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1LineCoding"
                  ]
                },
                "description": "Retrieve dsx1LineCoding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1SendCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1SendCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1SendCode"
                  ]
                },
                "description": "Retrieve dsx1SendCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1CircuitIdentifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1CircuitIdentifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1CircuitIdentifier"
                  ]
                },
                "description": "Retrieve dsx1CircuitIdentifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1LoopbackConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1LoopbackConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1LoopbackConfig"
                  ]
                },
                "description": "Retrieve dsx1LoopbackConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1LineStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1LineStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1LineStatus"
                  ]
                },
                "description": "Retrieve dsx1LineStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1SignalMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1SignalMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1SignalMode"
                  ]
                },
                "description": "Retrieve dsx1SignalMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1TransmitClockSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1TransmitClockSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1TransmitClockSource"
                  ]
                },
                "description": "Retrieve dsx1TransmitClockSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1Fdl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1Fdl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1Fdl"
                  ]
                },
                "description": "Retrieve dsx1Fdl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1InvalidIntervals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1InvalidIntervals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1InvalidIntervals"
                  ]
                },
                "description": "Retrieve dsx1InvalidIntervals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1LineLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1LineLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1LineLength"
                  ]
                },
                "description": "Retrieve dsx1LineLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1LineStatusLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1LineStatusLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1LineStatusLastChange"
                  ]
                },
                "description": "Retrieve dsx1LineStatusLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1LineStatusChangeTrapEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1LineStatusChangeTrapEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1LineStatusChangeTrapEnable"
                  ]
                },
                "description": "Retrieve dsx1LineStatusChangeTrapEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1LoopbackStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1LoopbackStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1LoopbackStatus"
                  ]
                },
                "description": "Retrieve dsx1LoopbackStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1Ds1ChannelNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1Ds1ChannelNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1Ds1ChannelNumber"
                  ]
                },
                "description": "Retrieve dsx1Ds1ChannelNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1Channelization",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ConfigTable/dsx1ConfigEntry/dsx1Channelization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ConfigTable",
                    "dsx1ConfigEntry",
                    "dsx1Channelization"
                  ]
                },
                "description": "Retrieve dsx1Channelization from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1CurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1CurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1CurrentTable"
                  ]
                },
                "description": "Retrieve dsx1CurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1CurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1CurrentTable/dsx1CurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1CurrentTable",
                    "dsx1CurrentEntry"
                  ]
                },
                "description": "Retrieve dsx1CurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1CurrentIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1CurrentTable/dsx1CurrentEntry/dsx1CurrentIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1CurrentTable",
                    "dsx1CurrentEntry",
                    "dsx1CurrentIndex"
                  ]
                },
                "description": "Retrieve dsx1CurrentIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1CurrentESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1CurrentTable/dsx1CurrentEntry/dsx1CurrentESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1CurrentTable",
                    "dsx1CurrentEntry",
                    "dsx1CurrentESs"
                  ]
                },
                "description": "Retrieve dsx1CurrentESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1CurrentSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1CurrentTable/dsx1CurrentEntry/dsx1CurrentSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1CurrentTable",
                    "dsx1CurrentEntry",
                    "dsx1CurrentSESs"
                  ]
                },
                "description": "Retrieve dsx1CurrentSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1CurrentSEFSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1CurrentTable/dsx1CurrentEntry/dsx1CurrentSEFSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1CurrentTable",
                    "dsx1CurrentEntry",
                    "dsx1CurrentSEFSs"
                  ]
                },
                "description": "Retrieve dsx1CurrentSEFSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1CurrentUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1CurrentTable/dsx1CurrentEntry/dsx1CurrentUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1CurrentTable",
                    "dsx1CurrentEntry",
                    "dsx1CurrentUASs"
                  ]
                },
                "description": "Retrieve dsx1CurrentUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1CurrentCSSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1CurrentTable/dsx1CurrentEntry/dsx1CurrentCSSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1CurrentTable",
                    "dsx1CurrentEntry",
                    "dsx1CurrentCSSs"
                  ]
                },
                "description": "Retrieve dsx1CurrentCSSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1CurrentPCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1CurrentTable/dsx1CurrentEntry/dsx1CurrentPCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1CurrentTable",
                    "dsx1CurrentEntry",
                    "dsx1CurrentPCVs"
                  ]
                },
                "description": "Retrieve dsx1CurrentPCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1CurrentLESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1CurrentTable/dsx1CurrentEntry/dsx1CurrentLESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1CurrentTable",
                    "dsx1CurrentEntry",
                    "dsx1CurrentLESs"
                  ]
                },
                "description": "Retrieve dsx1CurrentLESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1CurrentBESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1CurrentTable/dsx1CurrentEntry/dsx1CurrentBESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1CurrentTable",
                    "dsx1CurrentEntry",
                    "dsx1CurrentBESs"
                  ]
                },
                "description": "Retrieve dsx1CurrentBESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1CurrentDMs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1CurrentTable/dsx1CurrentEntry/dsx1CurrentDMs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1CurrentTable",
                    "dsx1CurrentEntry",
                    "dsx1CurrentDMs"
                  ]
                },
                "description": "Retrieve dsx1CurrentDMs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1CurrentLCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1CurrentTable/dsx1CurrentEntry/dsx1CurrentLCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1CurrentTable",
                    "dsx1CurrentEntry",
                    "dsx1CurrentLCVs"
                  ]
                },
                "description": "Retrieve dsx1CurrentLCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1IntervalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1IntervalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1IntervalTable"
                  ]
                },
                "description": "Retrieve dsx1IntervalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1IntervalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1IntervalTable/dsx1IntervalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1IntervalTable",
                    "dsx1IntervalEntry"
                  ]
                },
                "description": "Retrieve dsx1IntervalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1IntervalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1IntervalTable/dsx1IntervalEntry/dsx1IntervalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1IntervalTable",
                    "dsx1IntervalEntry",
                    "dsx1IntervalIndex"
                  ]
                },
                "description": "Retrieve dsx1IntervalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1IntervalNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1IntervalTable/dsx1IntervalEntry/dsx1IntervalNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1IntervalTable",
                    "dsx1IntervalEntry",
                    "dsx1IntervalNumber"
                  ]
                },
                "description": "Retrieve dsx1IntervalNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1IntervalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1IntervalTable/dsx1IntervalEntry/dsx1IntervalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1IntervalTable",
                    "dsx1IntervalEntry",
                    "dsx1IntervalESs"
                  ]
                },
                "description": "Retrieve dsx1IntervalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1IntervalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1IntervalTable/dsx1IntervalEntry/dsx1IntervalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1IntervalTable",
                    "dsx1IntervalEntry",
                    "dsx1IntervalSESs"
                  ]
                },
                "description": "Retrieve dsx1IntervalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1IntervalSEFSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1IntervalTable/dsx1IntervalEntry/dsx1IntervalSEFSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1IntervalTable",
                    "dsx1IntervalEntry",
                    "dsx1IntervalSEFSs"
                  ]
                },
                "description": "Retrieve dsx1IntervalSEFSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1IntervalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1IntervalTable/dsx1IntervalEntry/dsx1IntervalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1IntervalTable",
                    "dsx1IntervalEntry",
                    "dsx1IntervalUASs"
                  ]
                },
                "description": "Retrieve dsx1IntervalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1IntervalCSSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1IntervalTable/dsx1IntervalEntry/dsx1IntervalCSSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1IntervalTable",
                    "dsx1IntervalEntry",
                    "dsx1IntervalCSSs"
                  ]
                },
                "description": "Retrieve dsx1IntervalCSSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1IntervalPCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1IntervalTable/dsx1IntervalEntry/dsx1IntervalPCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1IntervalTable",
                    "dsx1IntervalEntry",
                    "dsx1IntervalPCVs"
                  ]
                },
                "description": "Retrieve dsx1IntervalPCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1IntervalLESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1IntervalTable/dsx1IntervalEntry/dsx1IntervalLESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1IntervalTable",
                    "dsx1IntervalEntry",
                    "dsx1IntervalLESs"
                  ]
                },
                "description": "Retrieve dsx1IntervalLESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1IntervalBESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1IntervalTable/dsx1IntervalEntry/dsx1IntervalBESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1IntervalTable",
                    "dsx1IntervalEntry",
                    "dsx1IntervalBESs"
                  ]
                },
                "description": "Retrieve dsx1IntervalBESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1IntervalDMs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1IntervalTable/dsx1IntervalEntry/dsx1IntervalDMs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1IntervalTable",
                    "dsx1IntervalEntry",
                    "dsx1IntervalDMs"
                  ]
                },
                "description": "Retrieve dsx1IntervalDMs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1IntervalLCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1IntervalTable/dsx1IntervalEntry/dsx1IntervalLCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1IntervalTable",
                    "dsx1IntervalEntry",
                    "dsx1IntervalLCVs"
                  ]
                },
                "description": "Retrieve dsx1IntervalLCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1IntervalValidData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1IntervalTable/dsx1IntervalEntry/dsx1IntervalValidData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1IntervalTable",
                    "dsx1IntervalEntry",
                    "dsx1IntervalValidData"
                  ]
                },
                "description": "Retrieve dsx1IntervalValidData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1TotalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1TotalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1TotalTable"
                  ]
                },
                "description": "Retrieve dsx1TotalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1TotalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1TotalTable/dsx1TotalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1TotalTable",
                    "dsx1TotalEntry"
                  ]
                },
                "description": "Retrieve dsx1TotalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1TotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1TotalTable/dsx1TotalEntry/dsx1TotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1TotalTable",
                    "dsx1TotalEntry",
                    "dsx1TotalIndex"
                  ]
                },
                "description": "Retrieve dsx1TotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1TotalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1TotalTable/dsx1TotalEntry/dsx1TotalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1TotalTable",
                    "dsx1TotalEntry",
                    "dsx1TotalESs"
                  ]
                },
                "description": "Retrieve dsx1TotalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1TotalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1TotalTable/dsx1TotalEntry/dsx1TotalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1TotalTable",
                    "dsx1TotalEntry",
                    "dsx1TotalSESs"
                  ]
                },
                "description": "Retrieve dsx1TotalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1TotalSEFSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1TotalTable/dsx1TotalEntry/dsx1TotalSEFSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1TotalTable",
                    "dsx1TotalEntry",
                    "dsx1TotalSEFSs"
                  ]
                },
                "description": "Retrieve dsx1TotalSEFSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1TotalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1TotalTable/dsx1TotalEntry/dsx1TotalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1TotalTable",
                    "dsx1TotalEntry",
                    "dsx1TotalUASs"
                  ]
                },
                "description": "Retrieve dsx1TotalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1TotalCSSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1TotalTable/dsx1TotalEntry/dsx1TotalCSSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1TotalTable",
                    "dsx1TotalEntry",
                    "dsx1TotalCSSs"
                  ]
                },
                "description": "Retrieve dsx1TotalCSSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1TotalPCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1TotalTable/dsx1TotalEntry/dsx1TotalPCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1TotalTable",
                    "dsx1TotalEntry",
                    "dsx1TotalPCVs"
                  ]
                },
                "description": "Retrieve dsx1TotalPCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1TotalLESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1TotalTable/dsx1TotalEntry/dsx1TotalLESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1TotalTable",
                    "dsx1TotalEntry",
                    "dsx1TotalLESs"
                  ]
                },
                "description": "Retrieve dsx1TotalLESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1TotalBESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1TotalTable/dsx1TotalEntry/dsx1TotalBESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1TotalTable",
                    "dsx1TotalEntry",
                    "dsx1TotalBESs"
                  ]
                },
                "description": "Retrieve dsx1TotalBESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1TotalDMs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1TotalTable/dsx1TotalEntry/dsx1TotalDMs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1TotalTable",
                    "dsx1TotalEntry",
                    "dsx1TotalDMs"
                  ]
                },
                "description": "Retrieve dsx1TotalDMs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1TotalLCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1TotalTable/dsx1TotalEntry/dsx1TotalLCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1TotalTable",
                    "dsx1TotalEntry",
                    "dsx1TotalLCVs"
                  ]
                },
                "description": "Retrieve dsx1TotalLCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndCurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndCurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndCurrentTable"
                  ]
                },
                "description": "Retrieve dsx1FarEndCurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndCurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndCurrentTable/dsx1FarEndCurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndCurrentTable",
                    "dsx1FarEndCurrentEntry"
                  ]
                },
                "description": "Retrieve dsx1FarEndCurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndCurrentIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndCurrentTable/dsx1FarEndCurrentEntry/dsx1FarEndCurrentIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndCurrentTable",
                    "dsx1FarEndCurrentEntry",
                    "dsx1FarEndCurrentIndex"
                  ]
                },
                "description": "Retrieve dsx1FarEndCurrentIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndTimeElapsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndCurrentTable/dsx1FarEndCurrentEntry/dsx1FarEndTimeElapsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndCurrentTable",
                    "dsx1FarEndCurrentEntry",
                    "dsx1FarEndTimeElapsed"
                  ]
                },
                "description": "Retrieve dsx1FarEndTimeElapsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndValidIntervals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndCurrentTable/dsx1FarEndCurrentEntry/dsx1FarEndValidIntervals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndCurrentTable",
                    "dsx1FarEndCurrentEntry",
                    "dsx1FarEndValidIntervals"
                  ]
                },
                "description": "Retrieve dsx1FarEndValidIntervals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndCurrentESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndCurrentTable/dsx1FarEndCurrentEntry/dsx1FarEndCurrentESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndCurrentTable",
                    "dsx1FarEndCurrentEntry",
                    "dsx1FarEndCurrentESs"
                  ]
                },
                "description": "Retrieve dsx1FarEndCurrentESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndCurrentSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndCurrentTable/dsx1FarEndCurrentEntry/dsx1FarEndCurrentSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndCurrentTable",
                    "dsx1FarEndCurrentEntry",
                    "dsx1FarEndCurrentSESs"
                  ]
                },
                "description": "Retrieve dsx1FarEndCurrentSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndCurrentSEFSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndCurrentTable/dsx1FarEndCurrentEntry/dsx1FarEndCurrentSEFSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndCurrentTable",
                    "dsx1FarEndCurrentEntry",
                    "dsx1FarEndCurrentSEFSs"
                  ]
                },
                "description": "Retrieve dsx1FarEndCurrentSEFSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndCurrentUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndCurrentTable/dsx1FarEndCurrentEntry/dsx1FarEndCurrentUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndCurrentTable",
                    "dsx1FarEndCurrentEntry",
                    "dsx1FarEndCurrentUASs"
                  ]
                },
                "description": "Retrieve dsx1FarEndCurrentUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndCurrentCSSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndCurrentTable/dsx1FarEndCurrentEntry/dsx1FarEndCurrentCSSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndCurrentTable",
                    "dsx1FarEndCurrentEntry",
                    "dsx1FarEndCurrentCSSs"
                  ]
                },
                "description": "Retrieve dsx1FarEndCurrentCSSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndCurrentLESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndCurrentTable/dsx1FarEndCurrentEntry/dsx1FarEndCurrentLESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndCurrentTable",
                    "dsx1FarEndCurrentEntry",
                    "dsx1FarEndCurrentLESs"
                  ]
                },
                "description": "Retrieve dsx1FarEndCurrentLESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndCurrentPCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndCurrentTable/dsx1FarEndCurrentEntry/dsx1FarEndCurrentPCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndCurrentTable",
                    "dsx1FarEndCurrentEntry",
                    "dsx1FarEndCurrentPCVs"
                  ]
                },
                "description": "Retrieve dsx1FarEndCurrentPCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndCurrentBESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndCurrentTable/dsx1FarEndCurrentEntry/dsx1FarEndCurrentBESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndCurrentTable",
                    "dsx1FarEndCurrentEntry",
                    "dsx1FarEndCurrentBESs"
                  ]
                },
                "description": "Retrieve dsx1FarEndCurrentBESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndCurrentDMs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndCurrentTable/dsx1FarEndCurrentEntry/dsx1FarEndCurrentDMs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndCurrentTable",
                    "dsx1FarEndCurrentEntry",
                    "dsx1FarEndCurrentDMs"
                  ]
                },
                "description": "Retrieve dsx1FarEndCurrentDMs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndInvalidIntervals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndCurrentTable/dsx1FarEndCurrentEntry/dsx1FarEndInvalidIntervals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndCurrentTable",
                    "dsx1FarEndCurrentEntry",
                    "dsx1FarEndInvalidIntervals"
                  ]
                },
                "description": "Retrieve dsx1FarEndInvalidIntervals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndIntervalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndIntervalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndIntervalTable"
                  ]
                },
                "description": "Retrieve dsx1FarEndIntervalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndIntervalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndIntervalTable/dsx1FarEndIntervalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndIntervalTable",
                    "dsx1FarEndIntervalEntry"
                  ]
                },
                "description": "Retrieve dsx1FarEndIntervalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndIntervalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndIntervalTable/dsx1FarEndIntervalEntry/dsx1FarEndIntervalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndIntervalTable",
                    "dsx1FarEndIntervalEntry",
                    "dsx1FarEndIntervalIndex"
                  ]
                },
                "description": "Retrieve dsx1FarEndIntervalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndIntervalNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndIntervalTable/dsx1FarEndIntervalEntry/dsx1FarEndIntervalNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndIntervalTable",
                    "dsx1FarEndIntervalEntry",
                    "dsx1FarEndIntervalNumber"
                  ]
                },
                "description": "Retrieve dsx1FarEndIntervalNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndIntervalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndIntervalTable/dsx1FarEndIntervalEntry/dsx1FarEndIntervalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndIntervalTable",
                    "dsx1FarEndIntervalEntry",
                    "dsx1FarEndIntervalESs"
                  ]
                },
                "description": "Retrieve dsx1FarEndIntervalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndIntervalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndIntervalTable/dsx1FarEndIntervalEntry/dsx1FarEndIntervalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndIntervalTable",
                    "dsx1FarEndIntervalEntry",
                    "dsx1FarEndIntervalSESs"
                  ]
                },
                "description": "Retrieve dsx1FarEndIntervalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndIntervalSEFSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndIntervalTable/dsx1FarEndIntervalEntry/dsx1FarEndIntervalSEFSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndIntervalTable",
                    "dsx1FarEndIntervalEntry",
                    "dsx1FarEndIntervalSEFSs"
                  ]
                },
                "description": "Retrieve dsx1FarEndIntervalSEFSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndIntervalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndIntervalTable/dsx1FarEndIntervalEntry/dsx1FarEndIntervalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndIntervalTable",
                    "dsx1FarEndIntervalEntry",
                    "dsx1FarEndIntervalUASs"
                  ]
                },
                "description": "Retrieve dsx1FarEndIntervalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndIntervalCSSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndIntervalTable/dsx1FarEndIntervalEntry/dsx1FarEndIntervalCSSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndIntervalTable",
                    "dsx1FarEndIntervalEntry",
                    "dsx1FarEndIntervalCSSs"
                  ]
                },
                "description": "Retrieve dsx1FarEndIntervalCSSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndIntervalLESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndIntervalTable/dsx1FarEndIntervalEntry/dsx1FarEndIntervalLESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndIntervalTable",
                    "dsx1FarEndIntervalEntry",
                    "dsx1FarEndIntervalLESs"
                  ]
                },
                "description": "Retrieve dsx1FarEndIntervalLESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndIntervalPCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndIntervalTable/dsx1FarEndIntervalEntry/dsx1FarEndIntervalPCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndIntervalTable",
                    "dsx1FarEndIntervalEntry",
                    "dsx1FarEndIntervalPCVs"
                  ]
                },
                "description": "Retrieve dsx1FarEndIntervalPCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndIntervalBESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndIntervalTable/dsx1FarEndIntervalEntry/dsx1FarEndIntervalBESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndIntervalTable",
                    "dsx1FarEndIntervalEntry",
                    "dsx1FarEndIntervalBESs"
                  ]
                },
                "description": "Retrieve dsx1FarEndIntervalBESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndIntervalDMs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndIntervalTable/dsx1FarEndIntervalEntry/dsx1FarEndIntervalDMs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndIntervalTable",
                    "dsx1FarEndIntervalEntry",
                    "dsx1FarEndIntervalDMs"
                  ]
                },
                "description": "Retrieve dsx1FarEndIntervalDMs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndIntervalValidData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndIntervalTable/dsx1FarEndIntervalEntry/dsx1FarEndIntervalValidData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndIntervalTable",
                    "dsx1FarEndIntervalEntry",
                    "dsx1FarEndIntervalValidData"
                  ]
                },
                "description": "Retrieve dsx1FarEndIntervalValidData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndTotalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndTotalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndTotalTable"
                  ]
                },
                "description": "Retrieve dsx1FarEndTotalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndTotalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndTotalTable/dsx1FarEndTotalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndTotalTable",
                    "dsx1FarEndTotalEntry"
                  ]
                },
                "description": "Retrieve dsx1FarEndTotalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndTotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndTotalTable/dsx1FarEndTotalEntry/dsx1FarEndTotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndTotalTable",
                    "dsx1FarEndTotalEntry",
                    "dsx1FarEndTotalIndex"
                  ]
                },
                "description": "Retrieve dsx1FarEndTotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndTotalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndTotalTable/dsx1FarEndTotalEntry/dsx1FarEndTotalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndTotalTable",
                    "dsx1FarEndTotalEntry",
                    "dsx1FarEndTotalESs"
                  ]
                },
                "description": "Retrieve dsx1FarEndTotalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndTotalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndTotalTable/dsx1FarEndTotalEntry/dsx1FarEndTotalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndTotalTable",
                    "dsx1FarEndTotalEntry",
                    "dsx1FarEndTotalSESs"
                  ]
                },
                "description": "Retrieve dsx1FarEndTotalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndTotalSEFSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndTotalTable/dsx1FarEndTotalEntry/dsx1FarEndTotalSEFSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndTotalTable",
                    "dsx1FarEndTotalEntry",
                    "dsx1FarEndTotalSEFSs"
                  ]
                },
                "description": "Retrieve dsx1FarEndTotalSEFSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndTotalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndTotalTable/dsx1FarEndTotalEntry/dsx1FarEndTotalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndTotalTable",
                    "dsx1FarEndTotalEntry",
                    "dsx1FarEndTotalUASs"
                  ]
                },
                "description": "Retrieve dsx1FarEndTotalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndTotalCSSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndTotalTable/dsx1FarEndTotalEntry/dsx1FarEndTotalCSSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndTotalTable",
                    "dsx1FarEndTotalEntry",
                    "dsx1FarEndTotalCSSs"
                  ]
                },
                "description": "Retrieve dsx1FarEndTotalCSSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndTotalLESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndTotalTable/dsx1FarEndTotalEntry/dsx1FarEndTotalLESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndTotalTable",
                    "dsx1FarEndTotalEntry",
                    "dsx1FarEndTotalLESs"
                  ]
                },
                "description": "Retrieve dsx1FarEndTotalLESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndTotalPCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndTotalTable/dsx1FarEndTotalEntry/dsx1FarEndTotalPCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndTotalTable",
                    "dsx1FarEndTotalEntry",
                    "dsx1FarEndTotalPCVs"
                  ]
                },
                "description": "Retrieve dsx1FarEndTotalPCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndTotalBESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndTotalTable/dsx1FarEndTotalEntry/dsx1FarEndTotalBESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndTotalTable",
                    "dsx1FarEndTotalEntry",
                    "dsx1FarEndTotalBESs"
                  ]
                },
                "description": "Retrieve dsx1FarEndTotalBESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1FarEndTotalDMs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1FarEndTotalTable/dsx1FarEndTotalEntry/dsx1FarEndTotalDMs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1FarEndTotalTable",
                    "dsx1FarEndTotalEntry",
                    "dsx1FarEndTotalDMs"
                  ]
                },
                "description": "Retrieve dsx1FarEndTotalDMs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1ChanMappingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ChanMappingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ChanMappingTable"
                  ]
                },
                "description": "Retrieve dsx1ChanMappingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1ChanMappingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ChanMappingTable/dsx1ChanMappingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ChanMappingTable",
                    "dsx1ChanMappingEntry"
                  ]
                },
                "description": "Retrieve dsx1ChanMappingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ChanMappingTable/dsx1ChanMappingEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ChanMappingTable",
                    "dsx1ChanMappingEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1Ds1ChannelNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ChanMappingTable/dsx1ChanMappingEntry/dsx1Ds1ChannelNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ChanMappingTable",
                    "dsx1ChanMappingEntry",
                    "dsx1Ds1ChannelNumber"
                  ]
                },
                "description": "Retrieve dsx1Ds1ChannelNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1ChanMappedIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ChanMappingTable/dsx1ChanMappingEntry/dsx1ChanMappedIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ChanMappingTable",
                    "dsx1ChanMappingEntry",
                    "dsx1ChanMappedIfIndex"
                  ]
                },
                "description": "Retrieve dsx1ChanMappedIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ChanMappingTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ChanMappingTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1LineIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ChanMappingTable/object-1/dsx1LineIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ChanMappingTable",
                    "object-1",
                    "dsx1LineIndex"
                  ]
                },
                "description": "Retrieve dsx1LineIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1LineStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ChanMappingTable/object-1/dsx1LineStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ChanMappingTable",
                    "object-1",
                    "dsx1LineStatus"
                  ]
                },
                "description": "Retrieve dsx1LineStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ChanMappingTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ChanMappingTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1LineIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ChanMappingTable/object-2/dsx1LineIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ChanMappingTable",
                    "object-2",
                    "dsx1LineIndex"
                  ]
                },
                "description": "Retrieve dsx1LineIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx1LineStatusLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS1-MIB:DS1-MIB/dsx1ChanMappingTable/object-2/dsx1LineStatusLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS1-MIB:DS1-MIB",
                    "dsx1ChanMappingTable",
                    "object-2",
                    "dsx1LineStatusLastChange"
                  ]
                },
                "description": "Retrieve dsx1LineStatusLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "DS3-MIB",
          "description": "Cisco IOS-XE MIB - DS3-MIB\n\nMIB data from `DS3-MIB` module.\n\n**Root containers:** 1 (DS3-MIB)\n**Paths:** 101 | **Descendants:** 100\n\nAll endpoints are read-only (GET).\n\nEndpoints: 101 | Operations: 101",
          "item": [
            {
              "name": "GET Get DS3-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB"
                  ]
                },
                "description": "Retrieve DS3-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3ConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable"
                  ]
                },
                "description": "Retrieve dsx3ConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3ConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry"
                  ]
                },
                "description": "Retrieve dsx3ConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3LineIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3LineIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3LineIndex"
                  ]
                },
                "description": "Retrieve dsx3LineIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3TimeElapsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3TimeElapsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3TimeElapsed"
                  ]
                },
                "description": "Retrieve dsx3TimeElapsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3ValidIntervals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3ValidIntervals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3ValidIntervals"
                  ]
                },
                "description": "Retrieve dsx3ValidIntervals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3LineType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3LineType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3LineType"
                  ]
                },
                "description": "Retrieve dsx3LineType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3LineCoding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3LineCoding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3LineCoding"
                  ]
                },
                "description": "Retrieve dsx3LineCoding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3SendCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3SendCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3SendCode"
                  ]
                },
                "description": "Retrieve dsx3SendCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3CircuitIdentifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3CircuitIdentifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3CircuitIdentifier"
                  ]
                },
                "description": "Retrieve dsx3CircuitIdentifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3LoopbackConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3LoopbackConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3LoopbackConfig"
                  ]
                },
                "description": "Retrieve dsx3LoopbackConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3LineStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3LineStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3LineStatus"
                  ]
                },
                "description": "Retrieve dsx3LineStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3TransmitClockSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3TransmitClockSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3TransmitClockSource"
                  ]
                },
                "description": "Retrieve dsx3TransmitClockSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3InvalidIntervals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3InvalidIntervals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3InvalidIntervals"
                  ]
                },
                "description": "Retrieve dsx3InvalidIntervals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3LineLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3LineLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3LineLength"
                  ]
                },
                "description": "Retrieve dsx3LineLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3LineStatusLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3LineStatusLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3LineStatusLastChange"
                  ]
                },
                "description": "Retrieve dsx3LineStatusLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3LineStatusChangeTrapEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3LineStatusChangeTrapEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3LineStatusChangeTrapEnable"
                  ]
                },
                "description": "Retrieve dsx3LineStatusChangeTrapEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3LoopbackStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3LoopbackStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3LoopbackStatus"
                  ]
                },
                "description": "Retrieve dsx3LoopbackStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3Channelization",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3Channelization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3Channelization"
                  ]
                },
                "description": "Retrieve dsx3Channelization from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3Ds1ForRemoteLoop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3ConfigTable/dsx3ConfigEntry/dsx3Ds1ForRemoteLoop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3ConfigTable",
                    "dsx3ConfigEntry",
                    "dsx3Ds1ForRemoteLoop"
                  ]
                },
                "description": "Retrieve dsx3Ds1ForRemoteLoop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3CurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3CurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3CurrentTable"
                  ]
                },
                "description": "Retrieve dsx3CurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3CurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3CurrentTable/dsx3CurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3CurrentTable",
                    "dsx3CurrentEntry"
                  ]
                },
                "description": "Retrieve dsx3CurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3CurrentIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3CurrentTable/dsx3CurrentEntry/dsx3CurrentIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3CurrentTable",
                    "dsx3CurrentEntry",
                    "dsx3CurrentIndex"
                  ]
                },
                "description": "Retrieve dsx3CurrentIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3CurrentPESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3CurrentTable/dsx3CurrentEntry/dsx3CurrentPESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3CurrentTable",
                    "dsx3CurrentEntry",
                    "dsx3CurrentPESs"
                  ]
                },
                "description": "Retrieve dsx3CurrentPESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3CurrentPSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3CurrentTable/dsx3CurrentEntry/dsx3CurrentPSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3CurrentTable",
                    "dsx3CurrentEntry",
                    "dsx3CurrentPSESs"
                  ]
                },
                "description": "Retrieve dsx3CurrentPSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3CurrentSEFSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3CurrentTable/dsx3CurrentEntry/dsx3CurrentSEFSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3CurrentTable",
                    "dsx3CurrentEntry",
                    "dsx3CurrentSEFSs"
                  ]
                },
                "description": "Retrieve dsx3CurrentSEFSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3CurrentUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3CurrentTable/dsx3CurrentEntry/dsx3CurrentUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3CurrentTable",
                    "dsx3CurrentEntry",
                    "dsx3CurrentUASs"
                  ]
                },
                "description": "Retrieve dsx3CurrentUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3CurrentLCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3CurrentTable/dsx3CurrentEntry/dsx3CurrentLCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3CurrentTable",
                    "dsx3CurrentEntry",
                    "dsx3CurrentLCVs"
                  ]
                },
                "description": "Retrieve dsx3CurrentLCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3CurrentPCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3CurrentTable/dsx3CurrentEntry/dsx3CurrentPCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3CurrentTable",
                    "dsx3CurrentEntry",
                    "dsx3CurrentPCVs"
                  ]
                },
                "description": "Retrieve dsx3CurrentPCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3CurrentLESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3CurrentTable/dsx3CurrentEntry/dsx3CurrentLESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3CurrentTable",
                    "dsx3CurrentEntry",
                    "dsx3CurrentLESs"
                  ]
                },
                "description": "Retrieve dsx3CurrentLESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3CurrentCCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3CurrentTable/dsx3CurrentEntry/dsx3CurrentCCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3CurrentTable",
                    "dsx3CurrentEntry",
                    "dsx3CurrentCCVs"
                  ]
                },
                "description": "Retrieve dsx3CurrentCCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3CurrentCESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3CurrentTable/dsx3CurrentEntry/dsx3CurrentCESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3CurrentTable",
                    "dsx3CurrentEntry",
                    "dsx3CurrentCESs"
                  ]
                },
                "description": "Retrieve dsx3CurrentCESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3CurrentCSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3CurrentTable/dsx3CurrentEntry/dsx3CurrentCSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3CurrentTable",
                    "dsx3CurrentEntry",
                    "dsx3CurrentCSESs"
                  ]
                },
                "description": "Retrieve dsx3CurrentCSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3IntervalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3IntervalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3IntervalTable"
                  ]
                },
                "description": "Retrieve dsx3IntervalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3IntervalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3IntervalTable/dsx3IntervalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3IntervalTable",
                    "dsx3IntervalEntry"
                  ]
                },
                "description": "Retrieve dsx3IntervalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3IntervalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3IntervalTable/dsx3IntervalEntry/dsx3IntervalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3IntervalTable",
                    "dsx3IntervalEntry",
                    "dsx3IntervalIndex"
                  ]
                },
                "description": "Retrieve dsx3IntervalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3IntervalNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3IntervalTable/dsx3IntervalEntry/dsx3IntervalNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3IntervalTable",
                    "dsx3IntervalEntry",
                    "dsx3IntervalNumber"
                  ]
                },
                "description": "Retrieve dsx3IntervalNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3IntervalPESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3IntervalTable/dsx3IntervalEntry/dsx3IntervalPESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3IntervalTable",
                    "dsx3IntervalEntry",
                    "dsx3IntervalPESs"
                  ]
                },
                "description": "Retrieve dsx3IntervalPESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3IntervalPSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3IntervalTable/dsx3IntervalEntry/dsx3IntervalPSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3IntervalTable",
                    "dsx3IntervalEntry",
                    "dsx3IntervalPSESs"
                  ]
                },
                "description": "Retrieve dsx3IntervalPSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3IntervalSEFSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3IntervalTable/dsx3IntervalEntry/dsx3IntervalSEFSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3IntervalTable",
                    "dsx3IntervalEntry",
                    "dsx3IntervalSEFSs"
                  ]
                },
                "description": "Retrieve dsx3IntervalSEFSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3IntervalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3IntervalTable/dsx3IntervalEntry/dsx3IntervalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3IntervalTable",
                    "dsx3IntervalEntry",
                    "dsx3IntervalUASs"
                  ]
                },
                "description": "Retrieve dsx3IntervalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3IntervalLCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3IntervalTable/dsx3IntervalEntry/dsx3IntervalLCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3IntervalTable",
                    "dsx3IntervalEntry",
                    "dsx3IntervalLCVs"
                  ]
                },
                "description": "Retrieve dsx3IntervalLCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3IntervalPCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3IntervalTable/dsx3IntervalEntry/dsx3IntervalPCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3IntervalTable",
                    "dsx3IntervalEntry",
                    "dsx3IntervalPCVs"
                  ]
                },
                "description": "Retrieve dsx3IntervalPCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3IntervalLESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3IntervalTable/dsx3IntervalEntry/dsx3IntervalLESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3IntervalTable",
                    "dsx3IntervalEntry",
                    "dsx3IntervalLESs"
                  ]
                },
                "description": "Retrieve dsx3IntervalLESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3IntervalCCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3IntervalTable/dsx3IntervalEntry/dsx3IntervalCCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3IntervalTable",
                    "dsx3IntervalEntry",
                    "dsx3IntervalCCVs"
                  ]
                },
                "description": "Retrieve dsx3IntervalCCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3IntervalCESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3IntervalTable/dsx3IntervalEntry/dsx3IntervalCESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3IntervalTable",
                    "dsx3IntervalEntry",
                    "dsx3IntervalCESs"
                  ]
                },
                "description": "Retrieve dsx3IntervalCESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3IntervalCSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3IntervalTable/dsx3IntervalEntry/dsx3IntervalCSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3IntervalTable",
                    "dsx3IntervalEntry",
                    "dsx3IntervalCSESs"
                  ]
                },
                "description": "Retrieve dsx3IntervalCSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3IntervalValidData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3IntervalTable/dsx3IntervalEntry/dsx3IntervalValidData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3IntervalTable",
                    "dsx3IntervalEntry",
                    "dsx3IntervalValidData"
                  ]
                },
                "description": "Retrieve dsx3IntervalValidData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3TotalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3TotalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3TotalTable"
                  ]
                },
                "description": "Retrieve dsx3TotalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3TotalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3TotalTable/dsx3TotalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3TotalTable",
                    "dsx3TotalEntry"
                  ]
                },
                "description": "Retrieve dsx3TotalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3TotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3TotalTable/dsx3TotalEntry/dsx3TotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3TotalTable",
                    "dsx3TotalEntry",
                    "dsx3TotalIndex"
                  ]
                },
                "description": "Retrieve dsx3TotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3TotalPESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3TotalTable/dsx3TotalEntry/dsx3TotalPESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3TotalTable",
                    "dsx3TotalEntry",
                    "dsx3TotalPESs"
                  ]
                },
                "description": "Retrieve dsx3TotalPESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3TotalPSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3TotalTable/dsx3TotalEntry/dsx3TotalPSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3TotalTable",
                    "dsx3TotalEntry",
                    "dsx3TotalPSESs"
                  ]
                },
                "description": "Retrieve dsx3TotalPSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3TotalSEFSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3TotalTable/dsx3TotalEntry/dsx3TotalSEFSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3TotalTable",
                    "dsx3TotalEntry",
                    "dsx3TotalSEFSs"
                  ]
                },
                "description": "Retrieve dsx3TotalSEFSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3TotalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3TotalTable/dsx3TotalEntry/dsx3TotalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3TotalTable",
                    "dsx3TotalEntry",
                    "dsx3TotalUASs"
                  ]
                },
                "description": "Retrieve dsx3TotalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3TotalLCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3TotalTable/dsx3TotalEntry/dsx3TotalLCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3TotalTable",
                    "dsx3TotalEntry",
                    "dsx3TotalLCVs"
                  ]
                },
                "description": "Retrieve dsx3TotalLCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3TotalPCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3TotalTable/dsx3TotalEntry/dsx3TotalPCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3TotalTable",
                    "dsx3TotalEntry",
                    "dsx3TotalPCVs"
                  ]
                },
                "description": "Retrieve dsx3TotalPCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3TotalLESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3TotalTable/dsx3TotalEntry/dsx3TotalLESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3TotalTable",
                    "dsx3TotalEntry",
                    "dsx3TotalLESs"
                  ]
                },
                "description": "Retrieve dsx3TotalLESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3TotalCCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3TotalTable/dsx3TotalEntry/dsx3TotalCCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3TotalTable",
                    "dsx3TotalEntry",
                    "dsx3TotalCCVs"
                  ]
                },
                "description": "Retrieve dsx3TotalCCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3TotalCESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3TotalTable/dsx3TotalEntry/dsx3TotalCESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3TotalTable",
                    "dsx3TotalEntry",
                    "dsx3TotalCESs"
                  ]
                },
                "description": "Retrieve dsx3TotalCESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3TotalCSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3TotalTable/dsx3TotalEntry/dsx3TotalCSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3TotalTable",
                    "dsx3TotalEntry",
                    "dsx3TotalCSESs"
                  ]
                },
                "description": "Retrieve dsx3TotalCSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndConfigTable"
                  ]
                },
                "description": "Retrieve dsx3FarEndConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndConfigTable/dsx3FarEndConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndConfigTable",
                    "dsx3FarEndConfigEntry"
                  ]
                },
                "description": "Retrieve dsx3FarEndConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndLineIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndConfigTable/dsx3FarEndConfigEntry/dsx3FarEndLineIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndConfigTable",
                    "dsx3FarEndConfigEntry",
                    "dsx3FarEndLineIndex"
                  ]
                },
                "description": "Retrieve dsx3FarEndLineIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndEquipCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndConfigTable/dsx3FarEndConfigEntry/dsx3FarEndEquipCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndConfigTable",
                    "dsx3FarEndConfigEntry",
                    "dsx3FarEndEquipCode"
                  ]
                },
                "description": "Retrieve dsx3FarEndEquipCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndLocationIDCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndConfigTable/dsx3FarEndConfigEntry/dsx3FarEndLocationIDCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndConfigTable",
                    "dsx3FarEndConfigEntry",
                    "dsx3FarEndLocationIDCode"
                  ]
                },
                "description": "Retrieve dsx3FarEndLocationIDCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndFrameIDCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndConfigTable/dsx3FarEndConfigEntry/dsx3FarEndFrameIDCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndConfigTable",
                    "dsx3FarEndConfigEntry",
                    "dsx3FarEndFrameIDCode"
                  ]
                },
                "description": "Retrieve dsx3FarEndFrameIDCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndUnitCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndConfigTable/dsx3FarEndConfigEntry/dsx3FarEndUnitCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndConfigTable",
                    "dsx3FarEndConfigEntry",
                    "dsx3FarEndUnitCode"
                  ]
                },
                "description": "Retrieve dsx3FarEndUnitCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndFacilityIDCode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndConfigTable/dsx3FarEndConfigEntry/dsx3FarEndFacilityIDCode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndConfigTable",
                    "dsx3FarEndConfigEntry",
                    "dsx3FarEndFacilityIDCode"
                  ]
                },
                "description": "Retrieve dsx3FarEndFacilityIDCode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndCurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndCurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndCurrentTable"
                  ]
                },
                "description": "Retrieve dsx3FarEndCurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndCurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndCurrentTable/dsx3FarEndCurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndCurrentTable",
                    "dsx3FarEndCurrentEntry"
                  ]
                },
                "description": "Retrieve dsx3FarEndCurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndCurrentIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndCurrentTable/dsx3FarEndCurrentEntry/dsx3FarEndCurrentIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndCurrentTable",
                    "dsx3FarEndCurrentEntry",
                    "dsx3FarEndCurrentIndex"
                  ]
                },
                "description": "Retrieve dsx3FarEndCurrentIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndTimeElapsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndCurrentTable/dsx3FarEndCurrentEntry/dsx3FarEndTimeElapsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndCurrentTable",
                    "dsx3FarEndCurrentEntry",
                    "dsx3FarEndTimeElapsed"
                  ]
                },
                "description": "Retrieve dsx3FarEndTimeElapsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndValidIntervals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndCurrentTable/dsx3FarEndCurrentEntry/dsx3FarEndValidIntervals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndCurrentTable",
                    "dsx3FarEndCurrentEntry",
                    "dsx3FarEndValidIntervals"
                  ]
                },
                "description": "Retrieve dsx3FarEndValidIntervals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndCurrentCESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndCurrentTable/dsx3FarEndCurrentEntry/dsx3FarEndCurrentCESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndCurrentTable",
                    "dsx3FarEndCurrentEntry",
                    "dsx3FarEndCurrentCESs"
                  ]
                },
                "description": "Retrieve dsx3FarEndCurrentCESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndCurrentCSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndCurrentTable/dsx3FarEndCurrentEntry/dsx3FarEndCurrentCSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndCurrentTable",
                    "dsx3FarEndCurrentEntry",
                    "dsx3FarEndCurrentCSESs"
                  ]
                },
                "description": "Retrieve dsx3FarEndCurrentCSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndCurrentCCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndCurrentTable/dsx3FarEndCurrentEntry/dsx3FarEndCurrentCCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndCurrentTable",
                    "dsx3FarEndCurrentEntry",
                    "dsx3FarEndCurrentCCVs"
                  ]
                },
                "description": "Retrieve dsx3FarEndCurrentCCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndCurrentUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndCurrentTable/dsx3FarEndCurrentEntry/dsx3FarEndCurrentUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndCurrentTable",
                    "dsx3FarEndCurrentEntry",
                    "dsx3FarEndCurrentUASs"
                  ]
                },
                "description": "Retrieve dsx3FarEndCurrentUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndInvalidIntervals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndCurrentTable/dsx3FarEndCurrentEntry/dsx3FarEndInvalidIntervals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndCurrentTable",
                    "dsx3FarEndCurrentEntry",
                    "dsx3FarEndInvalidIntervals"
                  ]
                },
                "description": "Retrieve dsx3FarEndInvalidIntervals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndIntervalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndIntervalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndIntervalTable"
                  ]
                },
                "description": "Retrieve dsx3FarEndIntervalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndIntervalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndIntervalTable/dsx3FarEndIntervalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndIntervalTable",
                    "dsx3FarEndIntervalEntry"
                  ]
                },
                "description": "Retrieve dsx3FarEndIntervalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndIntervalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndIntervalTable/dsx3FarEndIntervalEntry/dsx3FarEndIntervalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndIntervalTable",
                    "dsx3FarEndIntervalEntry",
                    "dsx3FarEndIntervalIndex"
                  ]
                },
                "description": "Retrieve dsx3FarEndIntervalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndIntervalNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndIntervalTable/dsx3FarEndIntervalEntry/dsx3FarEndIntervalNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndIntervalTable",
                    "dsx3FarEndIntervalEntry",
                    "dsx3FarEndIntervalNumber"
                  ]
                },
                "description": "Retrieve dsx3FarEndIntervalNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndIntervalCESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndIntervalTable/dsx3FarEndIntervalEntry/dsx3FarEndIntervalCESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndIntervalTable",
                    "dsx3FarEndIntervalEntry",
                    "dsx3FarEndIntervalCESs"
                  ]
                },
                "description": "Retrieve dsx3FarEndIntervalCESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndIntervalCSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndIntervalTable/dsx3FarEndIntervalEntry/dsx3FarEndIntervalCSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndIntervalTable",
                    "dsx3FarEndIntervalEntry",
                    "dsx3FarEndIntervalCSESs"
                  ]
                },
                "description": "Retrieve dsx3FarEndIntervalCSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndIntervalCCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndIntervalTable/dsx3FarEndIntervalEntry/dsx3FarEndIntervalCCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndIntervalTable",
                    "dsx3FarEndIntervalEntry",
                    "dsx3FarEndIntervalCCVs"
                  ]
                },
                "description": "Retrieve dsx3FarEndIntervalCCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndIntervalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndIntervalTable/dsx3FarEndIntervalEntry/dsx3FarEndIntervalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndIntervalTable",
                    "dsx3FarEndIntervalEntry",
                    "dsx3FarEndIntervalUASs"
                  ]
                },
                "description": "Retrieve dsx3FarEndIntervalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndIntervalValidData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndIntervalTable/dsx3FarEndIntervalEntry/dsx3FarEndIntervalValidData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndIntervalTable",
                    "dsx3FarEndIntervalEntry",
                    "dsx3FarEndIntervalValidData"
                  ]
                },
                "description": "Retrieve dsx3FarEndIntervalValidData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndTotalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndTotalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndTotalTable"
                  ]
                },
                "description": "Retrieve dsx3FarEndTotalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndTotalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndTotalTable/dsx3FarEndTotalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndTotalTable",
                    "dsx3FarEndTotalEntry"
                  ]
                },
                "description": "Retrieve dsx3FarEndTotalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndTotalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndTotalTable/dsx3FarEndTotalEntry/dsx3FarEndTotalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndTotalTable",
                    "dsx3FarEndTotalEntry",
                    "dsx3FarEndTotalIndex"
                  ]
                },
                "description": "Retrieve dsx3FarEndTotalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndTotalCESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndTotalTable/dsx3FarEndTotalEntry/dsx3FarEndTotalCESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndTotalTable",
                    "dsx3FarEndTotalEntry",
                    "dsx3FarEndTotalCESs"
                  ]
                },
                "description": "Retrieve dsx3FarEndTotalCESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndTotalCSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndTotalTable/dsx3FarEndTotalEntry/dsx3FarEndTotalCSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndTotalTable",
                    "dsx3FarEndTotalEntry",
                    "dsx3FarEndTotalCSESs"
                  ]
                },
                "description": "Retrieve dsx3FarEndTotalCSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndTotalCCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndTotalTable/dsx3FarEndTotalEntry/dsx3FarEndTotalCCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndTotalTable",
                    "dsx3FarEndTotalEntry",
                    "dsx3FarEndTotalCCVs"
                  ]
                },
                "description": "Retrieve dsx3FarEndTotalCCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3FarEndTotalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndTotalTable/dsx3FarEndTotalEntry/dsx3FarEndTotalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndTotalTable",
                    "dsx3FarEndTotalEntry",
                    "dsx3FarEndTotalUASs"
                  ]
                },
                "description": "Retrieve dsx3FarEndTotalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndTotalTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndTotalTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3LineIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndTotalTable/object-1/dsx3LineIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndTotalTable",
                    "object-1",
                    "dsx3LineIndex"
                  ]
                },
                "description": "Retrieve dsx3LineIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3LineStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndTotalTable/object-1/dsx3LineStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndTotalTable",
                    "object-1",
                    "dsx3LineStatus"
                  ]
                },
                "description": "Retrieve dsx3LineStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndTotalTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndTotalTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3LineIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndTotalTable/object-2/dsx3LineIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndTotalTable",
                    "object-2",
                    "dsx3LineIndex"
                  ]
                },
                "description": "Retrieve dsx3LineIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dsx3LineStatusLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/DS3-MIB:DS3-MIB/dsx3FarEndTotalTable/object-2/dsx3LineStatusLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "DS3-MIB:DS3-MIB",
                    "dsx3FarEndTotalTable",
                    "object-2",
                    "dsx3LineStatusLastChange"
                  ]
                },
                "description": "Retrieve dsx3LineStatusLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ENTITY-MIB",
          "description": "Cisco IOS-XE MIB - ENTITY-MIB\n\nMIB data from `ENTITY-MIB` module.\n\n**Root containers:** 1 (ENTITY-MIB)\n**Paths:** 45 | **Descendants:** 44\n\nAll endpoints are read-only (GET).\n\nEndpoints: 45 | Operations: 45",
          "item": [
            {
              "name": "GET Get ENTITY-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB"
                  ]
                },
                "description": "Retrieve ENTITY-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entityGeneral",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entityGeneral",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entityGeneral"
                  ]
                },
                "description": "Retrieve entityGeneral from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entLastChangeTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entityGeneral/entLastChangeTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entityGeneral",
                    "entLastChangeTime"
                  ]
                },
                "description": "Retrieve entLastChangeTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable"
                  ]
                },
                "description": "Retrieve entPhysicalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry"
                  ]
                },
                "description": "Retrieve entPhysicalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalDescr"
                  ]
                },
                "description": "Retrieve entPhysicalDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalVendorType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalVendorType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalVendorType"
                  ]
                },
                "description": "Retrieve entPhysicalVendorType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalContainedIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalContainedIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalContainedIn"
                  ]
                },
                "description": "Retrieve entPhysicalContainedIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalClass",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalClass",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalClass"
                  ]
                },
                "description": "Retrieve entPhysicalClass from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalParentRelPos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalParentRelPos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalParentRelPos"
                  ]
                },
                "description": "Retrieve entPhysicalParentRelPos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalName"
                  ]
                },
                "description": "Retrieve entPhysicalName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalHardwareRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalHardwareRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalHardwareRev"
                  ]
                },
                "description": "Retrieve entPhysicalHardwareRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalFirmwareRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalFirmwareRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalFirmwareRev"
                  ]
                },
                "description": "Retrieve entPhysicalFirmwareRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalSoftwareRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalSoftwareRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalSoftwareRev"
                  ]
                },
                "description": "Retrieve entPhysicalSoftwareRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalSerialNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalSerialNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalSerialNum"
                  ]
                },
                "description": "Retrieve entPhysicalSerialNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalMfgName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalMfgName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalMfgName"
                  ]
                },
                "description": "Retrieve entPhysicalMfgName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalModelName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalModelName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalModelName"
                  ]
                },
                "description": "Retrieve entPhysicalModelName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalAlias",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalAlias",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalAlias"
                  ]
                },
                "description": "Retrieve entPhysicalAlias from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalAssetID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalAssetID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalAssetID"
                  ]
                },
                "description": "Retrieve entPhysicalAssetID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIsFRU",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalIsFRU",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalIsFRU"
                  ]
                },
                "description": "Retrieve entPhysicalIsFRU from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalMfgDate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalMfgDate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalMfgDate"
                  ]
                },
                "description": "Retrieve entPhysicalMfgDate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalUris",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalTable/entPhysicalEntry/entPhysicalUris",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalTable",
                    "entPhysicalEntry",
                    "entPhysicalUris"
                  ]
                },
                "description": "Retrieve entPhysicalUris from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entLogicalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entLogicalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entLogicalTable"
                  ]
                },
                "description": "Retrieve entLogicalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entLogicalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entLogicalTable/entLogicalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entLogicalTable",
                    "entLogicalEntry"
                  ]
                },
                "description": "Retrieve entLogicalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entLogicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entLogicalTable/entLogicalEntry/entLogicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entLogicalTable",
                    "entLogicalEntry",
                    "entLogicalIndex"
                  ]
                },
                "description": "Retrieve entLogicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entLogicalDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entLogicalTable/entLogicalEntry/entLogicalDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entLogicalTable",
                    "entLogicalEntry",
                    "entLogicalDescr"
                  ]
                },
                "description": "Retrieve entLogicalDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entLogicalType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entLogicalTable/entLogicalEntry/entLogicalType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entLogicalTable",
                    "entLogicalEntry",
                    "entLogicalType"
                  ]
                },
                "description": "Retrieve entLogicalType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entLogicalTAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entLogicalTable/entLogicalEntry/entLogicalTAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entLogicalTable",
                    "entLogicalEntry",
                    "entLogicalTAddress"
                  ]
                },
                "description": "Retrieve entLogicalTAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entLogicalTDomain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entLogicalTable/entLogicalEntry/entLogicalTDomain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entLogicalTable",
                    "entLogicalEntry",
                    "entLogicalTDomain"
                  ]
                },
                "description": "Retrieve entLogicalTDomain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entLogicalContextEngineID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entLogicalTable/entLogicalEntry/entLogicalContextEngineID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entLogicalTable",
                    "entLogicalEntry",
                    "entLogicalContextEngineID"
                  ]
                },
                "description": "Retrieve entLogicalContextEngineID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entLogicalContextName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entLogicalTable/entLogicalEntry/entLogicalContextName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entLogicalTable",
                    "entLogicalEntry",
                    "entLogicalContextName"
                  ]
                },
                "description": "Retrieve entLogicalContextName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entLPMappingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entLPMappingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entLPMappingTable"
                  ]
                },
                "description": "Retrieve entLPMappingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entLPMappingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entLPMappingTable/entLPMappingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entLPMappingTable",
                    "entLPMappingEntry"
                  ]
                },
                "description": "Retrieve entLPMappingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entLogicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entLPMappingTable/entLPMappingEntry/entLogicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entLPMappingTable",
                    "entLPMappingEntry",
                    "entLogicalIndex"
                  ]
                },
                "description": "Retrieve entLogicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entLPPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entLPMappingTable/entLPMappingEntry/entLPPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entLPMappingTable",
                    "entLPMappingEntry",
                    "entLPPhysicalIndex"
                  ]
                },
                "description": "Retrieve entLPPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entAliasMappingTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entAliasMappingTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entAliasMappingTable"
                  ]
                },
                "description": "Retrieve entAliasMappingTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entAliasMappingEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entAliasMappingTable/entAliasMappingEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entAliasMappingTable",
                    "entAliasMappingEntry"
                  ]
                },
                "description": "Retrieve entAliasMappingEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entAliasMappingTable/entAliasMappingEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entAliasMappingTable",
                    "entAliasMappingEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entAliasLogicalIndexOrZero",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entAliasMappingTable/entAliasMappingEntry/entAliasLogicalIndexOrZero",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entAliasMappingTable",
                    "entAliasMappingEntry",
                    "entAliasLogicalIndexOrZero"
                  ]
                },
                "description": "Retrieve entAliasLogicalIndexOrZero from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entAliasMappingIdentifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entAliasMappingTable/entAliasMappingEntry/entAliasMappingIdentifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entAliasMappingTable",
                    "entAliasMappingEntry",
                    "entAliasMappingIdentifier"
                  ]
                },
                "description": "Retrieve entAliasMappingIdentifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalContainsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalContainsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalContainsTable"
                  ]
                },
                "description": "Retrieve entPhysicalContainsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalContainsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalContainsTable/entPhysicalContainsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalContainsTable",
                    "entPhysicalContainsEntry"
                  ]
                },
                "description": "Retrieve entPhysicalContainsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalContainsTable/entPhysicalContainsEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalContainsTable",
                    "entPhysicalContainsEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalChildIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-MIB:ENTITY-MIB/entPhysicalContainsTable/entPhysicalContainsEntry/entPhysicalChildIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-MIB:ENTITY-MIB",
                    "entPhysicalContainsTable",
                    "entPhysicalContainsEntry",
                    "entPhysicalChildIndex"
                  ]
                },
                "description": "Retrieve entPhysicalChildIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ENTITY-SENSOR-MIB",
          "description": "Cisco IOS-XE MIB - ENTITY-SENSOR-MIB\n\nMIB data from `ENTITY-SENSOR-MIB` module.\n\n**Root containers:** 1 (ENTITY-SENSOR-MIB)\n**Paths:** 12 | **Descendants:** 11\n\nAll endpoints are read-only (GET).\n\nEndpoints: 12 | Operations: 12",
          "item": [
            {
              "name": "GET Get ENTITY-SENSOR-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB"
                  ]
                },
                "description": "Retrieve ENTITY-SENSOR-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhySensorTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB/entPhySensorTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB",
                    "entPhySensorTable"
                  ]
                },
                "description": "Retrieve entPhySensorTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhySensorEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB/entPhySensorTable/entPhySensorEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB",
                    "entPhySensorTable",
                    "entPhySensorEntry"
                  ]
                },
                "description": "Retrieve entPhySensorEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB/entPhySensorTable/entPhySensorEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB",
                    "entPhySensorTable",
                    "entPhySensorEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhySensorType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB/entPhySensorTable/entPhySensorEntry/entPhySensorType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB",
                    "entPhySensorTable",
                    "entPhySensorEntry",
                    "entPhySensorType"
                  ]
                },
                "description": "Retrieve entPhySensorType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhySensorScale",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB/entPhySensorTable/entPhySensorEntry/entPhySensorScale",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB",
                    "entPhySensorTable",
                    "entPhySensorEntry",
                    "entPhySensorScale"
                  ]
                },
                "description": "Retrieve entPhySensorScale from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhySensorPrecision",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB/entPhySensorTable/entPhySensorEntry/entPhySensorPrecision",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB",
                    "entPhySensorTable",
                    "entPhySensorEntry",
                    "entPhySensorPrecision"
                  ]
                },
                "description": "Retrieve entPhySensorPrecision from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhySensorValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB/entPhySensorTable/entPhySensorEntry/entPhySensorValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB",
                    "entPhySensorTable",
                    "entPhySensorEntry",
                    "entPhySensorValue"
                  ]
                },
                "description": "Retrieve entPhySensorValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhySensorOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB/entPhySensorTable/entPhySensorEntry/entPhySensorOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB",
                    "entPhySensorTable",
                    "entPhySensorEntry",
                    "entPhySensorOperStatus"
                  ]
                },
                "description": "Retrieve entPhySensorOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhySensorUnitsDisplay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB/entPhySensorTable/entPhySensorEntry/entPhySensorUnitsDisplay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB",
                    "entPhySensorTable",
                    "entPhySensorEntry",
                    "entPhySensorUnitsDisplay"
                  ]
                },
                "description": "Retrieve entPhySensorUnitsDisplay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhySensorValueTimeStamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB/entPhySensorTable/entPhySensorEntry/entPhySensorValueTimeStamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB",
                    "entPhySensorTable",
                    "entPhySensorEntry",
                    "entPhySensorValueTimeStamp"
                  ]
                },
                "description": "Retrieve entPhySensorValueTimeStamp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhySensorValueUpdateRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB/entPhySensorTable/entPhySensorEntry/entPhySensorValueUpdateRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-SENSOR-MIB:ENTITY-SENSOR-MIB",
                    "entPhySensorTable",
                    "entPhySensorEntry",
                    "entPhySensorValueUpdateRate"
                  ]
                },
                "description": "Retrieve entPhySensorValueUpdateRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ENTITY-STATE-MIB",
          "description": "Cisco IOS-XE MIB - ENTITY-STATE-MIB\n\nMIB data from `ENTITY-STATE-MIB` module.\n\n**Root containers:** 1 (ENTITY-STATE-MIB)\n**Paths:** 16 | **Descendants:** 21\n\nAll endpoints are read-only (GET).\n\nEndpoints: 16 | Operations: 16",
          "item": [
            {
              "name": "GET Get ENTITY-STATE-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-STATE-MIB:ENTITY-STATE-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-STATE-MIB:ENTITY-STATE-MIB"
                  ]
                },
                "description": "Retrieve ENTITY-STATE-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entStateTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-STATE-MIB:ENTITY-STATE-MIB/entStateTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-STATE-MIB:ENTITY-STATE-MIB",
                    "entStateTable"
                  ]
                },
                "description": "Retrieve entStateTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entStateEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-STATE-MIB:ENTITY-STATE-MIB/entStateTable/entStateEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-STATE-MIB:ENTITY-STATE-MIB",
                    "entStateTable",
                    "entStateEntry"
                  ]
                },
                "description": "Retrieve entStateEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-STATE-MIB:ENTITY-STATE-MIB/entStateTable/entStateEntry/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-STATE-MIB:ENTITY-STATE-MIB",
                    "entStateTable",
                    "entStateEntry",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entStateLastChanged",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-STATE-MIB:ENTITY-STATE-MIB/entStateTable/entStateEntry/entStateLastChanged",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-STATE-MIB:ENTITY-STATE-MIB",
                    "entStateTable",
                    "entStateEntry",
                    "entStateLastChanged"
                  ]
                },
                "description": "Retrieve entStateLastChanged from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entStateAdmin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-STATE-MIB:ENTITY-STATE-MIB/entStateTable/entStateEntry/entStateAdmin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-STATE-MIB:ENTITY-STATE-MIB",
                    "entStateTable",
                    "entStateEntry",
                    "entStateAdmin"
                  ]
                },
                "description": "Retrieve entStateAdmin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entStateOper",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-STATE-MIB:ENTITY-STATE-MIB/entStateTable/entStateEntry/entStateOper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-STATE-MIB:ENTITY-STATE-MIB",
                    "entStateTable",
                    "entStateEntry",
                    "entStateOper"
                  ]
                },
                "description": "Retrieve entStateOper from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entStateUsage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-STATE-MIB:ENTITY-STATE-MIB/entStateTable/entStateEntry/entStateUsage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-STATE-MIB:ENTITY-STATE-MIB",
                    "entStateTable",
                    "entStateEntry",
                    "entStateUsage"
                  ]
                },
                "description": "Retrieve entStateUsage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entStateAlarm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-STATE-MIB:ENTITY-STATE-MIB/entStateTable/entStateEntry/entStateAlarm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-STATE-MIB:ENTITY-STATE-MIB",
                    "entStateTable",
                    "entStateEntry",
                    "entStateAlarm"
                  ]
                },
                "description": "Retrieve entStateAlarm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entStateStandby",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-STATE-MIB:ENTITY-STATE-MIB/entStateTable/entStateEntry/entStateStandby",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-STATE-MIB:ENTITY-STATE-MIB",
                    "entStateTable",
                    "entStateEntry",
                    "entStateStandby"
                  ]
                },
                "description": "Retrieve entStateStandby from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-STATE-MIB:ENTITY-STATE-MIB/entStateTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-STATE-MIB:ENTITY-STATE-MIB",
                    "entStateTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-STATE-MIB:ENTITY-STATE-MIB/entStateTable/object-1/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-STATE-MIB:ENTITY-STATE-MIB",
                    "entStateTable",
                    "object-1",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entStateAdmin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-STATE-MIB:ENTITY-STATE-MIB/entStateTable/object-1/entStateAdmin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-STATE-MIB:ENTITY-STATE-MIB",
                    "entStateTable",
                    "object-1",
                    "entStateAdmin"
                  ]
                },
                "description": "Retrieve entStateAdmin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-STATE-MIB:ENTITY-STATE-MIB/entStateTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-STATE-MIB:ENTITY-STATE-MIB",
                    "entStateTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entPhysicalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-STATE-MIB:ENTITY-STATE-MIB/entStateTable/object-2/entPhysicalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-STATE-MIB:ENTITY-STATE-MIB",
                    "entStateTable",
                    "object-2",
                    "entPhysicalIndex"
                  ]
                },
                "description": "Retrieve entPhysicalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entStateAlarm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ENTITY-STATE-MIB:ENTITY-STATE-MIB/entStateTable/object-2/entStateAlarm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ENTITY-STATE-MIB:ENTITY-STATE-MIB",
                    "entStateTable",
                    "object-2",
                    "entStateAlarm"
                  ]
                },
                "description": "Retrieve entStateAlarm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "ETHER-WIS",
          "description": "Cisco IOS-XE MIB - ETHER-WIS\n\nMIB data from `ETHER-WIS` module.\n\n**Root containers:** 1 (ETHER-WIS)\n**Paths:** 22 | **Descendants:** 21\n\nAll endpoints are read-only (GET).\n\nEndpoints: 22 | Operations: 22",
          "item": [
            {
              "name": "GET Get ETHER-WIS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS"
                  ]
                },
                "description": "Retrieve ETHER-WIS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisDeviceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisDeviceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisDeviceTable"
                  ]
                },
                "description": "Retrieve etherWisDeviceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisDeviceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisDeviceTable/etherWisDeviceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisDeviceTable",
                    "etherWisDeviceEntry"
                  ]
                },
                "description": "Retrieve etherWisDeviceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisDeviceTable/etherWisDeviceEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisDeviceTable",
                    "etherWisDeviceEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisDeviceTxTestPatternMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisDeviceTable/etherWisDeviceEntry/etherWisDeviceTxTestPatternMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisDeviceTable",
                    "etherWisDeviceEntry",
                    "etherWisDeviceTxTestPatternMode"
                  ]
                },
                "description": "Retrieve etherWisDeviceTxTestPatternMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisDeviceRxTestPatternMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisDeviceTable/etherWisDeviceEntry/etherWisDeviceRxTestPatternMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisDeviceTable",
                    "etherWisDeviceEntry",
                    "etherWisDeviceRxTestPatternMode"
                  ]
                },
                "description": "Retrieve etherWisDeviceRxTestPatternMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisDeviceRxTestPatternErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisDeviceTable/etherWisDeviceEntry/etherWisDeviceRxTestPatternErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisDeviceTable",
                    "etherWisDeviceEntry",
                    "etherWisDeviceRxTestPatternErrors"
                  ]
                },
                "description": "Retrieve etherWisDeviceRxTestPatternErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisSectionCurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisSectionCurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisSectionCurrentTable"
                  ]
                },
                "description": "Retrieve etherWisSectionCurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisSectionCurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisSectionCurrentTable/etherWisSectionCurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisSectionCurrentTable",
                    "etherWisSectionCurrentEntry"
                  ]
                },
                "description": "Retrieve etherWisSectionCurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisSectionCurrentTable/etherWisSectionCurrentEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisSectionCurrentTable",
                    "etherWisSectionCurrentEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisSectionCurrentJ0Transmitted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisSectionCurrentTable/etherWisSectionCurrentEntry/etherWisSectionCurrentJ0Transmitted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisSectionCurrentTable",
                    "etherWisSectionCurrentEntry",
                    "etherWisSectionCurrentJ0Transmitted"
                  ]
                },
                "description": "Retrieve etherWisSectionCurrentJ0Transmitted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisSectionCurrentJ0Received",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisSectionCurrentTable/etherWisSectionCurrentEntry/etherWisSectionCurrentJ0Received",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisSectionCurrentTable",
                    "etherWisSectionCurrentEntry",
                    "etherWisSectionCurrentJ0Received"
                  ]
                },
                "description": "Retrieve etherWisSectionCurrentJ0Received from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisPathCurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisPathCurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisPathCurrentTable"
                  ]
                },
                "description": "Retrieve etherWisPathCurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisPathCurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisPathCurrentTable/etherWisPathCurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisPathCurrentTable",
                    "etherWisPathCurrentEntry"
                  ]
                },
                "description": "Retrieve etherWisPathCurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisPathCurrentTable/etherWisPathCurrentEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisPathCurrentTable",
                    "etherWisPathCurrentEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisPathCurrentStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisPathCurrentTable/etherWisPathCurrentEntry/etherWisPathCurrentStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisPathCurrentTable",
                    "etherWisPathCurrentEntry",
                    "etherWisPathCurrentStatus"
                  ]
                },
                "description": "Retrieve etherWisPathCurrentStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisPathCurrentJ1Transmitted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisPathCurrentTable/etherWisPathCurrentEntry/etherWisPathCurrentJ1Transmitted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisPathCurrentTable",
                    "etherWisPathCurrentEntry",
                    "etherWisPathCurrentJ1Transmitted"
                  ]
                },
                "description": "Retrieve etherWisPathCurrentJ1Transmitted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisPathCurrentJ1Received",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisPathCurrentTable/etherWisPathCurrentEntry/etherWisPathCurrentJ1Received",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisPathCurrentTable",
                    "etherWisPathCurrentEntry",
                    "etherWisPathCurrentJ1Received"
                  ]
                },
                "description": "Retrieve etherWisPathCurrentJ1Received from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisFarEndPathCurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisFarEndPathCurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisFarEndPathCurrentTable"
                  ]
                },
                "description": "Retrieve etherWisFarEndPathCurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisFarEndPathCurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisFarEndPathCurrentTable/etherWisFarEndPathCurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisFarEndPathCurrentTable",
                    "etherWisFarEndPathCurrentEntry"
                  ]
                },
                "description": "Retrieve etherWisFarEndPathCurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisFarEndPathCurrentTable/etherWisFarEndPathCurrentEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisFarEndPathCurrentTable",
                    "etherWisFarEndPathCurrentEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherWisFarEndPathCurrentStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/ETHER-WIS:ETHER-WIS/etherWisFarEndPathCurrentTable/etherWisFarEndPathCurrentEntry/etherWisFarEndPathCurrentStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "ETHER-WIS:ETHER-WIS",
                    "etherWisFarEndPathCurrentTable",
                    "etherWisFarEndPathCurrentEntry",
                    "etherWisFarEndPathCurrentStatus"
                  ]
                },
                "description": "Retrieve etherWisFarEndPathCurrentStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "EXPRESSION-MIB",
          "description": "Cisco IOS-XE MIB - EXPRESSION-MIB\n\nMIB data from `EXPRESSION-MIB` module.\n\n**Root containers:** 1 (EXPRESSION-MIB)\n**Paths:** 54 | **Descendants:** 53\n\nAll endpoints are read-only (GET).\n\nEndpoints: 54 | Operations: 54",
          "item": [
            {
              "name": "GET Get EXPRESSION-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB"
                  ]
                },
                "description": "Retrieve EXPRESSION-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expResource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expResource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expResource"
                  ]
                },
                "description": "Retrieve expResource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expResourceDeltaMinimum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expResource/expResourceDeltaMinimum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expResource",
                    "expResourceDeltaMinimum"
                  ]
                },
                "description": "Retrieve expResourceDeltaMinimum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expResourceDeltaWildcardInstanceMaximum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expResource/expResourceDeltaWildcardInstanceMaximum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expResource",
                    "expResourceDeltaWildcardInstanceMaximum"
                  ]
                },
                "description": "Retrieve expResourceDeltaWildcardInstanceMaximum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expResourceDeltaWildcardInstances",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expResource/expResourceDeltaWildcardInstances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expResource",
                    "expResourceDeltaWildcardInstances"
                  ]
                },
                "description": "Retrieve expResourceDeltaWildcardInstances from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expResourceDeltaWildcardInstancesHigh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expResource/expResourceDeltaWildcardInstancesHigh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expResource",
                    "expResourceDeltaWildcardInstancesHigh"
                  ]
                },
                "description": "Retrieve expResourceDeltaWildcardInstancesHigh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expResourceDeltaWildcardInstanceResourceLacks",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expResource/expResourceDeltaWildcardInstanceResourceLacks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expResource",
                    "expResourceDeltaWildcardInstanceResourceLacks"
                  ]
                },
                "description": "Retrieve expResourceDeltaWildcardInstanceResourceLacks from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expNames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expNames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expNames"
                  ]
                },
                "description": "Retrieve expNames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expNameLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expNames/expNameLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expNames",
                    "expNameLastChange"
                  ]
                },
                "description": "Retrieve expNameLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expNameHighestIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expNames/expNameHighestIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expNames",
                    "expNameHighestIndex"
                  ]
                },
                "description": "Retrieve expNameHighestIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expNameTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expNameTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expNameTable"
                  ]
                },
                "description": "Retrieve expNameTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expNameEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expNameTable/expNameEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expNameTable",
                    "expNameEntry"
                  ]
                },
                "description": "Retrieve expNameEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expNameTable/expNameEntry/expName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expNameTable",
                    "expNameEntry",
                    "expName"
                  ]
                },
                "description": "Retrieve expName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expNameTable/expNameEntry/expExpressionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expNameTable",
                    "expNameEntry",
                    "expExpressionIndex"
                  ]
                },
                "description": "Retrieve expExpressionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expNameStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expNameTable/expNameEntry/expNameStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expNameTable",
                    "expNameEntry",
                    "expNameStatus"
                  ]
                },
                "description": "Retrieve expNameStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expExpressionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expExpressionTable"
                  ]
                },
                "description": "Retrieve expExpressionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expExpressionTable/expExpressionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry"
                  ]
                },
                "description": "Retrieve expExpressionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionIndex"
                  ]
                },
                "description": "Retrieve expExpressionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionName"
                  ]
                },
                "description": "Retrieve expExpressionName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpression",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpression",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpression"
                  ]
                },
                "description": "Retrieve expExpression from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionValueType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionValueType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionValueType"
                  ]
                },
                "description": "Retrieve expExpressionValueType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionComment",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionComment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionComment"
                  ]
                },
                "description": "Retrieve expExpressionComment from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionDeltaInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionDeltaInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionDeltaInterval"
                  ]
                },
                "description": "Retrieve expExpressionDeltaInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionPrefix"
                  ]
                },
                "description": "Retrieve expExpressionPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionErrors"
                  ]
                },
                "description": "Retrieve expExpressionErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionErrorTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionErrorTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionErrorTime"
                  ]
                },
                "description": "Retrieve expExpressionErrorTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionErrorIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionErrorIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionErrorIndex"
                  ]
                },
                "description": "Retrieve expExpressionErrorIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionError"
                  ]
                },
                "description": "Retrieve expExpressionError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionInstance"
                  ]
                },
                "description": "Retrieve expExpressionInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expExpressionTable/expExpressionEntry/expExpressionOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expExpressionTable",
                    "expExpressionEntry",
                    "expExpressionOwner"
                  ]
                },
                "description": "Retrieve expExpressionOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expObjectTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expObjectTable"
                  ]
                },
                "description": "Retrieve expObjectTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expObjectTable/expObjectEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry"
                  ]
                },
                "description": "Retrieve expObjectEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expObjectTable/expObjectEntry/expExpressionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expExpressionIndex"
                  ]
                },
                "description": "Retrieve expExpressionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectIndex"
                  ]
                },
                "description": "Retrieve expObjectIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectID"
                  ]
                },
                "description": "Retrieve expObjectID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectIDWildcard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectIDWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectIDWildcard"
                  ]
                },
                "description": "Retrieve expObjectIDWildcard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectSampleType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectSampleType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectSampleType"
                  ]
                },
                "description": "Retrieve expObjectSampleType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectDeltaDiscontinuityID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectDeltaDiscontinuityID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectDeltaDiscontinuityID"
                  ]
                },
                "description": "Retrieve expObjectDeltaDiscontinuityID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectDiscontinuityIDWildcard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectDiscontinuityIDWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectDiscontinuityIDWildcard"
                  ]
                },
                "description": "Retrieve expObjectDiscontinuityIDWildcard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectDiscontinuityIDType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectDiscontinuityIDType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectDiscontinuityIDType"
                  ]
                },
                "description": "Retrieve expObjectDiscontinuityIDType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectConditional",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectConditional",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectConditional"
                  ]
                },
                "description": "Retrieve expObjectConditional from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectConditionalWildcard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectConditionalWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectConditionalWildcard"
                  ]
                },
                "description": "Retrieve expObjectConditionalWildcard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expObjectStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expObjectTable/expObjectEntry/expObjectStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expObjectTable",
                    "expObjectEntry",
                    "expObjectStatus"
                  ]
                },
                "description": "Retrieve expObjectStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expValueTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expValueTable"
                  ]
                },
                "description": "Retrieve expValueTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expValueTable/expValueEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry"
                  ]
                },
                "description": "Retrieve expValueEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expExpressionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expValueTable/expValueEntry/expExpressionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expExpressionIndex"
                  ]
                },
                "description": "Retrieve expExpressionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expValueTable/expValueEntry/expValueInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueInstance"
                  ]
                },
                "description": "Retrieve expValueInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueCounter32Val",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expValueTable/expValueEntry/expValueCounter32Val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueCounter32Val"
                  ]
                },
                "description": "Retrieve expValueCounter32Val from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueUnsigned32Val",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expValueTable/expValueEntry/expValueUnsigned32Val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueUnsigned32Val"
                  ]
                },
                "description": "Retrieve expValueUnsigned32Val from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueInteger32Val",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expValueTable/expValueEntry/expValueInteger32Val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueInteger32Val"
                  ]
                },
                "description": "Retrieve expValueInteger32Val from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueIpAddressVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expValueTable/expValueEntry/expValueIpAddressVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueIpAddressVal"
                  ]
                },
                "description": "Retrieve expValueIpAddressVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueOctetStringVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expValueTable/expValueEntry/expValueOctetStringVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueOctetStringVal"
                  ]
                },
                "description": "Retrieve expValueOctetStringVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueOidVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expValueTable/expValueEntry/expValueOidVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueOidVal"
                  ]
                },
                "description": "Retrieve expValueOidVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expValueCounter64Val",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EXPRESSION-MIB:EXPRESSION-MIB/expValueTable/expValueEntry/expValueCounter64Val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EXPRESSION-MIB:EXPRESSION-MIB",
                    "expValueTable",
                    "expValueEntry",
                    "expValueCounter64Val"
                  ]
                },
                "description": "Retrieve expValueCounter64Val from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "EtherLike-MIB",
          "description": "Cisco IOS-XE MIB - EtherLike-MIB\n\nMIB data from `EtherLike-MIB` module.\n\n**Root containers:** 1 (EtherLike-MIB)\n**Paths:** 49 | **Descendants:** 48\n\nAll endpoints are read-only (GET).\n\nEndpoints: 49 | Operations: 49",
          "item": [
            {
              "name": "GET Get EtherLike-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB"
                  ]
                },
                "description": "Retrieve EtherLike-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable"
                  ]
                },
                "description": "Retrieve dot3StatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry"
                  ]
                },
                "description": "Retrieve dot3StatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsIndex"
                  ]
                },
                "description": "Retrieve dot3StatsIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsAlignmentErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsAlignmentErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsAlignmentErrors"
                  ]
                },
                "description": "Retrieve dot3StatsAlignmentErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsFCSErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsFCSErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsFCSErrors"
                  ]
                },
                "description": "Retrieve dot3StatsFCSErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsSingleCollisionFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsSingleCollisionFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsSingleCollisionFrames"
                  ]
                },
                "description": "Retrieve dot3StatsSingleCollisionFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsMultipleCollisionFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsMultipleCollisionFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsMultipleCollisionFrames"
                  ]
                },
                "description": "Retrieve dot3StatsMultipleCollisionFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsSQETestErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsSQETestErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsSQETestErrors"
                  ]
                },
                "description": "Retrieve dot3StatsSQETestErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsDeferredTransmissions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsDeferredTransmissions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsDeferredTransmissions"
                  ]
                },
                "description": "Retrieve dot3StatsDeferredTransmissions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsLateCollisions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsLateCollisions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsLateCollisions"
                  ]
                },
                "description": "Retrieve dot3StatsLateCollisions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsExcessiveCollisions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsExcessiveCollisions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsExcessiveCollisions"
                  ]
                },
                "description": "Retrieve dot3StatsExcessiveCollisions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsInternalMacTransmitErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsInternalMacTransmitErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsInternalMacTransmitErrors"
                  ]
                },
                "description": "Retrieve dot3StatsInternalMacTransmitErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsCarrierSenseErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsCarrierSenseErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsCarrierSenseErrors"
                  ]
                },
                "description": "Retrieve dot3StatsCarrierSenseErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsFrameTooLongs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsFrameTooLongs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsFrameTooLongs"
                  ]
                },
                "description": "Retrieve dot3StatsFrameTooLongs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsInternalMacReceiveErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsInternalMacReceiveErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsInternalMacReceiveErrors"
                  ]
                },
                "description": "Retrieve dot3StatsInternalMacReceiveErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsSymbolErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsSymbolErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsSymbolErrors"
                  ]
                },
                "description": "Retrieve dot3StatsSymbolErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsDuplexStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsDuplexStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsDuplexStatus"
                  ]
                },
                "description": "Retrieve dot3StatsDuplexStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsRateControlAbility",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsRateControlAbility",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsRateControlAbility"
                  ]
                },
                "description": "Retrieve dot3StatsRateControlAbility from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsRateControlStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3StatsTable/dot3StatsEntry/dot3StatsRateControlStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3StatsTable",
                    "dot3StatsEntry",
                    "dot3StatsRateControlStatus"
                  ]
                },
                "description": "Retrieve dot3StatsRateControlStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3CollTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3CollTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3CollTable"
                  ]
                },
                "description": "Retrieve dot3CollTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3CollEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3CollTable/dot3CollEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3CollTable",
                    "dot3CollEntry"
                  ]
                },
                "description": "Retrieve dot3CollEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3CollTable/dot3CollEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3CollTable",
                    "dot3CollEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3CollCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3CollTable/dot3CollEntry/dot3CollCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3CollTable",
                    "dot3CollEntry",
                    "dot3CollCount"
                  ]
                },
                "description": "Retrieve dot3CollCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3CollFrequencies",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3CollTable/dot3CollEntry/dot3CollFrequencies",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3CollTable",
                    "dot3CollEntry",
                    "dot3CollFrequencies"
                  ]
                },
                "description": "Retrieve dot3CollFrequencies from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3ControlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3ControlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3ControlTable"
                  ]
                },
                "description": "Retrieve dot3ControlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3ControlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3ControlTable/dot3ControlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3ControlTable",
                    "dot3ControlEntry"
                  ]
                },
                "description": "Retrieve dot3ControlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3ControlTable/dot3ControlEntry/dot3StatsIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3ControlTable",
                    "dot3ControlEntry",
                    "dot3StatsIndex"
                  ]
                },
                "description": "Retrieve dot3StatsIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3ControlFunctionsSupported",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3ControlTable/dot3ControlEntry/dot3ControlFunctionsSupported",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3ControlTable",
                    "dot3ControlEntry",
                    "dot3ControlFunctionsSupported"
                  ]
                },
                "description": "Retrieve dot3ControlFunctionsSupported from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3ControlInUnknownOpcodes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3ControlTable/dot3ControlEntry/dot3ControlInUnknownOpcodes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3ControlTable",
                    "dot3ControlEntry",
                    "dot3ControlInUnknownOpcodes"
                  ]
                },
                "description": "Retrieve dot3ControlInUnknownOpcodes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3HCControlInUnknownOpcodes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3ControlTable/dot3ControlEntry/dot3HCControlInUnknownOpcodes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3ControlTable",
                    "dot3ControlEntry",
                    "dot3HCControlInUnknownOpcodes"
                  ]
                },
                "description": "Retrieve dot3HCControlInUnknownOpcodes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3PauseTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3PauseTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3PauseTable"
                  ]
                },
                "description": "Retrieve dot3PauseTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3PauseEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3PauseTable/dot3PauseEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3PauseTable",
                    "dot3PauseEntry"
                  ]
                },
                "description": "Retrieve dot3PauseEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3PauseTable/dot3PauseEntry/dot3StatsIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3PauseTable",
                    "dot3PauseEntry",
                    "dot3StatsIndex"
                  ]
                },
                "description": "Retrieve dot3StatsIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3PauseAdminMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3PauseTable/dot3PauseEntry/dot3PauseAdminMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3PauseTable",
                    "dot3PauseEntry",
                    "dot3PauseAdminMode"
                  ]
                },
                "description": "Retrieve dot3PauseAdminMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3PauseOperMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3PauseTable/dot3PauseEntry/dot3PauseOperMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3PauseTable",
                    "dot3PauseEntry",
                    "dot3PauseOperMode"
                  ]
                },
                "description": "Retrieve dot3PauseOperMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3InPauseFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3PauseTable/dot3PauseEntry/dot3InPauseFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3PauseTable",
                    "dot3PauseEntry",
                    "dot3InPauseFrames"
                  ]
                },
                "description": "Retrieve dot3InPauseFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3OutPauseFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3PauseTable/dot3PauseEntry/dot3OutPauseFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3PauseTable",
                    "dot3PauseEntry",
                    "dot3OutPauseFrames"
                  ]
                },
                "description": "Retrieve dot3OutPauseFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3HCInPauseFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3PauseTable/dot3PauseEntry/dot3HCInPauseFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3PauseTable",
                    "dot3PauseEntry",
                    "dot3HCInPauseFrames"
                  ]
                },
                "description": "Retrieve dot3HCInPauseFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3HCOutPauseFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3PauseTable/dot3PauseEntry/dot3HCOutPauseFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3PauseTable",
                    "dot3PauseEntry",
                    "dot3HCOutPauseFrames"
                  ]
                },
                "description": "Retrieve dot3HCOutPauseFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3HCStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3HCStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3HCStatsTable"
                  ]
                },
                "description": "Retrieve dot3HCStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3HCStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3HCStatsTable/dot3HCStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3HCStatsTable",
                    "dot3HCStatsEntry"
                  ]
                },
                "description": "Retrieve dot3HCStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3StatsIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3HCStatsTable/dot3HCStatsEntry/dot3StatsIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3HCStatsTable",
                    "dot3HCStatsEntry",
                    "dot3StatsIndex"
                  ]
                },
                "description": "Retrieve dot3StatsIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3HCStatsAlignmentErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3HCStatsTable/dot3HCStatsEntry/dot3HCStatsAlignmentErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3HCStatsTable",
                    "dot3HCStatsEntry",
                    "dot3HCStatsAlignmentErrors"
                  ]
                },
                "description": "Retrieve dot3HCStatsAlignmentErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3HCStatsFCSErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3HCStatsTable/dot3HCStatsEntry/dot3HCStatsFCSErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3HCStatsTable",
                    "dot3HCStatsEntry",
                    "dot3HCStatsFCSErrors"
                  ]
                },
                "description": "Retrieve dot3HCStatsFCSErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3HCStatsInternalMacTransmitErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3HCStatsTable/dot3HCStatsEntry/dot3HCStatsInternalMacTransmitErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3HCStatsTable",
                    "dot3HCStatsEntry",
                    "dot3HCStatsInternalMacTransmitErrors"
                  ]
                },
                "description": "Retrieve dot3HCStatsInternalMacTransmitErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3HCStatsFrameTooLongs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3HCStatsTable/dot3HCStatsEntry/dot3HCStatsFrameTooLongs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3HCStatsTable",
                    "dot3HCStatsEntry",
                    "dot3HCStatsFrameTooLongs"
                  ]
                },
                "description": "Retrieve dot3HCStatsFrameTooLongs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3HCStatsInternalMacReceiveErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3HCStatsTable/dot3HCStatsEntry/dot3HCStatsInternalMacReceiveErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3HCStatsTable",
                    "dot3HCStatsEntry",
                    "dot3HCStatsInternalMacReceiveErrors"
                  ]
                },
                "description": "Retrieve dot3HCStatsInternalMacReceiveErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot3HCStatsSymbolErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/EtherLike-MIB:EtherLike-MIB/dot3HCStatsTable/dot3HCStatsEntry/dot3HCStatsSymbolErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "EtherLike-MIB:EtherLike-MIB",
                    "dot3HCStatsTable",
                    "dot3HCStatsEntry",
                    "dot3HCStatsSymbolErrors"
                  ]
                },
                "description": "Retrieve dot3HCStatsSymbolErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "FRAME-RELAY-DTE-MIB",
          "description": "Cisco IOS-XE MIB - FRAME-RELAY-DTE-MIB\n\nMIB data from `FRAME-RELAY-DTE-MIB` module.\n\n**Root containers:** 1 (FRAME-RELAY-DTE-MIB)\n**Paths:** 53 | **Descendants:** 52\n\nAll endpoints are read-only (GET).\n\nEndpoints: 53 | Operations: 53",
          "item": [
            {
              "name": "GET Get FRAME-RELAY-DTE-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB"
                  ]
                },
                "description": "Retrieve FRAME-RELAY-DTE-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frameRelayTrapControl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frameRelayTrapControl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frameRelayTrapControl"
                  ]
                },
                "description": "Retrieve frameRelayTrapControl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frTrapState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frameRelayTrapControl/frTrapState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frameRelayTrapControl",
                    "frTrapState"
                  ]
                },
                "description": "Retrieve frTrapState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frTrapMaxRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frameRelayTrapControl/frTrapMaxRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frameRelayTrapControl",
                    "frTrapMaxRate"
                  ]
                },
                "description": "Retrieve frTrapMaxRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frDlcmiTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frDlcmiTable"
                  ]
                },
                "description": "Retrieve frDlcmiTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frDlcmiTable/frDlcmiEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry"
                  ]
                },
                "description": "Retrieve frDlcmiEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiIfIndex"
                  ]
                },
                "description": "Retrieve frDlcmiIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiState"
                  ]
                },
                "description": "Retrieve frDlcmiState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiAddress"
                  ]
                },
                "description": "Retrieve frDlcmiAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiAddressLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiAddressLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiAddressLen"
                  ]
                },
                "description": "Retrieve frDlcmiAddressLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiPollingInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiPollingInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiPollingInterval"
                  ]
                },
                "description": "Retrieve frDlcmiPollingInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiFullEnquiryInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiFullEnquiryInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiFullEnquiryInterval"
                  ]
                },
                "description": "Retrieve frDlcmiFullEnquiryInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiErrorThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiErrorThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiErrorThreshold"
                  ]
                },
                "description": "Retrieve frDlcmiErrorThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiMonitoredEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiMonitoredEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiMonitoredEvents"
                  ]
                },
                "description": "Retrieve frDlcmiMonitoredEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiMaxSupportedVCs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiMaxSupportedVCs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiMaxSupportedVCs"
                  ]
                },
                "description": "Retrieve frDlcmiMaxSupportedVCs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiMulticast",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiMulticast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiMulticast"
                  ]
                },
                "description": "Retrieve frDlcmiMulticast from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiStatus"
                  ]
                },
                "description": "Retrieve frDlcmiStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiRowStatus"
                  ]
                },
                "description": "Retrieve frDlcmiRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable"
                  ]
                },
                "description": "Retrieve frCircuitTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry"
                  ]
                },
                "description": "Retrieve frCircuitEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitIfIndex"
                  ]
                },
                "description": "Retrieve frCircuitIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitDlci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitDlci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitDlci"
                  ]
                },
                "description": "Retrieve frCircuitDlci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitState"
                  ]
                },
                "description": "Retrieve frCircuitState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitReceivedFECNs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitReceivedFECNs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitReceivedFECNs"
                  ]
                },
                "description": "Retrieve frCircuitReceivedFECNs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitReceivedBECNs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitReceivedBECNs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitReceivedBECNs"
                  ]
                },
                "description": "Retrieve frCircuitReceivedBECNs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitSentFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitSentFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitSentFrames"
                  ]
                },
                "description": "Retrieve frCircuitSentFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitSentOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitSentOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitSentOctets"
                  ]
                },
                "description": "Retrieve frCircuitSentOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitReceivedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitReceivedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitReceivedFrames"
                  ]
                },
                "description": "Retrieve frCircuitReceivedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitReceivedOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitReceivedOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitReceivedOctets"
                  ]
                },
                "description": "Retrieve frCircuitReceivedOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitCreationTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitCreationTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitCreationTime"
                  ]
                },
                "description": "Retrieve frCircuitCreationTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitLastTimeChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitLastTimeChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitLastTimeChange"
                  ]
                },
                "description": "Retrieve frCircuitLastTimeChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitCommittedBurst",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitCommittedBurst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitCommittedBurst"
                  ]
                },
                "description": "Retrieve frCircuitCommittedBurst from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitExcessBurst",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitExcessBurst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitExcessBurst"
                  ]
                },
                "description": "Retrieve frCircuitExcessBurst from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitThroughput",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitThroughput",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitThroughput"
                  ]
                },
                "description": "Retrieve frCircuitThroughput from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitMulticast",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitMulticast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitMulticast"
                  ]
                },
                "description": "Retrieve frCircuitMulticast from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitType"
                  ]
                },
                "description": "Retrieve frCircuitType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitDiscards"
                  ]
                },
                "description": "Retrieve frCircuitDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitReceivedDEs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitReceivedDEs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitReceivedDEs"
                  ]
                },
                "description": "Retrieve frCircuitReceivedDEs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitSentDEs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitSentDEs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitSentDEs"
                  ]
                },
                "description": "Retrieve frCircuitSentDEs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitLogicalIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitLogicalIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitLogicalIfIndex"
                  ]
                },
                "description": "Retrieve frCircuitLogicalIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frCircuitTable/frCircuitEntry/frCircuitRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitRowStatus"
                  ]
                },
                "description": "Retrieve frCircuitRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frErrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frErrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frErrTable"
                  ]
                },
                "description": "Retrieve frErrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frErrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frErrTable/frErrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frErrTable",
                    "frErrEntry"
                  ]
                },
                "description": "Retrieve frErrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frErrIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frErrTable/frErrEntry/frErrIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frErrTable",
                    "frErrEntry",
                    "frErrIfIndex"
                  ]
                },
                "description": "Retrieve frErrIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frErrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frErrTable/frErrEntry/frErrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frErrTable",
                    "frErrEntry",
                    "frErrType"
                  ]
                },
                "description": "Retrieve frErrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frErrData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frErrTable/frErrEntry/frErrData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frErrTable",
                    "frErrEntry",
                    "frErrData"
                  ]
                },
                "description": "Retrieve frErrData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frErrTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frErrTable/frErrEntry/frErrTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frErrTable",
                    "frErrEntry",
                    "frErrTime"
                  ]
                },
                "description": "Retrieve frErrTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frErrFaults",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frErrTable/frErrEntry/frErrFaults",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frErrTable",
                    "frErrEntry",
                    "frErrFaults"
                  ]
                },
                "description": "Retrieve frErrFaults from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frErrFaultTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frErrTable/frErrEntry/frErrFaultTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frErrTable",
                    "frErrEntry",
                    "frErrFaultTime"
                  ]
                },
                "description": "Retrieve frErrFaultTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frErrTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frErrTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frErrTable/object-1/frCircuitIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frErrTable",
                    "object-1",
                    "frCircuitIfIndex"
                  ]
                },
                "description": "Retrieve frCircuitIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitDlci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frErrTable/object-1/frCircuitDlci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frErrTable",
                    "object-1",
                    "frCircuitDlci"
                  ]
                },
                "description": "Retrieve frCircuitDlci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB/frErrTable/object-1/frCircuitState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "FRAME-RELAY-DTE-MIB:FRAME-RELAY-DTE-MIB",
                    "frErrTable",
                    "object-1",
                    "frCircuitState"
                  ]
                },
                "description": "Retrieve frCircuitState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "IF-MIB",
          "description": "Cisco IOS-XE MIB - IF-MIB\n\nMIB data from `IF-MIB` module.\n\n**Root containers:** 1 (IF-MIB)\n**Paths:** 64 | **Descendants:** 71\n\nAll endpoints are read-only (GET).\n\nEndpoints: 64 | Operations: 64",
          "item": [
            {
              "name": "GET Get IF-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB"
                  ]
                },
                "description": "Retrieve IF-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interfaces",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "interfaces"
                  ]
                },
                "description": "Retrieve interfaces from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/interfaces/ifNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "interfaces",
                    "ifNumber"
                  ]
                },
                "description": "Retrieve ifNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifMIBObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifMIBObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifMIBObjects"
                  ]
                },
                "description": "Retrieve ifMIBObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifTableLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifMIBObjects/ifTableLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifMIBObjects",
                    "ifTableLastChange"
                  ]
                },
                "description": "Retrieve ifTableLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifStackLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifMIBObjects/ifStackLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifMIBObjects",
                    "ifStackLastChange"
                  ]
                },
                "description": "Retrieve ifStackLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable"
                  ]
                },
                "description": "Retrieve ifTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry"
                  ]
                },
                "description": "Retrieve ifEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifDescr"
                  ]
                },
                "description": "Retrieve ifDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifType"
                  ]
                },
                "description": "Retrieve ifType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifMtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifMtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifMtu"
                  ]
                },
                "description": "Retrieve ifMtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifSpeed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifSpeed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifSpeed"
                  ]
                },
                "description": "Retrieve ifSpeed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifPhysAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifPhysAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifPhysAddress"
                  ]
                },
                "description": "Retrieve ifPhysAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifAdminStatus"
                  ]
                },
                "description": "Retrieve ifAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifOperStatus"
                  ]
                },
                "description": "Retrieve ifOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifLastChange"
                  ]
                },
                "description": "Retrieve ifLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifInOctets"
                  ]
                },
                "description": "Retrieve ifInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifInUcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifInUcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifInUcastPkts"
                  ]
                },
                "description": "Retrieve ifInUcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifInDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifInDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifInDiscards"
                  ]
                },
                "description": "Retrieve ifInDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifInErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifInErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifInErrors"
                  ]
                },
                "description": "Retrieve ifInErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifInUnknownProtos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifInUnknownProtos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifInUnknownProtos"
                  ]
                },
                "description": "Retrieve ifInUnknownProtos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifOutOctets"
                  ]
                },
                "description": "Retrieve ifOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOutUcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifOutUcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifOutUcastPkts"
                  ]
                },
                "description": "Retrieve ifOutUcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOutDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifOutDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifOutDiscards"
                  ]
                },
                "description": "Retrieve ifOutDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOutErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifOutErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifOutErrors"
                  ]
                },
                "description": "Retrieve ifOutErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifName"
                  ]
                },
                "description": "Retrieve ifName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifInMulticastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifInMulticastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifInMulticastPkts"
                  ]
                },
                "description": "Retrieve ifInMulticastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifInBroadcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifInBroadcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifInBroadcastPkts"
                  ]
                },
                "description": "Retrieve ifInBroadcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOutMulticastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifOutMulticastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifOutMulticastPkts"
                  ]
                },
                "description": "Retrieve ifOutMulticastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOutBroadcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifOutBroadcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifOutBroadcastPkts"
                  ]
                },
                "description": "Retrieve ifOutBroadcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifHCInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifHCInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifHCInOctets"
                  ]
                },
                "description": "Retrieve ifHCInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifHCInUcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifHCInUcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifHCInUcastPkts"
                  ]
                },
                "description": "Retrieve ifHCInUcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifHCInMulticastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifHCInMulticastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifHCInMulticastPkts"
                  ]
                },
                "description": "Retrieve ifHCInMulticastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifHCInBroadcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifHCInBroadcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifHCInBroadcastPkts"
                  ]
                },
                "description": "Retrieve ifHCInBroadcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifHCOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifHCOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifHCOutOctets"
                  ]
                },
                "description": "Retrieve ifHCOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifHCOutUcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifHCOutUcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifHCOutUcastPkts"
                  ]
                },
                "description": "Retrieve ifHCOutUcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifHCOutMulticastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifHCOutMulticastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifHCOutMulticastPkts"
                  ]
                },
                "description": "Retrieve ifHCOutMulticastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifHCOutBroadcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifHCOutBroadcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifHCOutBroadcastPkts"
                  ]
                },
                "description": "Retrieve ifHCOutBroadcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifLinkUpDownTrapEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifLinkUpDownTrapEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifLinkUpDownTrapEnable"
                  ]
                },
                "description": "Retrieve ifLinkUpDownTrapEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifHighSpeed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifHighSpeed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifHighSpeed"
                  ]
                },
                "description": "Retrieve ifHighSpeed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifPromiscuousMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifPromiscuousMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifPromiscuousMode"
                  ]
                },
                "description": "Retrieve ifPromiscuousMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifConnectorPresent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifConnectorPresent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifConnectorPresent"
                  ]
                },
                "description": "Retrieve ifConnectorPresent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifAlias",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifAlias",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifAlias"
                  ]
                },
                "description": "Retrieve ifAlias from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifCounterDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifTable/ifEntry/ifCounterDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifCounterDiscontinuityTime"
                  ]
                },
                "description": "Retrieve ifCounterDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifStackTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifStackTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifStackTable"
                  ]
                },
                "description": "Retrieve ifStackTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifStackEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifStackTable/ifStackEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifStackTable",
                    "ifStackEntry"
                  ]
                },
                "description": "Retrieve ifStackEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifStackHigherLayer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifStackTable/ifStackEntry/ifStackHigherLayer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifStackTable",
                    "ifStackEntry",
                    "ifStackHigherLayer"
                  ]
                },
                "description": "Retrieve ifStackHigherLayer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifStackLowerLayer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifStackTable/ifStackEntry/ifStackLowerLayer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifStackTable",
                    "ifStackEntry",
                    "ifStackLowerLayer"
                  ]
                },
                "description": "Retrieve ifStackLowerLayer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifStackStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifStackTable/ifStackEntry/ifStackStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifStackTable",
                    "ifStackEntry",
                    "ifStackStatus"
                  ]
                },
                "description": "Retrieve ifStackStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifRcvAddressTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifRcvAddressTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifRcvAddressTable"
                  ]
                },
                "description": "Retrieve ifRcvAddressTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifRcvAddressEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifRcvAddressTable/ifRcvAddressEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifRcvAddressTable",
                    "ifRcvAddressEntry"
                  ]
                },
                "description": "Retrieve ifRcvAddressEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifRcvAddressTable/ifRcvAddressEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifRcvAddressTable",
                    "ifRcvAddressEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifRcvAddressAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifRcvAddressTable/ifRcvAddressEntry/ifRcvAddressAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifRcvAddressTable",
                    "ifRcvAddressEntry",
                    "ifRcvAddressAddress"
                  ]
                },
                "description": "Retrieve ifRcvAddressAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifRcvAddressStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifRcvAddressTable/ifRcvAddressEntry/ifRcvAddressStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifRcvAddressTable",
                    "ifRcvAddressEntry",
                    "ifRcvAddressStatus"
                  ]
                },
                "description": "Retrieve ifRcvAddressStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifRcvAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifRcvAddressTable/ifRcvAddressEntry/ifRcvAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifRcvAddressTable",
                    "ifRcvAddressEntry",
                    "ifRcvAddressType"
                  ]
                },
                "description": "Retrieve ifRcvAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifRcvAddressTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifRcvAddressTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifRcvAddressTable/object-1/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifRcvAddressTable",
                    "object-1",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifRcvAddressTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifRcvAddressTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifRcvAddressTable/object-2/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifRcvAddressTable",
                    "object-2",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifRcvAddressTable/object-2/ifAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifRcvAddressTable",
                    "object-2",
                    "ifAdminStatus"
                  ]
                },
                "description": "Retrieve ifAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifRcvAddressTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifRcvAddressTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifRcvAddressTable/object-3/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifRcvAddressTable",
                    "object-3",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IF-MIB:IF-MIB/ifRcvAddressTable/object-3/ifOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IF-MIB:IF-MIB",
                    "ifRcvAddressTable",
                    "object-3",
                    "ifOperStatus"
                  ]
                },
                "description": "Retrieve ifOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "IGMP-STD-MIB",
          "description": "Cisco IOS-XE MIB - IGMP-STD-MIB\n\nMIB data from `IGMP-STD-MIB` module.\n\n**Root containers:** 1 (IGMP-STD-MIB)\n**Paths:** 28 | **Descendants:** 27\n\nAll endpoints are read-only (GET).\n\nEndpoints: 28 | Operations: 28",
          "item": [
            {
              "name": "GET Get IGMP-STD-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB"
                  ]
                },
                "description": "Retrieve IGMP-STD-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable"
                  ]
                },
                "description": "Retrieve igmpInterfaceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable/igmpInterfaceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable",
                    "igmpInterfaceEntry"
                  ]
                },
                "description": "Retrieve igmpInterfaceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable/igmpInterfaceEntry/igmpInterfaceIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable",
                    "igmpInterfaceEntry",
                    "igmpInterfaceIfIndex"
                  ]
                },
                "description": "Retrieve igmpInterfaceIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceQueryInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable/igmpInterfaceEntry/igmpInterfaceQueryInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable",
                    "igmpInterfaceEntry",
                    "igmpInterfaceQueryInterval"
                  ]
                },
                "description": "Retrieve igmpInterfaceQueryInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable/igmpInterfaceEntry/igmpInterfaceStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable",
                    "igmpInterfaceEntry",
                    "igmpInterfaceStatus"
                  ]
                },
                "description": "Retrieve igmpInterfaceStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable/igmpInterfaceEntry/igmpInterfaceVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable",
                    "igmpInterfaceEntry",
                    "igmpInterfaceVersion"
                  ]
                },
                "description": "Retrieve igmpInterfaceVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceQuerier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable/igmpInterfaceEntry/igmpInterfaceQuerier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable",
                    "igmpInterfaceEntry",
                    "igmpInterfaceQuerier"
                  ]
                },
                "description": "Retrieve igmpInterfaceQuerier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceQueryMaxResponseTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable/igmpInterfaceEntry/igmpInterfaceQueryMaxResponseTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable",
                    "igmpInterfaceEntry",
                    "igmpInterfaceQueryMaxResponseTime"
                  ]
                },
                "description": "Retrieve igmpInterfaceQueryMaxResponseTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceQuerierUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable/igmpInterfaceEntry/igmpInterfaceQuerierUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable",
                    "igmpInterfaceEntry",
                    "igmpInterfaceQuerierUpTime"
                  ]
                },
                "description": "Retrieve igmpInterfaceQuerierUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceQuerierExpiryTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable/igmpInterfaceEntry/igmpInterfaceQuerierExpiryTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable",
                    "igmpInterfaceEntry",
                    "igmpInterfaceQuerierExpiryTime"
                  ]
                },
                "description": "Retrieve igmpInterfaceQuerierExpiryTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceVersion1QuerierTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable/igmpInterfaceEntry/igmpInterfaceVersion1QuerierTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable",
                    "igmpInterfaceEntry",
                    "igmpInterfaceVersion1QuerierTimer"
                  ]
                },
                "description": "Retrieve igmpInterfaceVersion1QuerierTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceWrongVersionQueries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable/igmpInterfaceEntry/igmpInterfaceWrongVersionQueries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable",
                    "igmpInterfaceEntry",
                    "igmpInterfaceWrongVersionQueries"
                  ]
                },
                "description": "Retrieve igmpInterfaceWrongVersionQueries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceJoins",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable/igmpInterfaceEntry/igmpInterfaceJoins",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable",
                    "igmpInterfaceEntry",
                    "igmpInterfaceJoins"
                  ]
                },
                "description": "Retrieve igmpInterfaceJoins from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceProxyIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable/igmpInterfaceEntry/igmpInterfaceProxyIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable",
                    "igmpInterfaceEntry",
                    "igmpInterfaceProxyIfIndex"
                  ]
                },
                "description": "Retrieve igmpInterfaceProxyIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceGroups",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable/igmpInterfaceEntry/igmpInterfaceGroups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable",
                    "igmpInterfaceEntry",
                    "igmpInterfaceGroups"
                  ]
                },
                "description": "Retrieve igmpInterfaceGroups from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceRobustness",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable/igmpInterfaceEntry/igmpInterfaceRobustness",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable",
                    "igmpInterfaceEntry",
                    "igmpInterfaceRobustness"
                  ]
                },
                "description": "Retrieve igmpInterfaceRobustness from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpInterfaceLastMembQueryIntvl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpInterfaceTable/igmpInterfaceEntry/igmpInterfaceLastMembQueryIntvl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpInterfaceTable",
                    "igmpInterfaceEntry",
                    "igmpInterfaceLastMembQueryIntvl"
                  ]
                },
                "description": "Retrieve igmpInterfaceLastMembQueryIntvl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpCacheTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpCacheTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpCacheTable"
                  ]
                },
                "description": "Retrieve igmpCacheTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpCacheEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpCacheTable/igmpCacheEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpCacheTable",
                    "igmpCacheEntry"
                  ]
                },
                "description": "Retrieve igmpCacheEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpCacheAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpCacheTable/igmpCacheEntry/igmpCacheAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpCacheTable",
                    "igmpCacheEntry",
                    "igmpCacheAddress"
                  ]
                },
                "description": "Retrieve igmpCacheAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpCacheIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpCacheTable/igmpCacheEntry/igmpCacheIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpCacheTable",
                    "igmpCacheEntry",
                    "igmpCacheIfIndex"
                  ]
                },
                "description": "Retrieve igmpCacheIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpCacheSelf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpCacheTable/igmpCacheEntry/igmpCacheSelf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpCacheTable",
                    "igmpCacheEntry",
                    "igmpCacheSelf"
                  ]
                },
                "description": "Retrieve igmpCacheSelf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpCacheLastReporter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpCacheTable/igmpCacheEntry/igmpCacheLastReporter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpCacheTable",
                    "igmpCacheEntry",
                    "igmpCacheLastReporter"
                  ]
                },
                "description": "Retrieve igmpCacheLastReporter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpCacheUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpCacheTable/igmpCacheEntry/igmpCacheUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpCacheTable",
                    "igmpCacheEntry",
                    "igmpCacheUpTime"
                  ]
                },
                "description": "Retrieve igmpCacheUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpCacheExpiryTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpCacheTable/igmpCacheEntry/igmpCacheExpiryTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpCacheTable",
                    "igmpCacheEntry",
                    "igmpCacheExpiryTime"
                  ]
                },
                "description": "Retrieve igmpCacheExpiryTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpCacheStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpCacheTable/igmpCacheEntry/igmpCacheStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpCacheTable",
                    "igmpCacheEntry",
                    "igmpCacheStatus"
                  ]
                },
                "description": "Retrieve igmpCacheStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmpCacheVersion1HostTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IGMP-STD-MIB:IGMP-STD-MIB/igmpCacheTable/igmpCacheEntry/igmpCacheVersion1HostTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IGMP-STD-MIB:IGMP-STD-MIB",
                    "igmpCacheTable",
                    "igmpCacheEntry",
                    "igmpCacheVersion1HostTimer"
                  ]
                },
                "description": "Retrieve igmpCacheVersion1HostTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "INT-SERV-MIB",
          "description": "Cisco IOS-XE MIB - INT-SERV-MIB\n\nMIB data from `INT-SERV-MIB` module.\n\n**Root containers:** 1 (INT-SERV-MIB)\n**Paths:** 39 | **Descendants:** 38\n\nAll endpoints are read-only (GET).\n\nEndpoints: 39 | Operations: 39",
          "item": [
            {
              "name": "GET Get INT-SERV-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB"
                  ]
                },
                "description": "Retrieve INT-SERV-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvGenObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvGenObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvGenObjects"
                  ]
                },
                "description": "Retrieve intSrvGenObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowNewIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvGenObjects/intSrvFlowNewIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvGenObjects",
                    "intSrvFlowNewIndex"
                  ]
                },
                "description": "Retrieve intSrvFlowNewIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvIfAttribTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvIfAttribTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvIfAttribTable"
                  ]
                },
                "description": "Retrieve intSrvIfAttribTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvIfAttribEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvIfAttribTable/intSrvIfAttribEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvIfAttribTable",
                    "intSrvIfAttribEntry"
                  ]
                },
                "description": "Retrieve intSrvIfAttribEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvIfAttribTable/intSrvIfAttribEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvIfAttribTable",
                    "intSrvIfAttribEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvIfAttribAllocatedBits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvIfAttribTable/intSrvIfAttribEntry/intSrvIfAttribAllocatedBits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvIfAttribTable",
                    "intSrvIfAttribEntry",
                    "intSrvIfAttribAllocatedBits"
                  ]
                },
                "description": "Retrieve intSrvIfAttribAllocatedBits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvIfAttribMaxAllocatedBits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvIfAttribTable/intSrvIfAttribEntry/intSrvIfAttribMaxAllocatedBits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvIfAttribTable",
                    "intSrvIfAttribEntry",
                    "intSrvIfAttribMaxAllocatedBits"
                  ]
                },
                "description": "Retrieve intSrvIfAttribMaxAllocatedBits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvIfAttribAllocatedBuffer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvIfAttribTable/intSrvIfAttribEntry/intSrvIfAttribAllocatedBuffer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvIfAttribTable",
                    "intSrvIfAttribEntry",
                    "intSrvIfAttribAllocatedBuffer"
                  ]
                },
                "description": "Retrieve intSrvIfAttribAllocatedBuffer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvIfAttribFlows",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvIfAttribTable/intSrvIfAttribEntry/intSrvIfAttribFlows",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvIfAttribTable",
                    "intSrvIfAttribEntry",
                    "intSrvIfAttribFlows"
                  ]
                },
                "description": "Retrieve intSrvIfAttribFlows from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvIfAttribPropagationDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvIfAttribTable/intSrvIfAttribEntry/intSrvIfAttribPropagationDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvIfAttribTable",
                    "intSrvIfAttribEntry",
                    "intSrvIfAttribPropagationDelay"
                  ]
                },
                "description": "Retrieve intSrvIfAttribPropagationDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvIfAttribStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvIfAttribTable/intSrvIfAttribEntry/intSrvIfAttribStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvIfAttribTable",
                    "intSrvIfAttribEntry",
                    "intSrvIfAttribStatus"
                  ]
                },
                "description": "Retrieve intSrvIfAttribStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable"
                  ]
                },
                "description": "Retrieve intSrvFlowTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry"
                  ]
                },
                "description": "Retrieve intSrvFlowEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowNumber"
                  ]
                },
                "description": "Retrieve intSrvFlowNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowType"
                  ]
                },
                "description": "Retrieve intSrvFlowType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowOwner"
                  ]
                },
                "description": "Retrieve intSrvFlowOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowDestAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowDestAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowDestAddr"
                  ]
                },
                "description": "Retrieve intSrvFlowDestAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowSenderAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowSenderAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowSenderAddr"
                  ]
                },
                "description": "Retrieve intSrvFlowSenderAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowDestAddrLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowDestAddrLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowDestAddrLength"
                  ]
                },
                "description": "Retrieve intSrvFlowDestAddrLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowSenderAddrLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowSenderAddrLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowSenderAddrLength"
                  ]
                },
                "description": "Retrieve intSrvFlowSenderAddrLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowProtocol"
                  ]
                },
                "description": "Retrieve intSrvFlowProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowDestPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowDestPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowDestPort"
                  ]
                },
                "description": "Retrieve intSrvFlowDestPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowPort"
                  ]
                },
                "description": "Retrieve intSrvFlowPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowFlowId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowFlowId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowFlowId"
                  ]
                },
                "description": "Retrieve intSrvFlowFlowId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowInterface"
                  ]
                },
                "description": "Retrieve intSrvFlowInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowIfAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowIfAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowIfAddr"
                  ]
                },
                "description": "Retrieve intSrvFlowIfAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowRate"
                  ]
                },
                "description": "Retrieve intSrvFlowRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowBurst",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowBurst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowBurst"
                  ]
                },
                "description": "Retrieve intSrvFlowBurst from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowWeight",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowWeight",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowWeight"
                  ]
                },
                "description": "Retrieve intSrvFlowWeight from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowQueue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowQueue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowQueue"
                  ]
                },
                "description": "Retrieve intSrvFlowQueue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowMinTU",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowMinTU",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowMinTU"
                  ]
                },
                "description": "Retrieve intSrvFlowMinTU from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowMaxTU",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowMaxTU",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowMaxTU"
                  ]
                },
                "description": "Retrieve intSrvFlowMaxTU from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowBestEffort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowBestEffort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowBestEffort"
                  ]
                },
                "description": "Retrieve intSrvFlowBestEffort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowPoliced",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowPoliced",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowPoliced"
                  ]
                },
                "description": "Retrieve intSrvFlowPoliced from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowDiscard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowDiscard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowDiscard"
                  ]
                },
                "description": "Retrieve intSrvFlowDiscard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowService",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowService",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowService"
                  ]
                },
                "description": "Retrieve intSrvFlowService from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowOrder",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowOrder"
                  ]
                },
                "description": "Retrieve intSrvFlowOrder from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INT-SERV-MIB:INT-SERV-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INT-SERV-MIB:INT-SERV-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowStatus"
                  ]
                },
                "description": "Retrieve intSrvFlowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "INTEGRATED-SERVICES-MIB",
          "description": "Cisco IOS-XE MIB - INTEGRATED-SERVICES-MIB\n\nMIB data from `INTEGRATED-SERVICES-MIB` module.\n\n**Root containers:** 1 (INTEGRATED-SERVICES-MIB)\n**Paths:** 39 | **Descendants:** 38\n\nAll endpoints are read-only (GET).\n\nEndpoints: 39 | Operations: 39",
          "item": [
            {
              "name": "GET Get INTEGRATED-SERVICES-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB"
                  ]
                },
                "description": "Retrieve INTEGRATED-SERVICES-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvGenObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvGenObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvGenObjects"
                  ]
                },
                "description": "Retrieve intSrvGenObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowNewIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvGenObjects/intSrvFlowNewIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvGenObjects",
                    "intSrvFlowNewIndex"
                  ]
                },
                "description": "Retrieve intSrvFlowNewIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvIfAttribTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvIfAttribTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvIfAttribTable"
                  ]
                },
                "description": "Retrieve intSrvIfAttribTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvIfAttribEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvIfAttribTable/intSrvIfAttribEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvIfAttribTable",
                    "intSrvIfAttribEntry"
                  ]
                },
                "description": "Retrieve intSrvIfAttribEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvIfAttribTable/intSrvIfAttribEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvIfAttribTable",
                    "intSrvIfAttribEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvIfAttribAllocatedBits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvIfAttribTable/intSrvIfAttribEntry/intSrvIfAttribAllocatedBits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvIfAttribTable",
                    "intSrvIfAttribEntry",
                    "intSrvIfAttribAllocatedBits"
                  ]
                },
                "description": "Retrieve intSrvIfAttribAllocatedBits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvIfAttribMaxAllocatedBits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvIfAttribTable/intSrvIfAttribEntry/intSrvIfAttribMaxAllocatedBits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvIfAttribTable",
                    "intSrvIfAttribEntry",
                    "intSrvIfAttribMaxAllocatedBits"
                  ]
                },
                "description": "Retrieve intSrvIfAttribMaxAllocatedBits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvIfAttribAllocatedBuffer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvIfAttribTable/intSrvIfAttribEntry/intSrvIfAttribAllocatedBuffer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvIfAttribTable",
                    "intSrvIfAttribEntry",
                    "intSrvIfAttribAllocatedBuffer"
                  ]
                },
                "description": "Retrieve intSrvIfAttribAllocatedBuffer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvIfAttribFlows",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvIfAttribTable/intSrvIfAttribEntry/intSrvIfAttribFlows",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvIfAttribTable",
                    "intSrvIfAttribEntry",
                    "intSrvIfAttribFlows"
                  ]
                },
                "description": "Retrieve intSrvIfAttribFlows from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvIfAttribPropagationDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvIfAttribTable/intSrvIfAttribEntry/intSrvIfAttribPropagationDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvIfAttribTable",
                    "intSrvIfAttribEntry",
                    "intSrvIfAttribPropagationDelay"
                  ]
                },
                "description": "Retrieve intSrvIfAttribPropagationDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvIfAttribStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvIfAttribTable/intSrvIfAttribEntry/intSrvIfAttribStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvIfAttribTable",
                    "intSrvIfAttribEntry",
                    "intSrvIfAttribStatus"
                  ]
                },
                "description": "Retrieve intSrvIfAttribStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable"
                  ]
                },
                "description": "Retrieve intSrvFlowTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry"
                  ]
                },
                "description": "Retrieve intSrvFlowEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowNumber"
                  ]
                },
                "description": "Retrieve intSrvFlowNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowType"
                  ]
                },
                "description": "Retrieve intSrvFlowType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowOwner"
                  ]
                },
                "description": "Retrieve intSrvFlowOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowDestAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowDestAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowDestAddr"
                  ]
                },
                "description": "Retrieve intSrvFlowDestAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowSenderAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowSenderAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowSenderAddr"
                  ]
                },
                "description": "Retrieve intSrvFlowSenderAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowDestAddrLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowDestAddrLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowDestAddrLength"
                  ]
                },
                "description": "Retrieve intSrvFlowDestAddrLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowSenderAddrLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowSenderAddrLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowSenderAddrLength"
                  ]
                },
                "description": "Retrieve intSrvFlowSenderAddrLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowProtocol"
                  ]
                },
                "description": "Retrieve intSrvFlowProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowDestPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowDestPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowDestPort"
                  ]
                },
                "description": "Retrieve intSrvFlowDestPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowPort"
                  ]
                },
                "description": "Retrieve intSrvFlowPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowFlowId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowFlowId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowFlowId"
                  ]
                },
                "description": "Retrieve intSrvFlowFlowId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowInterface"
                  ]
                },
                "description": "Retrieve intSrvFlowInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowIfAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowIfAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowIfAddr"
                  ]
                },
                "description": "Retrieve intSrvFlowIfAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowRate"
                  ]
                },
                "description": "Retrieve intSrvFlowRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowBurst",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowBurst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowBurst"
                  ]
                },
                "description": "Retrieve intSrvFlowBurst from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowWeight",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowWeight",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowWeight"
                  ]
                },
                "description": "Retrieve intSrvFlowWeight from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowQueue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowQueue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowQueue"
                  ]
                },
                "description": "Retrieve intSrvFlowQueue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowMinTU",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowMinTU",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowMinTU"
                  ]
                },
                "description": "Retrieve intSrvFlowMinTU from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowMaxTU",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowMaxTU",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowMaxTU"
                  ]
                },
                "description": "Retrieve intSrvFlowMaxTU from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowBestEffort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowBestEffort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowBestEffort"
                  ]
                },
                "description": "Retrieve intSrvFlowBestEffort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowPoliced",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowPoliced",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowPoliced"
                  ]
                },
                "description": "Retrieve intSrvFlowPoliced from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowDiscard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowDiscard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowDiscard"
                  ]
                },
                "description": "Retrieve intSrvFlowDiscard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowService",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowService",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowService"
                  ]
                },
                "description": "Retrieve intSrvFlowService from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowOrder",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowOrder"
                  ]
                },
                "description": "Retrieve intSrvFlowOrder from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB/intSrvFlowTable/intSrvFlowEntry/intSrvFlowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "INTEGRATED-SERVICES-MIB:INTEGRATED-SERVICES-MIB",
                    "intSrvFlowTable",
                    "intSrvFlowEntry",
                    "intSrvFlowStatus"
                  ]
                },
                "description": "Retrieve intSrvFlowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "IP-FORWARD-MIB",
          "description": "Cisco IOS-XE MIB - IP-FORWARD-MIB\n\nMIB data from `IP-FORWARD-MIB` module.\n\n**Root containers:** 1 (IP-FORWARD-MIB)\n**Paths:** 39 | **Descendants:** 38\n\nAll endpoints are read-only (GET).\n\nEndpoints: 39 | Operations: 39",
          "item": [
            {
              "name": "GET Get IP-FORWARD-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB"
                  ]
                },
                "description": "Retrieve IP-FORWARD-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForward",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForward",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForward"
                  ]
                },
                "description": "Retrieve ipForward from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForward/ipForwardNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForward",
                    "ipForwardNumber"
                  ]
                },
                "description": "Retrieve ipForwardNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForward/ipCidrRouteNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForward",
                    "ipCidrRouteNumber"
                  ]
                },
                "description": "Retrieve ipCidrRouteNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable"
                  ]
                },
                "description": "Retrieve ipForwardTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable/ipForwardEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable",
                    "ipForwardEntry"
                  ]
                },
                "description": "Retrieve ipForwardEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardDest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable/ipForwardEntry/ipForwardDest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable",
                    "ipForwardEntry",
                    "ipForwardDest"
                  ]
                },
                "description": "Retrieve ipForwardDest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable/ipForwardEntry/ipForwardMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable",
                    "ipForwardEntry",
                    "ipForwardMask"
                  ]
                },
                "description": "Retrieve ipForwardMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardPolicy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable/ipForwardEntry/ipForwardPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable",
                    "ipForwardEntry",
                    "ipForwardPolicy"
                  ]
                },
                "description": "Retrieve ipForwardPolicy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardNextHop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable/ipForwardEntry/ipForwardNextHop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable",
                    "ipForwardEntry",
                    "ipForwardNextHop"
                  ]
                },
                "description": "Retrieve ipForwardNextHop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable/ipForwardEntry/ipForwardIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable",
                    "ipForwardEntry",
                    "ipForwardIfIndex"
                  ]
                },
                "description": "Retrieve ipForwardIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable/ipForwardEntry/ipForwardType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable",
                    "ipForwardEntry",
                    "ipForwardType"
                  ]
                },
                "description": "Retrieve ipForwardType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardProto",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable/ipForwardEntry/ipForwardProto",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable",
                    "ipForwardEntry",
                    "ipForwardProto"
                  ]
                },
                "description": "Retrieve ipForwardProto from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable/ipForwardEntry/ipForwardAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable",
                    "ipForwardEntry",
                    "ipForwardAge"
                  ]
                },
                "description": "Retrieve ipForwardAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable/ipForwardEntry/ipForwardInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable",
                    "ipForwardEntry",
                    "ipForwardInfo"
                  ]
                },
                "description": "Retrieve ipForwardInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardNextHopAS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable/ipForwardEntry/ipForwardNextHopAS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable",
                    "ipForwardEntry",
                    "ipForwardNextHopAS"
                  ]
                },
                "description": "Retrieve ipForwardNextHopAS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardMetric1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable/ipForwardEntry/ipForwardMetric1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable",
                    "ipForwardEntry",
                    "ipForwardMetric1"
                  ]
                },
                "description": "Retrieve ipForwardMetric1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardMetric2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable/ipForwardEntry/ipForwardMetric2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable",
                    "ipForwardEntry",
                    "ipForwardMetric2"
                  ]
                },
                "description": "Retrieve ipForwardMetric2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardMetric3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable/ipForwardEntry/ipForwardMetric3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable",
                    "ipForwardEntry",
                    "ipForwardMetric3"
                  ]
                },
                "description": "Retrieve ipForwardMetric3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardMetric4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable/ipForwardEntry/ipForwardMetric4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable",
                    "ipForwardEntry",
                    "ipForwardMetric4"
                  ]
                },
                "description": "Retrieve ipForwardMetric4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwardMetric5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipForwardTable/ipForwardEntry/ipForwardMetric5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipForwardTable",
                    "ipForwardEntry",
                    "ipForwardMetric5"
                  ]
                },
                "description": "Retrieve ipForwardMetric5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable"
                  ]
                },
                "description": "Retrieve ipCidrRouteTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry"
                  ]
                },
                "description": "Retrieve ipCidrRouteEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteDest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry/ipCidrRouteDest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry",
                    "ipCidrRouteDest"
                  ]
                },
                "description": "Retrieve ipCidrRouteDest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry/ipCidrRouteMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry",
                    "ipCidrRouteMask"
                  ]
                },
                "description": "Retrieve ipCidrRouteMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteTos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry/ipCidrRouteTos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry",
                    "ipCidrRouteTos"
                  ]
                },
                "description": "Retrieve ipCidrRouteTos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteNextHop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry/ipCidrRouteNextHop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry",
                    "ipCidrRouteNextHop"
                  ]
                },
                "description": "Retrieve ipCidrRouteNextHop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry/ipCidrRouteIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry",
                    "ipCidrRouteIfIndex"
                  ]
                },
                "description": "Retrieve ipCidrRouteIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry/ipCidrRouteType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry",
                    "ipCidrRouteType"
                  ]
                },
                "description": "Retrieve ipCidrRouteType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteProto",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry/ipCidrRouteProto",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry",
                    "ipCidrRouteProto"
                  ]
                },
                "description": "Retrieve ipCidrRouteProto from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry/ipCidrRouteAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry",
                    "ipCidrRouteAge"
                  ]
                },
                "description": "Retrieve ipCidrRouteAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry/ipCidrRouteInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry",
                    "ipCidrRouteInfo"
                  ]
                },
                "description": "Retrieve ipCidrRouteInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteNextHopAS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry/ipCidrRouteNextHopAS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry",
                    "ipCidrRouteNextHopAS"
                  ]
                },
                "description": "Retrieve ipCidrRouteNextHopAS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteMetric1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry/ipCidrRouteMetric1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry",
                    "ipCidrRouteMetric1"
                  ]
                },
                "description": "Retrieve ipCidrRouteMetric1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteMetric2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry/ipCidrRouteMetric2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry",
                    "ipCidrRouteMetric2"
                  ]
                },
                "description": "Retrieve ipCidrRouteMetric2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteMetric3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry/ipCidrRouteMetric3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry",
                    "ipCidrRouteMetric3"
                  ]
                },
                "description": "Retrieve ipCidrRouteMetric3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteMetric4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry/ipCidrRouteMetric4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry",
                    "ipCidrRouteMetric4"
                  ]
                },
                "description": "Retrieve ipCidrRouteMetric4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteMetric5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry/ipCidrRouteMetric5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry",
                    "ipCidrRouteMetric5"
                  ]
                },
                "description": "Retrieve ipCidrRouteMetric5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipCidrRouteStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-FORWARD-MIB:IP-FORWARD-MIB/ipCidrRouteTable/ipCidrRouteEntry/ipCidrRouteStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-FORWARD-MIB:IP-FORWARD-MIB",
                    "ipCidrRouteTable",
                    "ipCidrRouteEntry",
                    "ipCidrRouteStatus"
                  ]
                },
                "description": "Retrieve ipCidrRouteStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "IP-MIB",
          "description": "Cisco IOS-XE MIB - IP-MIB\n\nMIB data from `IP-MIB` module.\n\n**Root containers:** 1 (IP-MIB)\n**Paths:** 208 | **Descendants:** 207\n\nAll endpoints are read-only (GET).\n\nEndpoints: 208 | Operations: 208",
          "item": [
            {
              "name": "GET Get IP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB"
                  ]
                },
                "description": "Retrieve IP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ip"
                  ]
                },
                "description": "Retrieve ip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwarding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ip/ipForwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ip",
                    "ipForwarding"
                  ]
                },
                "description": "Retrieve ipForwarding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipDefaultTTL",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ip/ipDefaultTTL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ip",
                    "ipDefaultTTL"
                  ]
                },
                "description": "Retrieve ipDefaultTTL from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipReasmTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ip/ipReasmTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ip",
                    "ipReasmTimeout"
                  ]
                },
                "description": "Retrieve ipReasmTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6IpForwarding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ip/ipv6IpForwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ip",
                    "ipv6IpForwarding"
                  ]
                },
                "description": "Retrieve ipv6IpForwarding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6IpDefaultHopLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ip/ipv6IpDefaultHopLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ip",
                    "ipv6IpDefaultHopLimit"
                  ]
                },
                "description": "Retrieve ipv6IpDefaultHopLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4InterfaceTableLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ip/ipv4InterfaceTableLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ip",
                    "ipv4InterfaceTableLastChange"
                  ]
                },
                "description": "Retrieve ipv4InterfaceTableLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6InterfaceTableLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ip/ipv6InterfaceTableLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ip",
                    "ipv6InterfaceTableLastChange"
                  ]
                },
                "description": "Retrieve ipv6InterfaceTableLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressSpinLock",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ip/ipAddressSpinLock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ip",
                    "ipAddressSpinLock"
                  ]
                },
                "description": "Retrieve ipAddressSpinLock from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6RouterAdvertSpinLock",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ip/ipv6RouterAdvertSpinLock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ip",
                    "ipv6RouterAdvertSpinLock"
                  ]
                },
                "description": "Retrieve ipv6RouterAdvertSpinLock from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipTrafficStats",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipTrafficStats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipTrafficStats"
                  ]
                },
                "description": "Retrieve ipTrafficStats from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsTableLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipTrafficStats/ipIfStatsTableLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipTrafficStats",
                    "ipIfStatsTableLastChange"
                  ]
                },
                "description": "Retrieve ipIfStatsTableLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/icmp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "icmp"
                  ]
                },
                "description": "Retrieve icmp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4InterfaceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv4InterfaceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv4InterfaceTable"
                  ]
                },
                "description": "Retrieve ipv4InterfaceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4InterfaceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv4InterfaceTable/ipv4InterfaceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv4InterfaceTable",
                    "ipv4InterfaceEntry"
                  ]
                },
                "description": "Retrieve ipv4InterfaceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4InterfaceIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv4InterfaceTable/ipv4InterfaceEntry/ipv4InterfaceIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv4InterfaceTable",
                    "ipv4InterfaceEntry",
                    "ipv4InterfaceIfIndex"
                  ]
                },
                "description": "Retrieve ipv4InterfaceIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4InterfaceReasmMaxSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv4InterfaceTable/ipv4InterfaceEntry/ipv4InterfaceReasmMaxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv4InterfaceTable",
                    "ipv4InterfaceEntry",
                    "ipv4InterfaceReasmMaxSize"
                  ]
                },
                "description": "Retrieve ipv4InterfaceReasmMaxSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4InterfaceEnableStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv4InterfaceTable/ipv4InterfaceEntry/ipv4InterfaceEnableStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv4InterfaceTable",
                    "ipv4InterfaceEntry",
                    "ipv4InterfaceEnableStatus"
                  ]
                },
                "description": "Retrieve ipv4InterfaceEnableStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4InterfaceRetransmitTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv4InterfaceTable/ipv4InterfaceEntry/ipv4InterfaceRetransmitTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv4InterfaceTable",
                    "ipv4InterfaceEntry",
                    "ipv4InterfaceRetransmitTime"
                  ]
                },
                "description": "Retrieve ipv4InterfaceRetransmitTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6InterfaceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6InterfaceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6InterfaceTable"
                  ]
                },
                "description": "Retrieve ipv6InterfaceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6InterfaceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6InterfaceTable/ipv6InterfaceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6InterfaceTable",
                    "ipv6InterfaceEntry"
                  ]
                },
                "description": "Retrieve ipv6InterfaceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6InterfaceIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6InterfaceTable/ipv6InterfaceEntry/ipv6InterfaceIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6InterfaceTable",
                    "ipv6InterfaceEntry",
                    "ipv6InterfaceIfIndex"
                  ]
                },
                "description": "Retrieve ipv6InterfaceIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6InterfaceReasmMaxSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6InterfaceTable/ipv6InterfaceEntry/ipv6InterfaceReasmMaxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6InterfaceTable",
                    "ipv6InterfaceEntry",
                    "ipv6InterfaceReasmMaxSize"
                  ]
                },
                "description": "Retrieve ipv6InterfaceReasmMaxSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6InterfaceIdentifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6InterfaceTable/ipv6InterfaceEntry/ipv6InterfaceIdentifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6InterfaceTable",
                    "ipv6InterfaceEntry",
                    "ipv6InterfaceIdentifier"
                  ]
                },
                "description": "Retrieve ipv6InterfaceIdentifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6InterfaceEnableStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6InterfaceTable/ipv6InterfaceEntry/ipv6InterfaceEnableStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6InterfaceTable",
                    "ipv6InterfaceEntry",
                    "ipv6InterfaceEnableStatus"
                  ]
                },
                "description": "Retrieve ipv6InterfaceEnableStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6InterfaceReachableTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6InterfaceTable/ipv6InterfaceEntry/ipv6InterfaceReachableTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6InterfaceTable",
                    "ipv6InterfaceEntry",
                    "ipv6InterfaceReachableTime"
                  ]
                },
                "description": "Retrieve ipv6InterfaceReachableTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6InterfaceRetransmitTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6InterfaceTable/ipv6InterfaceEntry/ipv6InterfaceRetransmitTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6InterfaceTable",
                    "ipv6InterfaceEntry",
                    "ipv6InterfaceRetransmitTime"
                  ]
                },
                "description": "Retrieve ipv6InterfaceRetransmitTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6InterfaceForwarding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6InterfaceTable/ipv6InterfaceEntry/ipv6InterfaceForwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6InterfaceTable",
                    "ipv6InterfaceEntry",
                    "ipv6InterfaceForwarding"
                  ]
                },
                "description": "Retrieve ipv6InterfaceForwarding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable"
                  ]
                },
                "description": "Retrieve ipSystemStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry"
                  ]
                },
                "description": "Retrieve ipSystemStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsIPVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsIPVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsIPVersion"
                  ]
                },
                "description": "Retrieve ipSystemStatsIPVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsInReceives",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsInReceives",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsInReceives"
                  ]
                },
                "description": "Retrieve ipSystemStatsInReceives from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsHCInReceives",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsHCInReceives",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsHCInReceives"
                  ]
                },
                "description": "Retrieve ipSystemStatsHCInReceives from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsInOctets"
                  ]
                },
                "description": "Retrieve ipSystemStatsInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsHCInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsHCInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsHCInOctets"
                  ]
                },
                "description": "Retrieve ipSystemStatsHCInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsInHdrErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsInHdrErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsInHdrErrors"
                  ]
                },
                "description": "Retrieve ipSystemStatsInHdrErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsInNoRoutes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsInNoRoutes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsInNoRoutes"
                  ]
                },
                "description": "Retrieve ipSystemStatsInNoRoutes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsInAddrErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsInAddrErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsInAddrErrors"
                  ]
                },
                "description": "Retrieve ipSystemStatsInAddrErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsInUnknownProtos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsInUnknownProtos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsInUnknownProtos"
                  ]
                },
                "description": "Retrieve ipSystemStatsInUnknownProtos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsInTruncatedPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsInTruncatedPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsInTruncatedPkts"
                  ]
                },
                "description": "Retrieve ipSystemStatsInTruncatedPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsInForwDatagrams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsInForwDatagrams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsInForwDatagrams"
                  ]
                },
                "description": "Retrieve ipSystemStatsInForwDatagrams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsHCInForwDatagrams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsHCInForwDatagrams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsHCInForwDatagrams"
                  ]
                },
                "description": "Retrieve ipSystemStatsHCInForwDatagrams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsReasmReqds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsReasmReqds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsReasmReqds"
                  ]
                },
                "description": "Retrieve ipSystemStatsReasmReqds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsReasmOKs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsReasmOKs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsReasmOKs"
                  ]
                },
                "description": "Retrieve ipSystemStatsReasmOKs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsReasmFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsReasmFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsReasmFails"
                  ]
                },
                "description": "Retrieve ipSystemStatsReasmFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsInDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsInDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsInDiscards"
                  ]
                },
                "description": "Retrieve ipSystemStatsInDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsInDelivers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsInDelivers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsInDelivers"
                  ]
                },
                "description": "Retrieve ipSystemStatsInDelivers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsHCInDelivers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsHCInDelivers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsHCInDelivers"
                  ]
                },
                "description": "Retrieve ipSystemStatsHCInDelivers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsOutRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsOutRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsOutRequests"
                  ]
                },
                "description": "Retrieve ipSystemStatsOutRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsHCOutRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsHCOutRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsHCOutRequests"
                  ]
                },
                "description": "Retrieve ipSystemStatsHCOutRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsOutNoRoutes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsOutNoRoutes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsOutNoRoutes"
                  ]
                },
                "description": "Retrieve ipSystemStatsOutNoRoutes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsOutForwDatagrams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsOutForwDatagrams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsOutForwDatagrams"
                  ]
                },
                "description": "Retrieve ipSystemStatsOutForwDatagrams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsHCOutForwDatagrams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsHCOutForwDatagrams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsHCOutForwDatagrams"
                  ]
                },
                "description": "Retrieve ipSystemStatsHCOutForwDatagrams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsOutDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsOutDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsOutDiscards"
                  ]
                },
                "description": "Retrieve ipSystemStatsOutDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsOutFragReqds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsOutFragReqds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsOutFragReqds"
                  ]
                },
                "description": "Retrieve ipSystemStatsOutFragReqds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsOutFragOKs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsOutFragOKs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsOutFragOKs"
                  ]
                },
                "description": "Retrieve ipSystemStatsOutFragOKs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsOutFragFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsOutFragFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsOutFragFails"
                  ]
                },
                "description": "Retrieve ipSystemStatsOutFragFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsOutFragCreates",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsOutFragCreates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsOutFragCreates"
                  ]
                },
                "description": "Retrieve ipSystemStatsOutFragCreates from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsOutTransmits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsOutTransmits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsOutTransmits"
                  ]
                },
                "description": "Retrieve ipSystemStatsOutTransmits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsHCOutTransmits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsHCOutTransmits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsHCOutTransmits"
                  ]
                },
                "description": "Retrieve ipSystemStatsHCOutTransmits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsOutOctets"
                  ]
                },
                "description": "Retrieve ipSystemStatsOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsHCOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsHCOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsHCOutOctets"
                  ]
                },
                "description": "Retrieve ipSystemStatsHCOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsInMcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsInMcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsInMcastPkts"
                  ]
                },
                "description": "Retrieve ipSystemStatsInMcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsHCInMcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsHCInMcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsHCInMcastPkts"
                  ]
                },
                "description": "Retrieve ipSystemStatsHCInMcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsInMcastOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsInMcastOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsInMcastOctets"
                  ]
                },
                "description": "Retrieve ipSystemStatsInMcastOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsHCInMcastOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsHCInMcastOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsHCInMcastOctets"
                  ]
                },
                "description": "Retrieve ipSystemStatsHCInMcastOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsOutMcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsOutMcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsOutMcastPkts"
                  ]
                },
                "description": "Retrieve ipSystemStatsOutMcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsHCOutMcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsHCOutMcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsHCOutMcastPkts"
                  ]
                },
                "description": "Retrieve ipSystemStatsHCOutMcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsOutMcastOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsOutMcastOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsOutMcastOctets"
                  ]
                },
                "description": "Retrieve ipSystemStatsOutMcastOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsHCOutMcastOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsHCOutMcastOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsHCOutMcastOctets"
                  ]
                },
                "description": "Retrieve ipSystemStatsHCOutMcastOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsInBcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsInBcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsInBcastPkts"
                  ]
                },
                "description": "Retrieve ipSystemStatsInBcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsHCInBcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsHCInBcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsHCInBcastPkts"
                  ]
                },
                "description": "Retrieve ipSystemStatsHCInBcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsOutBcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsOutBcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsOutBcastPkts"
                  ]
                },
                "description": "Retrieve ipSystemStatsOutBcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsHCOutBcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsHCOutBcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsHCOutBcastPkts"
                  ]
                },
                "description": "Retrieve ipSystemStatsHCOutBcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsDiscontinuityTime"
                  ]
                },
                "description": "Retrieve ipSystemStatsDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipSystemStatsRefreshRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipSystemStatsTable/ipSystemStatsEntry/ipSystemStatsRefreshRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipSystemStatsTable",
                    "ipSystemStatsEntry",
                    "ipSystemStatsRefreshRate"
                  ]
                },
                "description": "Retrieve ipSystemStatsRefreshRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable"
                  ]
                },
                "description": "Retrieve ipIfStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry"
                  ]
                },
                "description": "Retrieve ipIfStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsIPVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsIPVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsIPVersion"
                  ]
                },
                "description": "Retrieve ipIfStatsIPVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsIfIndex"
                  ]
                },
                "description": "Retrieve ipIfStatsIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsInReceives",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsInReceives",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsInReceives"
                  ]
                },
                "description": "Retrieve ipIfStatsInReceives from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsHCInReceives",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsHCInReceives",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsHCInReceives"
                  ]
                },
                "description": "Retrieve ipIfStatsHCInReceives from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsInOctets"
                  ]
                },
                "description": "Retrieve ipIfStatsInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsHCInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsHCInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsHCInOctets"
                  ]
                },
                "description": "Retrieve ipIfStatsHCInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsInHdrErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsInHdrErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsInHdrErrors"
                  ]
                },
                "description": "Retrieve ipIfStatsInHdrErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsInNoRoutes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsInNoRoutes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsInNoRoutes"
                  ]
                },
                "description": "Retrieve ipIfStatsInNoRoutes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsInAddrErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsInAddrErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsInAddrErrors"
                  ]
                },
                "description": "Retrieve ipIfStatsInAddrErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsInUnknownProtos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsInUnknownProtos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsInUnknownProtos"
                  ]
                },
                "description": "Retrieve ipIfStatsInUnknownProtos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsInTruncatedPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsInTruncatedPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsInTruncatedPkts"
                  ]
                },
                "description": "Retrieve ipIfStatsInTruncatedPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsInForwDatagrams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsInForwDatagrams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsInForwDatagrams"
                  ]
                },
                "description": "Retrieve ipIfStatsInForwDatagrams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsHCInForwDatagrams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsHCInForwDatagrams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsHCInForwDatagrams"
                  ]
                },
                "description": "Retrieve ipIfStatsHCInForwDatagrams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsReasmReqds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsReasmReqds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsReasmReqds"
                  ]
                },
                "description": "Retrieve ipIfStatsReasmReqds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsReasmOKs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsReasmOKs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsReasmOKs"
                  ]
                },
                "description": "Retrieve ipIfStatsReasmOKs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsReasmFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsReasmFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsReasmFails"
                  ]
                },
                "description": "Retrieve ipIfStatsReasmFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsInDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsInDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsInDiscards"
                  ]
                },
                "description": "Retrieve ipIfStatsInDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsInDelivers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsInDelivers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsInDelivers"
                  ]
                },
                "description": "Retrieve ipIfStatsInDelivers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsHCInDelivers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsHCInDelivers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsHCInDelivers"
                  ]
                },
                "description": "Retrieve ipIfStatsHCInDelivers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsOutRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsOutRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsOutRequests"
                  ]
                },
                "description": "Retrieve ipIfStatsOutRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsHCOutRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsHCOutRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsHCOutRequests"
                  ]
                },
                "description": "Retrieve ipIfStatsHCOutRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsOutForwDatagrams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsOutForwDatagrams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsOutForwDatagrams"
                  ]
                },
                "description": "Retrieve ipIfStatsOutForwDatagrams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsHCOutForwDatagrams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsHCOutForwDatagrams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsHCOutForwDatagrams"
                  ]
                },
                "description": "Retrieve ipIfStatsHCOutForwDatagrams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsOutDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsOutDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsOutDiscards"
                  ]
                },
                "description": "Retrieve ipIfStatsOutDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsOutFragReqds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsOutFragReqds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsOutFragReqds"
                  ]
                },
                "description": "Retrieve ipIfStatsOutFragReqds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsOutFragOKs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsOutFragOKs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsOutFragOKs"
                  ]
                },
                "description": "Retrieve ipIfStatsOutFragOKs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsOutFragFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsOutFragFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsOutFragFails"
                  ]
                },
                "description": "Retrieve ipIfStatsOutFragFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsOutFragCreates",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsOutFragCreates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsOutFragCreates"
                  ]
                },
                "description": "Retrieve ipIfStatsOutFragCreates from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsOutTransmits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsOutTransmits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsOutTransmits"
                  ]
                },
                "description": "Retrieve ipIfStatsOutTransmits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsHCOutTransmits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsHCOutTransmits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsHCOutTransmits"
                  ]
                },
                "description": "Retrieve ipIfStatsHCOutTransmits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsOutOctets"
                  ]
                },
                "description": "Retrieve ipIfStatsOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsHCOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsHCOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsHCOutOctets"
                  ]
                },
                "description": "Retrieve ipIfStatsHCOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsInMcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsInMcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsInMcastPkts"
                  ]
                },
                "description": "Retrieve ipIfStatsInMcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsHCInMcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsHCInMcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsHCInMcastPkts"
                  ]
                },
                "description": "Retrieve ipIfStatsHCInMcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsInMcastOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsInMcastOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsInMcastOctets"
                  ]
                },
                "description": "Retrieve ipIfStatsInMcastOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsHCInMcastOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsHCInMcastOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsHCInMcastOctets"
                  ]
                },
                "description": "Retrieve ipIfStatsHCInMcastOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsOutMcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsOutMcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsOutMcastPkts"
                  ]
                },
                "description": "Retrieve ipIfStatsOutMcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsHCOutMcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsHCOutMcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsHCOutMcastPkts"
                  ]
                },
                "description": "Retrieve ipIfStatsHCOutMcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsOutMcastOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsOutMcastOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsOutMcastOctets"
                  ]
                },
                "description": "Retrieve ipIfStatsOutMcastOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsHCOutMcastOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsHCOutMcastOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsHCOutMcastOctets"
                  ]
                },
                "description": "Retrieve ipIfStatsHCOutMcastOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsInBcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsInBcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsInBcastPkts"
                  ]
                },
                "description": "Retrieve ipIfStatsInBcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsHCInBcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsHCInBcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsHCInBcastPkts"
                  ]
                },
                "description": "Retrieve ipIfStatsHCInBcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsOutBcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsOutBcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsOutBcastPkts"
                  ]
                },
                "description": "Retrieve ipIfStatsOutBcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsHCOutBcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsHCOutBcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsHCOutBcastPkts"
                  ]
                },
                "description": "Retrieve ipIfStatsHCOutBcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsDiscontinuityTime"
                  ]
                },
                "description": "Retrieve ipIfStatsDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipIfStatsRefreshRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipIfStatsTable/ipIfStatsEntry/ipIfStatsRefreshRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipIfStatsTable",
                    "ipIfStatsEntry",
                    "ipIfStatsRefreshRate"
                  ]
                },
                "description": "Retrieve ipIfStatsRefreshRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressPrefixTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressPrefixTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressPrefixTable"
                  ]
                },
                "description": "Retrieve ipAddressPrefixTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressPrefixEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressPrefixTable/ipAddressPrefixEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressPrefixTable",
                    "ipAddressPrefixEntry"
                  ]
                },
                "description": "Retrieve ipAddressPrefixEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressPrefixIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressPrefixTable/ipAddressPrefixEntry/ipAddressPrefixIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressPrefixTable",
                    "ipAddressPrefixEntry",
                    "ipAddressPrefixIfIndex"
                  ]
                },
                "description": "Retrieve ipAddressPrefixIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressPrefixType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressPrefixTable/ipAddressPrefixEntry/ipAddressPrefixType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressPrefixTable",
                    "ipAddressPrefixEntry",
                    "ipAddressPrefixType"
                  ]
                },
                "description": "Retrieve ipAddressPrefixType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressPrefixPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressPrefixTable/ipAddressPrefixEntry/ipAddressPrefixPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressPrefixTable",
                    "ipAddressPrefixEntry",
                    "ipAddressPrefixPrefix"
                  ]
                },
                "description": "Retrieve ipAddressPrefixPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressPrefixLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressPrefixTable/ipAddressPrefixEntry/ipAddressPrefixLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressPrefixTable",
                    "ipAddressPrefixEntry",
                    "ipAddressPrefixLength"
                  ]
                },
                "description": "Retrieve ipAddressPrefixLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressPrefixOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressPrefixTable/ipAddressPrefixEntry/ipAddressPrefixOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressPrefixTable",
                    "ipAddressPrefixEntry",
                    "ipAddressPrefixOrigin"
                  ]
                },
                "description": "Retrieve ipAddressPrefixOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressPrefixOnLinkFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressPrefixTable/ipAddressPrefixEntry/ipAddressPrefixOnLinkFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressPrefixTable",
                    "ipAddressPrefixEntry",
                    "ipAddressPrefixOnLinkFlag"
                  ]
                },
                "description": "Retrieve ipAddressPrefixOnLinkFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressPrefixAutonomousFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressPrefixTable/ipAddressPrefixEntry/ipAddressPrefixAutonomousFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressPrefixTable",
                    "ipAddressPrefixEntry",
                    "ipAddressPrefixAutonomousFlag"
                  ]
                },
                "description": "Retrieve ipAddressPrefixAutonomousFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressPrefixAdvPreferredLifetime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressPrefixTable/ipAddressPrefixEntry/ipAddressPrefixAdvPreferredLifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressPrefixTable",
                    "ipAddressPrefixEntry",
                    "ipAddressPrefixAdvPreferredLifetime"
                  ]
                },
                "description": "Retrieve ipAddressPrefixAdvPreferredLifetime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressPrefixAdvValidLifetime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressPrefixTable/ipAddressPrefixEntry/ipAddressPrefixAdvValidLifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressPrefixTable",
                    "ipAddressPrefixEntry",
                    "ipAddressPrefixAdvValidLifetime"
                  ]
                },
                "description": "Retrieve ipAddressPrefixAdvValidLifetime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressTable"
                  ]
                },
                "description": "Retrieve ipAddressTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressTable/ipAddressEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressTable",
                    "ipAddressEntry"
                  ]
                },
                "description": "Retrieve ipAddressEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressTable/ipAddressEntry/ipAddressAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressTable",
                    "ipAddressEntry",
                    "ipAddressAddrType"
                  ]
                },
                "description": "Retrieve ipAddressAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressTable/ipAddressEntry/ipAddressAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressTable",
                    "ipAddressEntry",
                    "ipAddressAddr"
                  ]
                },
                "description": "Retrieve ipAddressAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressTable/ipAddressEntry/ipAddressIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressTable",
                    "ipAddressEntry",
                    "ipAddressIfIndex"
                  ]
                },
                "description": "Retrieve ipAddressIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressTable/ipAddressEntry/ipAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressTable",
                    "ipAddressEntry",
                    "ipAddressType"
                  ]
                },
                "description": "Retrieve ipAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressTable/ipAddressEntry/ipAddressPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressTable",
                    "ipAddressEntry",
                    "ipAddressPrefix"
                  ]
                },
                "description": "Retrieve ipAddressPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressTable/ipAddressEntry/ipAddressOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressTable",
                    "ipAddressEntry",
                    "ipAddressOrigin"
                  ]
                },
                "description": "Retrieve ipAddressOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressTable/ipAddressEntry/ipAddressStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressTable",
                    "ipAddressEntry",
                    "ipAddressStatus"
                  ]
                },
                "description": "Retrieve ipAddressStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressCreated",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressTable/ipAddressEntry/ipAddressCreated",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressTable",
                    "ipAddressEntry",
                    "ipAddressCreated"
                  ]
                },
                "description": "Retrieve ipAddressCreated from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressLastChanged",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressTable/ipAddressEntry/ipAddressLastChanged",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressTable",
                    "ipAddressEntry",
                    "ipAddressLastChanged"
                  ]
                },
                "description": "Retrieve ipAddressLastChanged from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressTable/ipAddressEntry/ipAddressRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressTable",
                    "ipAddressEntry",
                    "ipAddressRowStatus"
                  ]
                },
                "description": "Retrieve ipAddressRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddressStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipAddressTable/ipAddressEntry/ipAddressStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipAddressTable",
                    "ipAddressEntry",
                    "ipAddressStorageType"
                  ]
                },
                "description": "Retrieve ipAddressStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipNetToPhysicalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipNetToPhysicalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipNetToPhysicalTable"
                  ]
                },
                "description": "Retrieve ipNetToPhysicalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipNetToPhysicalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipNetToPhysicalTable/ipNetToPhysicalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipNetToPhysicalTable",
                    "ipNetToPhysicalEntry"
                  ]
                },
                "description": "Retrieve ipNetToPhysicalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipNetToPhysicalIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipNetToPhysicalTable/ipNetToPhysicalEntry/ipNetToPhysicalIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipNetToPhysicalTable",
                    "ipNetToPhysicalEntry",
                    "ipNetToPhysicalIfIndex"
                  ]
                },
                "description": "Retrieve ipNetToPhysicalIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipNetToPhysicalNetAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipNetToPhysicalTable/ipNetToPhysicalEntry/ipNetToPhysicalNetAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipNetToPhysicalTable",
                    "ipNetToPhysicalEntry",
                    "ipNetToPhysicalNetAddressType"
                  ]
                },
                "description": "Retrieve ipNetToPhysicalNetAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipNetToPhysicalNetAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipNetToPhysicalTable/ipNetToPhysicalEntry/ipNetToPhysicalNetAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipNetToPhysicalTable",
                    "ipNetToPhysicalEntry",
                    "ipNetToPhysicalNetAddress"
                  ]
                },
                "description": "Retrieve ipNetToPhysicalNetAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipNetToPhysicalPhysAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipNetToPhysicalTable/ipNetToPhysicalEntry/ipNetToPhysicalPhysAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipNetToPhysicalTable",
                    "ipNetToPhysicalEntry",
                    "ipNetToPhysicalPhysAddress"
                  ]
                },
                "description": "Retrieve ipNetToPhysicalPhysAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipNetToPhysicalLastUpdated",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipNetToPhysicalTable/ipNetToPhysicalEntry/ipNetToPhysicalLastUpdated",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipNetToPhysicalTable",
                    "ipNetToPhysicalEntry",
                    "ipNetToPhysicalLastUpdated"
                  ]
                },
                "description": "Retrieve ipNetToPhysicalLastUpdated from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipNetToPhysicalType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipNetToPhysicalTable/ipNetToPhysicalEntry/ipNetToPhysicalType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipNetToPhysicalTable",
                    "ipNetToPhysicalEntry",
                    "ipNetToPhysicalType"
                  ]
                },
                "description": "Retrieve ipNetToPhysicalType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipNetToPhysicalState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipNetToPhysicalTable/ipNetToPhysicalEntry/ipNetToPhysicalState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipNetToPhysicalTable",
                    "ipNetToPhysicalEntry",
                    "ipNetToPhysicalState"
                  ]
                },
                "description": "Retrieve ipNetToPhysicalState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipNetToPhysicalRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipNetToPhysicalTable/ipNetToPhysicalEntry/ipNetToPhysicalRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipNetToPhysicalTable",
                    "ipNetToPhysicalEntry",
                    "ipNetToPhysicalRowStatus"
                  ]
                },
                "description": "Retrieve ipNetToPhysicalRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6ScopeZoneIndexTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6ScopeZoneIndexTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6ScopeZoneIndexTable"
                  ]
                },
                "description": "Retrieve ipv6ScopeZoneIndexTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6ScopeZoneIndexEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6ScopeZoneIndexTable/ipv6ScopeZoneIndexEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6ScopeZoneIndexTable",
                    "ipv6ScopeZoneIndexEntry"
                  ]
                },
                "description": "Retrieve ipv6ScopeZoneIndexEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6ScopeZoneIndexIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6ScopeZoneIndexTable/ipv6ScopeZoneIndexEntry/ipv6ScopeZoneIndexIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6ScopeZoneIndexTable",
                    "ipv6ScopeZoneIndexEntry",
                    "ipv6ScopeZoneIndexIfIndex"
                  ]
                },
                "description": "Retrieve ipv6ScopeZoneIndexIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6ScopeZoneIndexLinkLocal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6ScopeZoneIndexTable/ipv6ScopeZoneIndexEntry/ipv6ScopeZoneIndexLinkLocal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6ScopeZoneIndexTable",
                    "ipv6ScopeZoneIndexEntry",
                    "ipv6ScopeZoneIndexLinkLocal"
                  ]
                },
                "description": "Retrieve ipv6ScopeZoneIndexLinkLocal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6ScopeZoneIndex3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6ScopeZoneIndexTable/ipv6ScopeZoneIndexEntry/ipv6ScopeZoneIndex3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6ScopeZoneIndexTable",
                    "ipv6ScopeZoneIndexEntry",
                    "ipv6ScopeZoneIndex3"
                  ]
                },
                "description": "Retrieve ipv6ScopeZoneIndex3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6ScopeZoneIndexAdminLocal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6ScopeZoneIndexTable/ipv6ScopeZoneIndexEntry/ipv6ScopeZoneIndexAdminLocal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6ScopeZoneIndexTable",
                    "ipv6ScopeZoneIndexEntry",
                    "ipv6ScopeZoneIndexAdminLocal"
                  ]
                },
                "description": "Retrieve ipv6ScopeZoneIndexAdminLocal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6ScopeZoneIndexSiteLocal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6ScopeZoneIndexTable/ipv6ScopeZoneIndexEntry/ipv6ScopeZoneIndexSiteLocal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6ScopeZoneIndexTable",
                    "ipv6ScopeZoneIndexEntry",
                    "ipv6ScopeZoneIndexSiteLocal"
                  ]
                },
                "description": "Retrieve ipv6ScopeZoneIndexSiteLocal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6ScopeZoneIndex6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6ScopeZoneIndexTable/ipv6ScopeZoneIndexEntry/ipv6ScopeZoneIndex6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6ScopeZoneIndexTable",
                    "ipv6ScopeZoneIndexEntry",
                    "ipv6ScopeZoneIndex6"
                  ]
                },
                "description": "Retrieve ipv6ScopeZoneIndex6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6ScopeZoneIndex7",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6ScopeZoneIndexTable/ipv6ScopeZoneIndexEntry/ipv6ScopeZoneIndex7",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6ScopeZoneIndexTable",
                    "ipv6ScopeZoneIndexEntry",
                    "ipv6ScopeZoneIndex7"
                  ]
                },
                "description": "Retrieve ipv6ScopeZoneIndex7 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6ScopeZoneIndexOrganizationLocal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6ScopeZoneIndexTable/ipv6ScopeZoneIndexEntry/ipv6ScopeZoneIndexOrganizationLocal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6ScopeZoneIndexTable",
                    "ipv6ScopeZoneIndexEntry",
                    "ipv6ScopeZoneIndexOrganizationLocal"
                  ]
                },
                "description": "Retrieve ipv6ScopeZoneIndexOrganizationLocal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6ScopeZoneIndex9",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6ScopeZoneIndexTable/ipv6ScopeZoneIndexEntry/ipv6ScopeZoneIndex9",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6ScopeZoneIndexTable",
                    "ipv6ScopeZoneIndexEntry",
                    "ipv6ScopeZoneIndex9"
                  ]
                },
                "description": "Retrieve ipv6ScopeZoneIndex9 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6ScopeZoneIndexA",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6ScopeZoneIndexTable/ipv6ScopeZoneIndexEntry/ipv6ScopeZoneIndexA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6ScopeZoneIndexTable",
                    "ipv6ScopeZoneIndexEntry",
                    "ipv6ScopeZoneIndexA"
                  ]
                },
                "description": "Retrieve ipv6ScopeZoneIndexA from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6ScopeZoneIndexB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6ScopeZoneIndexTable/ipv6ScopeZoneIndexEntry/ipv6ScopeZoneIndexB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6ScopeZoneIndexTable",
                    "ipv6ScopeZoneIndexEntry",
                    "ipv6ScopeZoneIndexB"
                  ]
                },
                "description": "Retrieve ipv6ScopeZoneIndexB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6ScopeZoneIndexC",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6ScopeZoneIndexTable/ipv6ScopeZoneIndexEntry/ipv6ScopeZoneIndexC",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6ScopeZoneIndexTable",
                    "ipv6ScopeZoneIndexEntry",
                    "ipv6ScopeZoneIndexC"
                  ]
                },
                "description": "Retrieve ipv6ScopeZoneIndexC from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6ScopeZoneIndexD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6ScopeZoneIndexTable/ipv6ScopeZoneIndexEntry/ipv6ScopeZoneIndexD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6ScopeZoneIndexTable",
                    "ipv6ScopeZoneIndexEntry",
                    "ipv6ScopeZoneIndexD"
                  ]
                },
                "description": "Retrieve ipv6ScopeZoneIndexD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipDefaultRouterTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipDefaultRouterTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipDefaultRouterTable"
                  ]
                },
                "description": "Retrieve ipDefaultRouterTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipDefaultRouterEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipDefaultRouterTable/ipDefaultRouterEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipDefaultRouterTable",
                    "ipDefaultRouterEntry"
                  ]
                },
                "description": "Retrieve ipDefaultRouterEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipDefaultRouterAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipDefaultRouterTable/ipDefaultRouterEntry/ipDefaultRouterAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipDefaultRouterTable",
                    "ipDefaultRouterEntry",
                    "ipDefaultRouterAddressType"
                  ]
                },
                "description": "Retrieve ipDefaultRouterAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipDefaultRouterAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipDefaultRouterTable/ipDefaultRouterEntry/ipDefaultRouterAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipDefaultRouterTable",
                    "ipDefaultRouterEntry",
                    "ipDefaultRouterAddress"
                  ]
                },
                "description": "Retrieve ipDefaultRouterAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipDefaultRouterIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipDefaultRouterTable/ipDefaultRouterEntry/ipDefaultRouterIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipDefaultRouterTable",
                    "ipDefaultRouterEntry",
                    "ipDefaultRouterIfIndex"
                  ]
                },
                "description": "Retrieve ipDefaultRouterIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipDefaultRouterLifetime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipDefaultRouterTable/ipDefaultRouterEntry/ipDefaultRouterLifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipDefaultRouterTable",
                    "ipDefaultRouterEntry",
                    "ipDefaultRouterLifetime"
                  ]
                },
                "description": "Retrieve ipDefaultRouterLifetime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipDefaultRouterPreference",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipDefaultRouterTable/ipDefaultRouterEntry/ipDefaultRouterPreference",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipDefaultRouterTable",
                    "ipDefaultRouterEntry",
                    "ipDefaultRouterPreference"
                  ]
                },
                "description": "Retrieve ipDefaultRouterPreference from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6RouterAdvertTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6RouterAdvertTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6RouterAdvertTable"
                  ]
                },
                "description": "Retrieve ipv6RouterAdvertTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6RouterAdvertEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6RouterAdvertTable/ipv6RouterAdvertEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6RouterAdvertTable",
                    "ipv6RouterAdvertEntry"
                  ]
                },
                "description": "Retrieve ipv6RouterAdvertEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6RouterAdvertIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6RouterAdvertTable/ipv6RouterAdvertEntry/ipv6RouterAdvertIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6RouterAdvertTable",
                    "ipv6RouterAdvertEntry",
                    "ipv6RouterAdvertIfIndex"
                  ]
                },
                "description": "Retrieve ipv6RouterAdvertIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6RouterAdvertSendAdverts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6RouterAdvertTable/ipv6RouterAdvertEntry/ipv6RouterAdvertSendAdverts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6RouterAdvertTable",
                    "ipv6RouterAdvertEntry",
                    "ipv6RouterAdvertSendAdverts"
                  ]
                },
                "description": "Retrieve ipv6RouterAdvertSendAdverts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6RouterAdvertMaxInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6RouterAdvertTable/ipv6RouterAdvertEntry/ipv6RouterAdvertMaxInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6RouterAdvertTable",
                    "ipv6RouterAdvertEntry",
                    "ipv6RouterAdvertMaxInterval"
                  ]
                },
                "description": "Retrieve ipv6RouterAdvertMaxInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6RouterAdvertMinInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6RouterAdvertTable/ipv6RouterAdvertEntry/ipv6RouterAdvertMinInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6RouterAdvertTable",
                    "ipv6RouterAdvertEntry",
                    "ipv6RouterAdvertMinInterval"
                  ]
                },
                "description": "Retrieve ipv6RouterAdvertMinInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6RouterAdvertManagedFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6RouterAdvertTable/ipv6RouterAdvertEntry/ipv6RouterAdvertManagedFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6RouterAdvertTable",
                    "ipv6RouterAdvertEntry",
                    "ipv6RouterAdvertManagedFlag"
                  ]
                },
                "description": "Retrieve ipv6RouterAdvertManagedFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6RouterAdvertOtherConfigFlag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6RouterAdvertTable/ipv6RouterAdvertEntry/ipv6RouterAdvertOtherConfigFlag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6RouterAdvertTable",
                    "ipv6RouterAdvertEntry",
                    "ipv6RouterAdvertOtherConfigFlag"
                  ]
                },
                "description": "Retrieve ipv6RouterAdvertOtherConfigFlag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6RouterAdvertLinkMTU",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6RouterAdvertTable/ipv6RouterAdvertEntry/ipv6RouterAdvertLinkMTU",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6RouterAdvertTable",
                    "ipv6RouterAdvertEntry",
                    "ipv6RouterAdvertLinkMTU"
                  ]
                },
                "description": "Retrieve ipv6RouterAdvertLinkMTU from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6RouterAdvertReachableTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6RouterAdvertTable/ipv6RouterAdvertEntry/ipv6RouterAdvertReachableTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6RouterAdvertTable",
                    "ipv6RouterAdvertEntry",
                    "ipv6RouterAdvertReachableTime"
                  ]
                },
                "description": "Retrieve ipv6RouterAdvertReachableTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6RouterAdvertRetransmitTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6RouterAdvertTable/ipv6RouterAdvertEntry/ipv6RouterAdvertRetransmitTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6RouterAdvertTable",
                    "ipv6RouterAdvertEntry",
                    "ipv6RouterAdvertRetransmitTime"
                  ]
                },
                "description": "Retrieve ipv6RouterAdvertRetransmitTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6RouterAdvertCurHopLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6RouterAdvertTable/ipv6RouterAdvertEntry/ipv6RouterAdvertCurHopLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6RouterAdvertTable",
                    "ipv6RouterAdvertEntry",
                    "ipv6RouterAdvertCurHopLimit"
                  ]
                },
                "description": "Retrieve ipv6RouterAdvertCurHopLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6RouterAdvertDefaultLifetime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6RouterAdvertTable/ipv6RouterAdvertEntry/ipv6RouterAdvertDefaultLifetime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6RouterAdvertTable",
                    "ipv6RouterAdvertEntry",
                    "ipv6RouterAdvertDefaultLifetime"
                  ]
                },
                "description": "Retrieve ipv6RouterAdvertDefaultLifetime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6RouterAdvertRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/ipv6RouterAdvertTable/ipv6RouterAdvertEntry/ipv6RouterAdvertRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "ipv6RouterAdvertTable",
                    "ipv6RouterAdvertEntry",
                    "ipv6RouterAdvertRowStatus"
                  ]
                },
                "description": "Retrieve ipv6RouterAdvertRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/icmpStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "icmpStatsTable"
                  ]
                },
                "description": "Retrieve icmpStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/icmpStatsTable/icmpStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "icmpStatsTable",
                    "icmpStatsEntry"
                  ]
                },
                "description": "Retrieve icmpStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpStatsIPVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/icmpStatsTable/icmpStatsEntry/icmpStatsIPVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "icmpStatsTable",
                    "icmpStatsEntry",
                    "icmpStatsIPVersion"
                  ]
                },
                "description": "Retrieve icmpStatsIPVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpStatsInMsgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/icmpStatsTable/icmpStatsEntry/icmpStatsInMsgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "icmpStatsTable",
                    "icmpStatsEntry",
                    "icmpStatsInMsgs"
                  ]
                },
                "description": "Retrieve icmpStatsInMsgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpStatsInErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/icmpStatsTable/icmpStatsEntry/icmpStatsInErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "icmpStatsTable",
                    "icmpStatsEntry",
                    "icmpStatsInErrors"
                  ]
                },
                "description": "Retrieve icmpStatsInErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpStatsOutMsgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/icmpStatsTable/icmpStatsEntry/icmpStatsOutMsgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "icmpStatsTable",
                    "icmpStatsEntry",
                    "icmpStatsOutMsgs"
                  ]
                },
                "description": "Retrieve icmpStatsOutMsgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpStatsOutErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/icmpStatsTable/icmpStatsEntry/icmpStatsOutErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "icmpStatsTable",
                    "icmpStatsEntry",
                    "icmpStatsOutErrors"
                  ]
                },
                "description": "Retrieve icmpStatsOutErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpMsgStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/icmpMsgStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "icmpMsgStatsTable"
                  ]
                },
                "description": "Retrieve icmpMsgStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpMsgStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/icmpMsgStatsTable/icmpMsgStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "icmpMsgStatsTable",
                    "icmpMsgStatsEntry"
                  ]
                },
                "description": "Retrieve icmpMsgStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpMsgStatsIPVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/icmpMsgStatsTable/icmpMsgStatsEntry/icmpMsgStatsIPVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "icmpMsgStatsTable",
                    "icmpMsgStatsEntry",
                    "icmpMsgStatsIPVersion"
                  ]
                },
                "description": "Retrieve icmpMsgStatsIPVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpMsgStatsType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/icmpMsgStatsTable/icmpMsgStatsEntry/icmpMsgStatsType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "icmpMsgStatsTable",
                    "icmpMsgStatsEntry",
                    "icmpMsgStatsType"
                  ]
                },
                "description": "Retrieve icmpMsgStatsType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpMsgStatsInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/icmpMsgStatsTable/icmpMsgStatsEntry/icmpMsgStatsInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "icmpMsgStatsTable",
                    "icmpMsgStatsEntry",
                    "icmpMsgStatsInPkts"
                  ]
                },
                "description": "Retrieve icmpMsgStatsInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpMsgStatsOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IP-MIB:IP-MIB/icmpMsgStatsTable/icmpMsgStatsEntry/icmpMsgStatsOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IP-MIB:IP-MIB",
                    "icmpMsgStatsTable",
                    "icmpMsgStatsEntry",
                    "icmpMsgStatsOutPkts"
                  ]
                },
                "description": "Retrieve icmpMsgStatsOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "IPMROUTE-STD-MIB",
          "description": "Cisco IOS-XE MIB - IPMROUTE-STD-MIB\n\nMIB data from `IPMROUTE-STD-MIB` module.\n\n**Root containers:** 1 (IPMROUTE-STD-MIB)\n**Paths:** 59 | **Descendants:** 58\n\nAll endpoints are read-only (GET).\n\nEndpoints: 59 | Operations: 59",
          "item": [
            {
              "name": "GET Get IPMROUTE-STD-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB"
                  ]
                },
                "description": "Retrieve IPMROUTE-STD-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRoute",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRoute",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRoute"
                  ]
                },
                "description": "Retrieve ipMRoute from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRoute/ipMRouteEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRoute",
                    "ipMRouteEnable"
                  ]
                },
                "description": "Retrieve ipMRouteEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteEntryCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRoute/ipMRouteEntryCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRoute",
                    "ipMRouteEntryCount"
                  ]
                },
                "description": "Retrieve ipMRouteEntryCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable"
                  ]
                },
                "description": "Retrieve ipMRouteTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry"
                  ]
                },
                "description": "Retrieve ipMRouteEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry/ipMRouteGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry",
                    "ipMRouteGroup"
                  ]
                },
                "description": "Retrieve ipMRouteGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry/ipMRouteSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry",
                    "ipMRouteSource"
                  ]
                },
                "description": "Retrieve ipMRouteSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteSourceMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry/ipMRouteSourceMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry",
                    "ipMRouteSourceMask"
                  ]
                },
                "description": "Retrieve ipMRouteSourceMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteUpstreamNeighbor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry/ipMRouteUpstreamNeighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry",
                    "ipMRouteUpstreamNeighbor"
                  ]
                },
                "description": "Retrieve ipMRouteUpstreamNeighbor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteInIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry/ipMRouteInIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry",
                    "ipMRouteInIfIndex"
                  ]
                },
                "description": "Retrieve ipMRouteInIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry/ipMRouteUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry",
                    "ipMRouteUpTime"
                  ]
                },
                "description": "Retrieve ipMRouteUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteExpiryTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry/ipMRouteExpiryTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry",
                    "ipMRouteExpiryTime"
                  ]
                },
                "description": "Retrieve ipMRouteExpiryTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRoutePkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry/ipMRoutePkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry",
                    "ipMRoutePkts"
                  ]
                },
                "description": "Retrieve ipMRoutePkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteDifferentInIfPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry/ipMRouteDifferentInIfPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry",
                    "ipMRouteDifferentInIfPackets"
                  ]
                },
                "description": "Retrieve ipMRouteDifferentInIfPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry/ipMRouteOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry",
                    "ipMRouteOctets"
                  ]
                },
                "description": "Retrieve ipMRouteOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry/ipMRouteProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry",
                    "ipMRouteProtocol"
                  ]
                },
                "description": "Retrieve ipMRouteProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteRtProto",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry/ipMRouteRtProto",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry",
                    "ipMRouteRtProto"
                  ]
                },
                "description": "Retrieve ipMRouteRtProto from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteRtAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry/ipMRouteRtAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry",
                    "ipMRouteRtAddress"
                  ]
                },
                "description": "Retrieve ipMRouteRtAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteRtMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry/ipMRouteRtMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry",
                    "ipMRouteRtMask"
                  ]
                },
                "description": "Retrieve ipMRouteRtMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteRtType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry/ipMRouteRtType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry",
                    "ipMRouteRtType"
                  ]
                },
                "description": "Retrieve ipMRouteRtType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteHCOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteTable/ipMRouteEntry/ipMRouteHCOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteTable",
                    "ipMRouteEntry",
                    "ipMRouteHCOctets"
                  ]
                },
                "description": "Retrieve ipMRouteHCOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteNextHopTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteNextHopTable"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteNextHopTable/ipMRouteNextHopEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteNextHopTable",
                    "ipMRouteNextHopEntry"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteNextHopTable/ipMRouteNextHopEntry/ipMRouteNextHopGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteNextHopTable",
                    "ipMRouteNextHopEntry",
                    "ipMRouteNextHopGroup"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteNextHopTable/ipMRouteNextHopEntry/ipMRouteNextHopSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteNextHopTable",
                    "ipMRouteNextHopEntry",
                    "ipMRouteNextHopSource"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopSourceMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteNextHopTable/ipMRouteNextHopEntry/ipMRouteNextHopSourceMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteNextHopTable",
                    "ipMRouteNextHopEntry",
                    "ipMRouteNextHopSourceMask"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopSourceMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteNextHopTable/ipMRouteNextHopEntry/ipMRouteNextHopIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteNextHopTable",
                    "ipMRouteNextHopEntry",
                    "ipMRouteNextHopIfIndex"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteNextHopTable/ipMRouteNextHopEntry/ipMRouteNextHopAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteNextHopTable",
                    "ipMRouteNextHopEntry",
                    "ipMRouteNextHopAddress"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteNextHopTable/ipMRouteNextHopEntry/ipMRouteNextHopState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteNextHopTable",
                    "ipMRouteNextHopEntry",
                    "ipMRouteNextHopState"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteNextHopTable/ipMRouteNextHopEntry/ipMRouteNextHopUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteNextHopTable",
                    "ipMRouteNextHopEntry",
                    "ipMRouteNextHopUpTime"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopExpiryTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteNextHopTable/ipMRouteNextHopEntry/ipMRouteNextHopExpiryTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteNextHopTable",
                    "ipMRouteNextHopEntry",
                    "ipMRouteNextHopExpiryTime"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopExpiryTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopClosestMemberHops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteNextHopTable/ipMRouteNextHopEntry/ipMRouteNextHopClosestMemberHops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteNextHopTable",
                    "ipMRouteNextHopEntry",
                    "ipMRouteNextHopClosestMemberHops"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopClosestMemberHops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteNextHopTable/ipMRouteNextHopEntry/ipMRouteNextHopProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteNextHopTable",
                    "ipMRouteNextHopEntry",
                    "ipMRouteNextHopProtocol"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteNextHopTable/ipMRouteNextHopEntry/ipMRouteNextHopPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteNextHopTable",
                    "ipMRouteNextHopEntry",
                    "ipMRouteNextHopPkts"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteInterfaceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteInterfaceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteInterfaceTable"
                  ]
                },
                "description": "Retrieve ipMRouteInterfaceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteInterfaceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteInterfaceTable/ipMRouteInterfaceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteInterfaceTable",
                    "ipMRouteInterfaceEntry"
                  ]
                },
                "description": "Retrieve ipMRouteInterfaceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteInterfaceIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteInterfaceTable/ipMRouteInterfaceEntry/ipMRouteInterfaceIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteInterfaceTable",
                    "ipMRouteInterfaceEntry",
                    "ipMRouteInterfaceIfIndex"
                  ]
                },
                "description": "Retrieve ipMRouteInterfaceIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteInterfaceTtl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteInterfaceTable/ipMRouteInterfaceEntry/ipMRouteInterfaceTtl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteInterfaceTable",
                    "ipMRouteInterfaceEntry",
                    "ipMRouteInterfaceTtl"
                  ]
                },
                "description": "Retrieve ipMRouteInterfaceTtl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteInterfaceProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteInterfaceTable/ipMRouteInterfaceEntry/ipMRouteInterfaceProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteInterfaceTable",
                    "ipMRouteInterfaceEntry",
                    "ipMRouteInterfaceProtocol"
                  ]
                },
                "description": "Retrieve ipMRouteInterfaceProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteInterfaceRateLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteInterfaceTable/ipMRouteInterfaceEntry/ipMRouteInterfaceRateLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteInterfaceTable",
                    "ipMRouteInterfaceEntry",
                    "ipMRouteInterfaceRateLimit"
                  ]
                },
                "description": "Retrieve ipMRouteInterfaceRateLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteInterfaceInMcastOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteInterfaceTable/ipMRouteInterfaceEntry/ipMRouteInterfaceInMcastOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteInterfaceTable",
                    "ipMRouteInterfaceEntry",
                    "ipMRouteInterfaceInMcastOctets"
                  ]
                },
                "description": "Retrieve ipMRouteInterfaceInMcastOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteInterfaceOutMcastOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteInterfaceTable/ipMRouteInterfaceEntry/ipMRouteInterfaceOutMcastOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteInterfaceTable",
                    "ipMRouteInterfaceEntry",
                    "ipMRouteInterfaceOutMcastOctets"
                  ]
                },
                "description": "Retrieve ipMRouteInterfaceOutMcastOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteInterfaceHCInMcastOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteInterfaceTable/ipMRouteInterfaceEntry/ipMRouteInterfaceHCInMcastOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteInterfaceTable",
                    "ipMRouteInterfaceEntry",
                    "ipMRouteInterfaceHCInMcastOctets"
                  ]
                },
                "description": "Retrieve ipMRouteInterfaceHCInMcastOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteInterfaceHCOutMcastOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteInterfaceTable/ipMRouteInterfaceEntry/ipMRouteInterfaceHCOutMcastOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteInterfaceTable",
                    "ipMRouteInterfaceEntry",
                    "ipMRouteInterfaceHCOutMcastOctets"
                  ]
                },
                "description": "Retrieve ipMRouteInterfaceHCOutMcastOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteBoundaryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteBoundaryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteBoundaryTable"
                  ]
                },
                "description": "Retrieve ipMRouteBoundaryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteBoundaryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteBoundaryTable/ipMRouteBoundaryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteBoundaryTable",
                    "ipMRouteBoundaryEntry"
                  ]
                },
                "description": "Retrieve ipMRouteBoundaryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteBoundaryIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteBoundaryTable/ipMRouteBoundaryEntry/ipMRouteBoundaryIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteBoundaryTable",
                    "ipMRouteBoundaryEntry",
                    "ipMRouteBoundaryIfIndex"
                  ]
                },
                "description": "Retrieve ipMRouteBoundaryIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteBoundaryAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteBoundaryTable/ipMRouteBoundaryEntry/ipMRouteBoundaryAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteBoundaryTable",
                    "ipMRouteBoundaryEntry",
                    "ipMRouteBoundaryAddress"
                  ]
                },
                "description": "Retrieve ipMRouteBoundaryAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteBoundaryAddressMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteBoundaryTable/ipMRouteBoundaryEntry/ipMRouteBoundaryAddressMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteBoundaryTable",
                    "ipMRouteBoundaryEntry",
                    "ipMRouteBoundaryAddressMask"
                  ]
                },
                "description": "Retrieve ipMRouteBoundaryAddressMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteBoundaryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteBoundaryTable/ipMRouteBoundaryEntry/ipMRouteBoundaryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteBoundaryTable",
                    "ipMRouteBoundaryEntry",
                    "ipMRouteBoundaryStatus"
                  ]
                },
                "description": "Retrieve ipMRouteBoundaryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteScopeNameTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteScopeNameTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteScopeNameTable"
                  ]
                },
                "description": "Retrieve ipMRouteScopeNameTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteScopeNameEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteScopeNameTable/ipMRouteScopeNameEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteScopeNameTable",
                    "ipMRouteScopeNameEntry"
                  ]
                },
                "description": "Retrieve ipMRouteScopeNameEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteScopeNameAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteScopeNameTable/ipMRouteScopeNameEntry/ipMRouteScopeNameAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteScopeNameTable",
                    "ipMRouteScopeNameEntry",
                    "ipMRouteScopeNameAddress"
                  ]
                },
                "description": "Retrieve ipMRouteScopeNameAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteScopeNameAddressMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteScopeNameTable/ipMRouteScopeNameEntry/ipMRouteScopeNameAddressMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteScopeNameTable",
                    "ipMRouteScopeNameEntry",
                    "ipMRouteScopeNameAddressMask"
                  ]
                },
                "description": "Retrieve ipMRouteScopeNameAddressMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteScopeNameLanguage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteScopeNameTable/ipMRouteScopeNameEntry/ipMRouteScopeNameLanguage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteScopeNameTable",
                    "ipMRouteScopeNameEntry",
                    "ipMRouteScopeNameLanguage"
                  ]
                },
                "description": "Retrieve ipMRouteScopeNameLanguage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteScopeNameString",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteScopeNameTable/ipMRouteScopeNameEntry/ipMRouteScopeNameString",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteScopeNameTable",
                    "ipMRouteScopeNameEntry",
                    "ipMRouteScopeNameString"
                  ]
                },
                "description": "Retrieve ipMRouteScopeNameString from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteScopeNameDefault",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteScopeNameTable/ipMRouteScopeNameEntry/ipMRouteScopeNameDefault",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteScopeNameTable",
                    "ipMRouteScopeNameEntry",
                    "ipMRouteScopeNameDefault"
                  ]
                },
                "description": "Retrieve ipMRouteScopeNameDefault from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteScopeNameStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/IPMROUTE-STD-MIB:IPMROUTE-STD-MIB/ipMRouteScopeNameTable/ipMRouteScopeNameEntry/ipMRouteScopeNameStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "IPMROUTE-STD-MIB:IPMROUTE-STD-MIB",
                    "ipMRouteScopeNameTable",
                    "ipMRouteScopeNameEntry",
                    "ipMRouteScopeNameStatus"
                  ]
                },
                "description": "Retrieve ipMRouteScopeNameStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "LLDP-MIB",
          "description": "Cisco IOS-XE MIB - LLDP-MIB\n\nMIB data from `LLDP-MIB` module.\n\n**Root containers:** 1 (LLDP-MIB)\n**Paths:** 102 | **Descendants:** 101\n\nAll endpoints are read-only (GET).\n\nEndpoints: 102 | Operations: 102",
          "item": [
            {
              "name": "GET Get LLDP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB"
                  ]
                },
                "description": "Retrieve LLDP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpConfiguration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpConfiguration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpConfiguration"
                  ]
                },
                "description": "Retrieve lldpConfiguration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpMessageTxInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpConfiguration/lldpMessageTxInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpConfiguration",
                    "lldpMessageTxInterval"
                  ]
                },
                "description": "Retrieve lldpMessageTxInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpMessageTxHoldMultiplier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpConfiguration/lldpMessageTxHoldMultiplier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpConfiguration",
                    "lldpMessageTxHoldMultiplier"
                  ]
                },
                "description": "Retrieve lldpMessageTxHoldMultiplier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpReinitDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpConfiguration/lldpReinitDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpConfiguration",
                    "lldpReinitDelay"
                  ]
                },
                "description": "Retrieve lldpReinitDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpTxDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpConfiguration/lldpTxDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpConfiguration",
                    "lldpTxDelay"
                  ]
                },
                "description": "Retrieve lldpTxDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpNotificationInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpConfiguration/lldpNotificationInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpConfiguration",
                    "lldpNotificationInterval"
                  ]
                },
                "description": "Retrieve lldpNotificationInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatistics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatistics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatistics"
                  ]
                },
                "description": "Retrieve lldpStatistics from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRemTablesLastChangeTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatistics/lldpStatsRemTablesLastChangeTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatistics",
                    "lldpStatsRemTablesLastChangeTime"
                  ]
                },
                "description": "Retrieve lldpStatsRemTablesLastChangeTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRemTablesInserts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatistics/lldpStatsRemTablesInserts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatistics",
                    "lldpStatsRemTablesInserts"
                  ]
                },
                "description": "Retrieve lldpStatsRemTablesInserts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRemTablesDeletes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatistics/lldpStatsRemTablesDeletes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatistics",
                    "lldpStatsRemTablesDeletes"
                  ]
                },
                "description": "Retrieve lldpStatsRemTablesDeletes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRemTablesDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatistics/lldpStatsRemTablesDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatistics",
                    "lldpStatsRemTablesDrops"
                  ]
                },
                "description": "Retrieve lldpStatsRemTablesDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRemTablesAgeouts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatistics/lldpStatsRemTablesAgeouts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatistics",
                    "lldpStatsRemTablesAgeouts"
                  ]
                },
                "description": "Retrieve lldpStatsRemTablesAgeouts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocalSystemData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocalSystemData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocalSystemData"
                  ]
                },
                "description": "Retrieve lldpLocalSystemData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocChassisIdSubtype",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocalSystemData/lldpLocChassisIdSubtype",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocalSystemData",
                    "lldpLocChassisIdSubtype"
                  ]
                },
                "description": "Retrieve lldpLocChassisIdSubtype from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocChassisId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocalSystemData/lldpLocChassisId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocalSystemData",
                    "lldpLocChassisId"
                  ]
                },
                "description": "Retrieve lldpLocChassisId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocSysName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocalSystemData/lldpLocSysName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocalSystemData",
                    "lldpLocSysName"
                  ]
                },
                "description": "Retrieve lldpLocSysName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocSysDesc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocalSystemData/lldpLocSysDesc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocalSystemData",
                    "lldpLocSysDesc"
                  ]
                },
                "description": "Retrieve lldpLocSysDesc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocSysCapSupported",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocalSystemData/lldpLocSysCapSupported",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocalSystemData",
                    "lldpLocSysCapSupported"
                  ]
                },
                "description": "Retrieve lldpLocSysCapSupported from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocSysCapEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocalSystemData/lldpLocSysCapEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocalSystemData",
                    "lldpLocSysCapEnabled"
                  ]
                },
                "description": "Retrieve lldpLocSysCapEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpPortConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpPortConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpPortConfigTable"
                  ]
                },
                "description": "Retrieve lldpPortConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpPortConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpPortConfigTable/lldpPortConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpPortConfigTable",
                    "lldpPortConfigEntry"
                  ]
                },
                "description": "Retrieve lldpPortConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpPortConfigPortNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpPortConfigTable/lldpPortConfigEntry/lldpPortConfigPortNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpPortConfigTable",
                    "lldpPortConfigEntry",
                    "lldpPortConfigPortNum"
                  ]
                },
                "description": "Retrieve lldpPortConfigPortNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpPortConfigAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpPortConfigTable/lldpPortConfigEntry/lldpPortConfigAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpPortConfigTable",
                    "lldpPortConfigEntry",
                    "lldpPortConfigAdminStatus"
                  ]
                },
                "description": "Retrieve lldpPortConfigAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpPortConfigNotificationEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpPortConfigTable/lldpPortConfigEntry/lldpPortConfigNotificationEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpPortConfigTable",
                    "lldpPortConfigEntry",
                    "lldpPortConfigNotificationEnable"
                  ]
                },
                "description": "Retrieve lldpPortConfigNotificationEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpPortConfigTLVsTxEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpPortConfigTable/lldpPortConfigEntry/lldpPortConfigTLVsTxEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpPortConfigTable",
                    "lldpPortConfigEntry",
                    "lldpPortConfigTLVsTxEnable"
                  ]
                },
                "description": "Retrieve lldpPortConfigTLVsTxEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsTxPortTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatsTxPortTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatsTxPortTable"
                  ]
                },
                "description": "Retrieve lldpStatsTxPortTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsTxPortEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatsTxPortTable/lldpStatsTxPortEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatsTxPortTable",
                    "lldpStatsTxPortEntry"
                  ]
                },
                "description": "Retrieve lldpStatsTxPortEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsTxPortNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatsTxPortTable/lldpStatsTxPortEntry/lldpStatsTxPortNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatsTxPortTable",
                    "lldpStatsTxPortEntry",
                    "lldpStatsTxPortNum"
                  ]
                },
                "description": "Retrieve lldpStatsTxPortNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsTxPortFramesTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatsTxPortTable/lldpStatsTxPortEntry/lldpStatsTxPortFramesTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatsTxPortTable",
                    "lldpStatsTxPortEntry",
                    "lldpStatsTxPortFramesTotal"
                  ]
                },
                "description": "Retrieve lldpStatsTxPortFramesTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRxPortTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatsRxPortTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatsRxPortTable"
                  ]
                },
                "description": "Retrieve lldpStatsRxPortTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRxPortEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatsRxPortTable/lldpStatsRxPortEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatsRxPortTable",
                    "lldpStatsRxPortEntry"
                  ]
                },
                "description": "Retrieve lldpStatsRxPortEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRxPortNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatsRxPortTable/lldpStatsRxPortEntry/lldpStatsRxPortNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatsRxPortTable",
                    "lldpStatsRxPortEntry",
                    "lldpStatsRxPortNum"
                  ]
                },
                "description": "Retrieve lldpStatsRxPortNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRxPortFramesDiscardedTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatsRxPortTable/lldpStatsRxPortEntry/lldpStatsRxPortFramesDiscardedTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatsRxPortTable",
                    "lldpStatsRxPortEntry",
                    "lldpStatsRxPortFramesDiscardedTotal"
                  ]
                },
                "description": "Retrieve lldpStatsRxPortFramesDiscardedTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRxPortFramesErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatsRxPortTable/lldpStatsRxPortEntry/lldpStatsRxPortFramesErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatsRxPortTable",
                    "lldpStatsRxPortEntry",
                    "lldpStatsRxPortFramesErrors"
                  ]
                },
                "description": "Retrieve lldpStatsRxPortFramesErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRxPortFramesTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatsRxPortTable/lldpStatsRxPortEntry/lldpStatsRxPortFramesTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatsRxPortTable",
                    "lldpStatsRxPortEntry",
                    "lldpStatsRxPortFramesTotal"
                  ]
                },
                "description": "Retrieve lldpStatsRxPortFramesTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRxPortTLVsDiscardedTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatsRxPortTable/lldpStatsRxPortEntry/lldpStatsRxPortTLVsDiscardedTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatsRxPortTable",
                    "lldpStatsRxPortEntry",
                    "lldpStatsRxPortTLVsDiscardedTotal"
                  ]
                },
                "description": "Retrieve lldpStatsRxPortTLVsDiscardedTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRxPortTLVsUnrecognizedTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatsRxPortTable/lldpStatsRxPortEntry/lldpStatsRxPortTLVsUnrecognizedTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatsRxPortTable",
                    "lldpStatsRxPortEntry",
                    "lldpStatsRxPortTLVsUnrecognizedTotal"
                  ]
                },
                "description": "Retrieve lldpStatsRxPortTLVsUnrecognizedTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRxPortAgeoutsTotal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpStatsRxPortTable/lldpStatsRxPortEntry/lldpStatsRxPortAgeoutsTotal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpStatsRxPortTable",
                    "lldpStatsRxPortEntry",
                    "lldpStatsRxPortAgeoutsTotal"
                  ]
                },
                "description": "Retrieve lldpStatsRxPortAgeoutsTotal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocPortTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocPortTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocPortTable"
                  ]
                },
                "description": "Retrieve lldpLocPortTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocPortEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocPortTable/lldpLocPortEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocPortTable",
                    "lldpLocPortEntry"
                  ]
                },
                "description": "Retrieve lldpLocPortEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocPortNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocPortTable/lldpLocPortEntry/lldpLocPortNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocPortTable",
                    "lldpLocPortEntry",
                    "lldpLocPortNum"
                  ]
                },
                "description": "Retrieve lldpLocPortNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocPortIdSubtype",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocPortTable/lldpLocPortEntry/lldpLocPortIdSubtype",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocPortTable",
                    "lldpLocPortEntry",
                    "lldpLocPortIdSubtype"
                  ]
                },
                "description": "Retrieve lldpLocPortIdSubtype from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocPortId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocPortTable/lldpLocPortEntry/lldpLocPortId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocPortTable",
                    "lldpLocPortEntry",
                    "lldpLocPortId"
                  ]
                },
                "description": "Retrieve lldpLocPortId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocPortDesc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocPortTable/lldpLocPortEntry/lldpLocPortDesc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocPortTable",
                    "lldpLocPortEntry",
                    "lldpLocPortDesc"
                  ]
                },
                "description": "Retrieve lldpLocPortDesc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocManAddrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocManAddrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocManAddrTable"
                  ]
                },
                "description": "Retrieve lldpLocManAddrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocManAddrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocManAddrTable/lldpLocManAddrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocManAddrTable",
                    "lldpLocManAddrEntry"
                  ]
                },
                "description": "Retrieve lldpLocManAddrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocManAddrSubtype",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocManAddrTable/lldpLocManAddrEntry/lldpLocManAddrSubtype",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocManAddrTable",
                    "lldpLocManAddrEntry",
                    "lldpLocManAddrSubtype"
                  ]
                },
                "description": "Retrieve lldpLocManAddrSubtype from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocManAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocManAddrTable/lldpLocManAddrEntry/lldpLocManAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocManAddrTable",
                    "lldpLocManAddrEntry",
                    "lldpLocManAddr"
                  ]
                },
                "description": "Retrieve lldpLocManAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocManAddrLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocManAddrTable/lldpLocManAddrEntry/lldpLocManAddrLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocManAddrTable",
                    "lldpLocManAddrEntry",
                    "lldpLocManAddrLen"
                  ]
                },
                "description": "Retrieve lldpLocManAddrLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocManAddrIfSubtype",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocManAddrTable/lldpLocManAddrEntry/lldpLocManAddrIfSubtype",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocManAddrTable",
                    "lldpLocManAddrEntry",
                    "lldpLocManAddrIfSubtype"
                  ]
                },
                "description": "Retrieve lldpLocManAddrIfSubtype from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocManAddrIfId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocManAddrTable/lldpLocManAddrEntry/lldpLocManAddrIfId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocManAddrTable",
                    "lldpLocManAddrEntry",
                    "lldpLocManAddrIfId"
                  ]
                },
                "description": "Retrieve lldpLocManAddrIfId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpLocManAddrOID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocManAddrTable/lldpLocManAddrEntry/lldpLocManAddrOID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocManAddrTable",
                    "lldpLocManAddrEntry",
                    "lldpLocManAddrOID"
                  ]
                },
                "description": "Retrieve lldpLocManAddrOID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpConfigManAddrPortsTxEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpLocManAddrTable/lldpLocManAddrEntry/lldpConfigManAddrPortsTxEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpLocManAddrTable",
                    "lldpLocManAddrEntry",
                    "lldpConfigManAddrPortsTxEnable"
                  ]
                },
                "description": "Retrieve lldpConfigManAddrPortsTxEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemTable"
                  ]
                },
                "description": "Retrieve lldpRemTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemTable/lldpRemEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemTable",
                    "lldpRemEntry"
                  ]
                },
                "description": "Retrieve lldpRemEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemTimeMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemTable/lldpRemEntry/lldpRemTimeMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemTable",
                    "lldpRemEntry",
                    "lldpRemTimeMark"
                  ]
                },
                "description": "Retrieve lldpRemTimeMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemLocalPortNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemTable/lldpRemEntry/lldpRemLocalPortNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemTable",
                    "lldpRemEntry",
                    "lldpRemLocalPortNum"
                  ]
                },
                "description": "Retrieve lldpRemLocalPortNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemTable/lldpRemEntry/lldpRemIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemTable",
                    "lldpRemEntry",
                    "lldpRemIndex"
                  ]
                },
                "description": "Retrieve lldpRemIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemChassisIdSubtype",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemTable/lldpRemEntry/lldpRemChassisIdSubtype",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemTable",
                    "lldpRemEntry",
                    "lldpRemChassisIdSubtype"
                  ]
                },
                "description": "Retrieve lldpRemChassisIdSubtype from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemChassisId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemTable/lldpRemEntry/lldpRemChassisId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemTable",
                    "lldpRemEntry",
                    "lldpRemChassisId"
                  ]
                },
                "description": "Retrieve lldpRemChassisId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemPortIdSubtype",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemTable/lldpRemEntry/lldpRemPortIdSubtype",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemTable",
                    "lldpRemEntry",
                    "lldpRemPortIdSubtype"
                  ]
                },
                "description": "Retrieve lldpRemPortIdSubtype from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemPortId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemTable/lldpRemEntry/lldpRemPortId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemTable",
                    "lldpRemEntry",
                    "lldpRemPortId"
                  ]
                },
                "description": "Retrieve lldpRemPortId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemPortDesc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemTable/lldpRemEntry/lldpRemPortDesc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemTable",
                    "lldpRemEntry",
                    "lldpRemPortDesc"
                  ]
                },
                "description": "Retrieve lldpRemPortDesc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemSysName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemTable/lldpRemEntry/lldpRemSysName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemTable",
                    "lldpRemEntry",
                    "lldpRemSysName"
                  ]
                },
                "description": "Retrieve lldpRemSysName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemSysDesc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemTable/lldpRemEntry/lldpRemSysDesc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemTable",
                    "lldpRemEntry",
                    "lldpRemSysDesc"
                  ]
                },
                "description": "Retrieve lldpRemSysDesc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemSysCapSupported",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemTable/lldpRemEntry/lldpRemSysCapSupported",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemTable",
                    "lldpRemEntry",
                    "lldpRemSysCapSupported"
                  ]
                },
                "description": "Retrieve lldpRemSysCapSupported from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemSysCapEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemTable/lldpRemEntry/lldpRemSysCapEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemTable",
                    "lldpRemEntry",
                    "lldpRemSysCapEnabled"
                  ]
                },
                "description": "Retrieve lldpRemSysCapEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemManAddrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemManAddrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemManAddrTable"
                  ]
                },
                "description": "Retrieve lldpRemManAddrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemManAddrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemManAddrTable/lldpRemManAddrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemManAddrTable",
                    "lldpRemManAddrEntry"
                  ]
                },
                "description": "Retrieve lldpRemManAddrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemTimeMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemManAddrTable/lldpRemManAddrEntry/lldpRemTimeMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemManAddrTable",
                    "lldpRemManAddrEntry",
                    "lldpRemTimeMark"
                  ]
                },
                "description": "Retrieve lldpRemTimeMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemLocalPortNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemManAddrTable/lldpRemManAddrEntry/lldpRemLocalPortNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemManAddrTable",
                    "lldpRemManAddrEntry",
                    "lldpRemLocalPortNum"
                  ]
                },
                "description": "Retrieve lldpRemLocalPortNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemManAddrTable/lldpRemManAddrEntry/lldpRemIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemManAddrTable",
                    "lldpRemManAddrEntry",
                    "lldpRemIndex"
                  ]
                },
                "description": "Retrieve lldpRemIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemManAddrSubtype",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemManAddrTable/lldpRemManAddrEntry/lldpRemManAddrSubtype",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemManAddrTable",
                    "lldpRemManAddrEntry",
                    "lldpRemManAddrSubtype"
                  ]
                },
                "description": "Retrieve lldpRemManAddrSubtype from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemManAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemManAddrTable/lldpRemManAddrEntry/lldpRemManAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemManAddrTable",
                    "lldpRemManAddrEntry",
                    "lldpRemManAddr"
                  ]
                },
                "description": "Retrieve lldpRemManAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemManAddrIfSubtype",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemManAddrTable/lldpRemManAddrEntry/lldpRemManAddrIfSubtype",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemManAddrTable",
                    "lldpRemManAddrEntry",
                    "lldpRemManAddrIfSubtype"
                  ]
                },
                "description": "Retrieve lldpRemManAddrIfSubtype from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemManAddrIfId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemManAddrTable/lldpRemManAddrEntry/lldpRemManAddrIfId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemManAddrTable",
                    "lldpRemManAddrEntry",
                    "lldpRemManAddrIfId"
                  ]
                },
                "description": "Retrieve lldpRemManAddrIfId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemManAddrOID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemManAddrTable/lldpRemManAddrEntry/lldpRemManAddrOID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemManAddrTable",
                    "lldpRemManAddrEntry",
                    "lldpRemManAddrOID"
                  ]
                },
                "description": "Retrieve lldpRemManAddrOID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemUnknownTLVTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemUnknownTLVTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemUnknownTLVTable"
                  ]
                },
                "description": "Retrieve lldpRemUnknownTLVTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemUnknownTLVEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemUnknownTLVTable/lldpRemUnknownTLVEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemUnknownTLVTable",
                    "lldpRemUnknownTLVEntry"
                  ]
                },
                "description": "Retrieve lldpRemUnknownTLVEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemTimeMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemUnknownTLVTable/lldpRemUnknownTLVEntry/lldpRemTimeMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemUnknownTLVTable",
                    "lldpRemUnknownTLVEntry",
                    "lldpRemTimeMark"
                  ]
                },
                "description": "Retrieve lldpRemTimeMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemLocalPortNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemUnknownTLVTable/lldpRemUnknownTLVEntry/lldpRemLocalPortNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemUnknownTLVTable",
                    "lldpRemUnknownTLVEntry",
                    "lldpRemLocalPortNum"
                  ]
                },
                "description": "Retrieve lldpRemLocalPortNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemUnknownTLVTable/lldpRemUnknownTLVEntry/lldpRemIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemUnknownTLVTable",
                    "lldpRemUnknownTLVEntry",
                    "lldpRemIndex"
                  ]
                },
                "description": "Retrieve lldpRemIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemUnknownTLVType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemUnknownTLVTable/lldpRemUnknownTLVEntry/lldpRemUnknownTLVType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemUnknownTLVTable",
                    "lldpRemUnknownTLVEntry",
                    "lldpRemUnknownTLVType"
                  ]
                },
                "description": "Retrieve lldpRemUnknownTLVType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemUnknownTLVInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemUnknownTLVTable/lldpRemUnknownTLVEntry/lldpRemUnknownTLVInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemUnknownTLVTable",
                    "lldpRemUnknownTLVEntry",
                    "lldpRemUnknownTLVInfo"
                  ]
                },
                "description": "Retrieve lldpRemUnknownTLVInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemOrgDefInfoTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable"
                  ]
                },
                "description": "Retrieve lldpRemOrgDefInfoTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemOrgDefInfoEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable/lldpRemOrgDefInfoEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable",
                    "lldpRemOrgDefInfoEntry"
                  ]
                },
                "description": "Retrieve lldpRemOrgDefInfoEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemTimeMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable/lldpRemOrgDefInfoEntry/lldpRemTimeMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable",
                    "lldpRemOrgDefInfoEntry",
                    "lldpRemTimeMark"
                  ]
                },
                "description": "Retrieve lldpRemTimeMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemLocalPortNum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable/lldpRemOrgDefInfoEntry/lldpRemLocalPortNum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable",
                    "lldpRemOrgDefInfoEntry",
                    "lldpRemLocalPortNum"
                  ]
                },
                "description": "Retrieve lldpRemLocalPortNum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable/lldpRemOrgDefInfoEntry/lldpRemIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable",
                    "lldpRemOrgDefInfoEntry",
                    "lldpRemIndex"
                  ]
                },
                "description": "Retrieve lldpRemIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemOrgDefInfoOUI",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable/lldpRemOrgDefInfoEntry/lldpRemOrgDefInfoOUI",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable",
                    "lldpRemOrgDefInfoEntry",
                    "lldpRemOrgDefInfoOUI"
                  ]
                },
                "description": "Retrieve lldpRemOrgDefInfoOUI from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemOrgDefInfoSubtype",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable/lldpRemOrgDefInfoEntry/lldpRemOrgDefInfoSubtype",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable",
                    "lldpRemOrgDefInfoEntry",
                    "lldpRemOrgDefInfoSubtype"
                  ]
                },
                "description": "Retrieve lldpRemOrgDefInfoSubtype from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemOrgDefInfoIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable/lldpRemOrgDefInfoEntry/lldpRemOrgDefInfoIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable",
                    "lldpRemOrgDefInfoEntry",
                    "lldpRemOrgDefInfoIndex"
                  ]
                },
                "description": "Retrieve lldpRemOrgDefInfoIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpRemOrgDefInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable/lldpRemOrgDefInfoEntry/lldpRemOrgDefInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable",
                    "lldpRemOrgDefInfoEntry",
                    "lldpRemOrgDefInfo"
                  ]
                },
                "description": "Retrieve lldpRemOrgDefInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRemTablesInserts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable/object-1/lldpStatsRemTablesInserts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable",
                    "object-1",
                    "lldpStatsRemTablesInserts"
                  ]
                },
                "description": "Retrieve lldpStatsRemTablesInserts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRemTablesDeletes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable/object-2/lldpStatsRemTablesDeletes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable",
                    "object-2",
                    "lldpStatsRemTablesDeletes"
                  ]
                },
                "description": "Retrieve lldpStatsRemTablesDeletes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRemTablesDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable/object-3/lldpStatsRemTablesDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable",
                    "object-3",
                    "lldpStatsRemTablesDrops"
                  ]
                },
                "description": "Retrieve lldpStatsRemTablesDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lldpStatsRemTablesAgeouts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/LLDP-MIB:LLDP-MIB/lldpRemOrgDefInfoTable/object-4/lldpStatsRemTablesAgeouts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "LLDP-MIB:LLDP-MIB",
                    "lldpRemOrgDefInfoTable",
                    "object-4",
                    "lldpStatsRemTablesAgeouts"
                  ]
                },
                "description": "Retrieve lldpStatsRemTablesAgeouts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "MPLS-L3VPN-STD-MIB",
          "description": "Cisco IOS-XE MIB - MPLS-L3VPN-STD-MIB\n\nMIB data from `MPLS-L3VPN-STD-MIB` module.\n\n**Root containers:** 1 (MPLS-L3VPN-STD-MIB)\n**Paths:** 82 | **Descendants:** 105\n\nAll endpoints are read-only (GET).\n\nEndpoints: 82 | Operations: 82",
          "item": [
            {
              "name": "GET Get MPLS-L3VPN-STD-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB"
                  ]
                },
                "description": "Retrieve MPLS-L3VPN-STD-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnScalars",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnScalars",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnScalars"
                  ]
                },
                "description": "Retrieve mplsL3VpnScalars from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnConfiguredVrfs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnScalars/mplsL3VpnConfiguredVrfs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnScalars",
                    "mplsL3VpnConfiguredVrfs"
                  ]
                },
                "description": "Retrieve mplsL3VpnConfiguredVrfs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnActiveVrfs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnScalars/mplsL3VpnActiveVrfs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnScalars",
                    "mplsL3VpnActiveVrfs"
                  ]
                },
                "description": "Retrieve mplsL3VpnActiveVrfs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnConnectedInterfaces",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnScalars/mplsL3VpnConnectedInterfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnScalars",
                    "mplsL3VpnConnectedInterfaces"
                  ]
                },
                "description": "Retrieve mplsL3VpnConnectedInterfaces from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnNotificationEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnScalars/mplsL3VpnNotificationEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnScalars",
                    "mplsL3VpnNotificationEnable"
                  ]
                },
                "description": "Retrieve mplsL3VpnNotificationEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfConfMaxPossRts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnScalars/mplsL3VpnVrfConfMaxPossRts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnScalars",
                    "mplsL3VpnVrfConfMaxPossRts"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfConfMaxPossRts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfConfRteMxThrshTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnScalars/mplsL3VpnVrfConfRteMxThrshTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnScalars",
                    "mplsL3VpnVrfConfRteMxThrshTime"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfConfRteMxThrshTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnIllLblRcvThrsh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnScalars/mplsL3VpnIllLblRcvThrsh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnScalars",
                    "mplsL3VpnIllLblRcvThrsh"
                  ]
                },
                "description": "Retrieve mplsL3VpnIllLblRcvThrsh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnIfConfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnIfConfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnIfConfTable"
                  ]
                },
                "description": "Retrieve mplsL3VpnIfConfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnIfConfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnIfConfTable/mplsL3VpnIfConfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnIfConfTable",
                    "mplsL3VpnIfConfEntry"
                  ]
                },
                "description": "Retrieve mplsL3VpnIfConfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnIfConfTable/mplsL3VpnIfConfEntry/mplsL3VpnVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnIfConfTable",
                    "mplsL3VpnIfConfEntry",
                    "mplsL3VpnVrfName"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnIfConfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnIfConfTable/mplsL3VpnIfConfEntry/mplsL3VpnIfConfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnIfConfTable",
                    "mplsL3VpnIfConfEntry",
                    "mplsL3VpnIfConfIndex"
                  ]
                },
                "description": "Retrieve mplsL3VpnIfConfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnIfVpnClassification",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnIfConfTable/mplsL3VpnIfConfEntry/mplsL3VpnIfVpnClassification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnIfConfTable",
                    "mplsL3VpnIfConfEntry",
                    "mplsL3VpnIfVpnClassification"
                  ]
                },
                "description": "Retrieve mplsL3VpnIfVpnClassification from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnIfVpnRouteDistProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnIfConfTable/mplsL3VpnIfConfEntry/mplsL3VpnIfVpnRouteDistProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnIfConfTable",
                    "mplsL3VpnIfConfEntry",
                    "mplsL3VpnIfVpnRouteDistProtocol"
                  ]
                },
                "description": "Retrieve mplsL3VpnIfVpnRouteDistProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnIfConfStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnIfConfTable/mplsL3VpnIfConfEntry/mplsL3VpnIfConfStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnIfConfTable",
                    "mplsL3VpnIfConfEntry",
                    "mplsL3VpnIfConfStorageType"
                  ]
                },
                "description": "Retrieve mplsL3VpnIfConfStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnIfConfRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnIfConfTable/mplsL3VpnIfConfEntry/mplsL3VpnIfConfRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnIfConfTable",
                    "mplsL3VpnIfConfEntry",
                    "mplsL3VpnIfConfRowStatus"
                  ]
                },
                "description": "Retrieve mplsL3VpnIfConfRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfName"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfVpnId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfVpnId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfVpnId"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfVpnId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfDescription"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRD",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfRD",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfRD"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRD from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfCreationTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfCreationTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfCreationTime"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfCreationTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfOperStatus"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfActiveInterfaces",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfActiveInterfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfActiveInterfaces"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfActiveInterfaces from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfAssociatedInterfaces",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfAssociatedInterfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfAssociatedInterfaces"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfAssociatedInterfaces from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfConfMidRteThresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfConfMidRteThresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfConfMidRteThresh"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfConfMidRteThresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfConfHighRteThresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfConfHighRteThresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfConfHighRteThresh"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfConfHighRteThresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfConfMaxRoutes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfConfMaxRoutes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfConfMaxRoutes"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfConfMaxRoutes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfConfLastChanged",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfConfLastChanged",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfConfLastChanged"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfConfLastChanged from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfConfRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfConfRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfConfRowStatus"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfConfRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfConfAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfConfAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfConfAdminStatus"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfConfAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfConfStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfConfStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfConfStorageType"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfConfStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfSecIllegalLblVltns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfSecIllegalLblVltns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfSecIllegalLblVltns"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfSecIllegalLblVltns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfSecDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfSecDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfSecDiscontinuityTime"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfSecDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfPerfRoutesAdded",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfPerfRoutesAdded",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfPerfRoutesAdded"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfPerfRoutesAdded from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfPerfRoutesDeleted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfPerfRoutesDeleted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfPerfRoutesDeleted"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfPerfRoutesDeleted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfPerfCurrNumRoutes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfPerfCurrNumRoutes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfPerfCurrNumRoutes"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfPerfCurrNumRoutes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfPerfRoutesDropped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfPerfRoutesDropped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfPerfRoutesDropped"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfPerfRoutesDropped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfPerfDiscTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfTable/mplsL3VpnVrfEntry/mplsL3VpnVrfPerfDiscTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfTable",
                    "mplsL3VpnVrfEntry",
                    "mplsL3VpnVrfPerfDiscTime"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfPerfDiscTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRTTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRTTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRTTable"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRTTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRTEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRTTable/mplsL3VpnVrfRTEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRTTable",
                    "mplsL3VpnVrfRTEntry"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRTEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRTTable/mplsL3VpnVrfRTEntry/mplsL3VpnVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRTTable",
                    "mplsL3VpnVrfRTEntry",
                    "mplsL3VpnVrfName"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRTIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRTTable/mplsL3VpnVrfRTEntry/mplsL3VpnVrfRTIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRTTable",
                    "mplsL3VpnVrfRTEntry",
                    "mplsL3VpnVrfRTIndex"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRTIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRTType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRTTable/mplsL3VpnVrfRTEntry/mplsL3VpnVrfRTType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRTTable",
                    "mplsL3VpnVrfRTEntry",
                    "mplsL3VpnVrfRTType"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRTType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRT",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRTTable/mplsL3VpnVrfRTEntry/mplsL3VpnVrfRT",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRTTable",
                    "mplsL3VpnVrfRTEntry",
                    "mplsL3VpnVrfRT"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRT from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRTDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRTTable/mplsL3VpnVrfRTEntry/mplsL3VpnVrfRTDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRTTable",
                    "mplsL3VpnVrfRTEntry",
                    "mplsL3VpnVrfRTDescr"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRTDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRTRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRTTable/mplsL3VpnVrfRTEntry/mplsL3VpnVrfRTRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRTTable",
                    "mplsL3VpnVrfRTEntry",
                    "mplsL3VpnVrfRTRowStatus"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRTRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRTStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRTTable/mplsL3VpnVrfRTEntry/mplsL3VpnVrfRTStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRTTable",
                    "mplsL3VpnVrfRTEntry",
                    "mplsL3VpnVrfRTStorageType"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRTStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfName"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrDestType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrDestType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrDestType"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrDestType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrDest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrDest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrDest"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrDest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrPfxLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrPfxLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrPfxLen"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrPfxLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrPolicy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrPolicy"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrPolicy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrNHopType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrNHopType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrNHopType"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrNHopType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrNextHop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrNextHop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrNextHop"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrNextHop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrIfIndex"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrType"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrProto",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrProto",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrProto"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrProto from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrAge"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrNextHopAS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrNextHopAS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrNextHopAS"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrNextHopAS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrMetric1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrMetric1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrMetric1"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrMetric1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrMetric2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrMetric2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrMetric2"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrMetric2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrMetric3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrMetric3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrMetric3"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrMetric3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrMetric4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrMetric4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrMetric4"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrMetric4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrMetric5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrMetric5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrMetric5"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrMetric5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteXCPointer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteXCPointer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteXCPointer"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteXCPointer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfRteInetCidrStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/mplsL3VpnVrfRteEntry/mplsL3VpnVrfRteInetCidrStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "mplsL3VpnVrfRteEntry",
                    "mplsL3VpnVrfRteInetCidrStatus"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfRteInetCidrStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/object-1/mplsL3VpnVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "object-1",
                    "mplsL3VpnVrfName"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnIfConfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/object-1/mplsL3VpnIfConfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "object-1",
                    "mplsL3VpnIfConfIndex"
                  ]
                },
                "description": "Retrieve mplsL3VpnIfConfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnIfConfRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/object-1/mplsL3VpnIfConfRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "object-1",
                    "mplsL3VpnIfConfRowStatus"
                  ]
                },
                "description": "Retrieve mplsL3VpnIfConfRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/object-2/mplsL3VpnVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "object-2",
                    "mplsL3VpnVrfName"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/object-2/mplsL3VpnVrfOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "object-2",
                    "mplsL3VpnVrfOperStatus"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfPerfCurrNumRoutes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/object-1/mplsL3VpnVrfPerfCurrNumRoutes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "object-1",
                    "mplsL3VpnVrfPerfCurrNumRoutes"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfPerfCurrNumRoutes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfConfMidRteThresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/object-2/mplsL3VpnVrfConfMidRteThresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "object-2",
                    "mplsL3VpnVrfConfMidRteThresh"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfConfMidRteThresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfConfHighRteThresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/object-2/mplsL3VpnVrfConfHighRteThresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "object-2",
                    "mplsL3VpnVrfConfHighRteThresh"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfConfHighRteThresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsL3VpnVrfSecIllegalLblVltns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB/mplsL3VpnVrfRteTable/object-1/mplsL3VpnVrfSecIllegalLblVltns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-L3VPN-STD-MIB:MPLS-L3VPN-STD-MIB",
                    "mplsL3VpnVrfRteTable",
                    "object-1",
                    "mplsL3VpnVrfSecIllegalLblVltns"
                  ]
                },
                "description": "Retrieve mplsL3VpnVrfSecIllegalLblVltns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "MPLS-LDP-GENERIC-STD-MIB",
          "description": "Cisco IOS-XE MIB - MPLS-LDP-GENERIC-STD-MIB\n\nMIB data from `MPLS-LDP-GENERIC-STD-MIB` module.\n\n**Root containers:** 1 (MPLS-LDP-GENERIC-STD-MIB)\n**Paths:** 11 | **Descendants:** 10\n\nAll endpoints are read-only (GET).\n\nEndpoints: 11 | Operations: 11",
          "item": [
            {
              "name": "GET Get MPLS-LDP-GENERIC-STD-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB"
                  ]
                },
                "description": "Retrieve MPLS-LDP-GENERIC-STD-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityGenericLRTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB/mplsLdpEntityGenericLRTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB",
                    "mplsLdpEntityGenericLRTable"
                  ]
                },
                "description": "Retrieve mplsLdpEntityGenericLRTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityGenericLREntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB/mplsLdpEntityGenericLRTable/mplsLdpEntityGenericLREntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB",
                    "mplsLdpEntityGenericLRTable",
                    "mplsLdpEntityGenericLREntry"
                  ]
                },
                "description": "Retrieve mplsLdpEntityGenericLREntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB/mplsLdpEntityGenericLRTable/mplsLdpEntityGenericLREntry/mplsLdpEntityLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB",
                    "mplsLdpEntityGenericLRTable",
                    "mplsLdpEntityGenericLREntry",
                    "mplsLdpEntityLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpEntityLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB/mplsLdpEntityGenericLRTable/mplsLdpEntityGenericLREntry/mplsLdpEntityIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB",
                    "mplsLdpEntityGenericLRTable",
                    "mplsLdpEntityGenericLREntry",
                    "mplsLdpEntityIndex"
                  ]
                },
                "description": "Retrieve mplsLdpEntityIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityGenericLRMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB/mplsLdpEntityGenericLRTable/mplsLdpEntityGenericLREntry/mplsLdpEntityGenericLRMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB",
                    "mplsLdpEntityGenericLRTable",
                    "mplsLdpEntityGenericLREntry",
                    "mplsLdpEntityGenericLRMin"
                  ]
                },
                "description": "Retrieve mplsLdpEntityGenericLRMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityGenericLRMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB/mplsLdpEntityGenericLRTable/mplsLdpEntityGenericLREntry/mplsLdpEntityGenericLRMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB",
                    "mplsLdpEntityGenericLRTable",
                    "mplsLdpEntityGenericLREntry",
                    "mplsLdpEntityGenericLRMax"
                  ]
                },
                "description": "Retrieve mplsLdpEntityGenericLRMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityGenericLabelSpace",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB/mplsLdpEntityGenericLRTable/mplsLdpEntityGenericLREntry/mplsLdpEntityGenericLabelSpace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB",
                    "mplsLdpEntityGenericLRTable",
                    "mplsLdpEntityGenericLREntry",
                    "mplsLdpEntityGenericLabelSpace"
                  ]
                },
                "description": "Retrieve mplsLdpEntityGenericLabelSpace from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityGenericIfIndexOrZero",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB/mplsLdpEntityGenericLRTable/mplsLdpEntityGenericLREntry/mplsLdpEntityGenericIfIndexOrZero",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB",
                    "mplsLdpEntityGenericLRTable",
                    "mplsLdpEntityGenericLREntry",
                    "mplsLdpEntityGenericIfIndexOrZero"
                  ]
                },
                "description": "Retrieve mplsLdpEntityGenericIfIndexOrZero from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityGenericLRStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB/mplsLdpEntityGenericLRTable/mplsLdpEntityGenericLREntry/mplsLdpEntityGenericLRStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB",
                    "mplsLdpEntityGenericLRTable",
                    "mplsLdpEntityGenericLREntry",
                    "mplsLdpEntityGenericLRStorageType"
                  ]
                },
                "description": "Retrieve mplsLdpEntityGenericLRStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityGenericLRRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB/mplsLdpEntityGenericLRTable/mplsLdpEntityGenericLREntry/mplsLdpEntityGenericLRRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-GENERIC-STD-MIB:MPLS-LDP-GENERIC-STD-MIB",
                    "mplsLdpEntityGenericLRTable",
                    "mplsLdpEntityGenericLREntry",
                    "mplsLdpEntityGenericLRRowStatus"
                  ]
                },
                "description": "Retrieve mplsLdpEntityGenericLRRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "MPLS-LDP-STD-MIB",
          "description": "Cisco IOS-XE MIB - MPLS-LDP-STD-MIB\n\nMIB data from `MPLS-LDP-STD-MIB` module.\n\n**Root containers:** 1 (MPLS-LDP-STD-MIB)\n**Paths:** 145 | **Descendants:** 174\n\nAll endpoints are read-only (GET).\n\nEndpoints: 145 | Operations: 145",
          "item": [
            {
              "name": "GET Get MPLS-LDP-STD-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB"
                  ]
                },
                "description": "Retrieve MPLS-LDP-STD-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpLsrObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpLsrObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpLsrObjects"
                  ]
                },
                "description": "Retrieve mplsLdpLsrObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpLsrId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpLsrObjects/mplsLdpLsrId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpLsrObjects",
                    "mplsLdpLsrId"
                  ]
                },
                "description": "Retrieve mplsLdpLsrId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpLsrLoopDetectionCapable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpLsrObjects/mplsLdpLsrLoopDetectionCapable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpLsrObjects",
                    "mplsLdpLsrLoopDetectionCapable"
                  ]
                },
                "description": "Retrieve mplsLdpLsrLoopDetectionCapable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityObjects"
                  ]
                },
                "description": "Retrieve mplsLdpEntityObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityObjects/mplsLdpEntityLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityObjects",
                    "mplsLdpEntityLastChange"
                  ]
                },
                "description": "Retrieve mplsLdpEntityLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityObjects/mplsLdpEntityIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityObjects",
                    "mplsLdpEntityIndexNext"
                  ]
                },
                "description": "Retrieve mplsLdpEntityIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionObjects"
                  ]
                },
                "description": "Retrieve mplsLdpSessionObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionObjects/mplsLdpPeerLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionObjects",
                    "mplsLdpPeerLastChange"
                  ]
                },
                "description": "Retrieve mplsLdpPeerLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpLspFecLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionObjects/mplsLdpLspFecLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionObjects",
                    "mplsLdpLspFecLastChange"
                  ]
                },
                "description": "Retrieve mplsLdpLspFecLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsFecObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsFecObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsFecObjects"
                  ]
                },
                "description": "Retrieve mplsFecObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsFecLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsFecObjects/mplsFecLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsFecObjects",
                    "mplsFecLastChange"
                  ]
                },
                "description": "Retrieve mplsFecLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsFecIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsFecObjects/mplsFecIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsFecObjects",
                    "mplsFecIndexNext"
                  ]
                },
                "description": "Retrieve mplsFecIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable"
                  ]
                },
                "description": "Retrieve mplsLdpEntityTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry"
                  ]
                },
                "description": "Retrieve mplsLdpEntityEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpEntityLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityIndex"
                  ]
                },
                "description": "Retrieve mplsLdpEntityIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityProtocolVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityProtocolVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityProtocolVersion"
                  ]
                },
                "description": "Retrieve mplsLdpEntityProtocolVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityAdminStatus"
                  ]
                },
                "description": "Retrieve mplsLdpEntityAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityOperStatus"
                  ]
                },
                "description": "Retrieve mplsLdpEntityOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityTcpPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityTcpPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityTcpPort"
                  ]
                },
                "description": "Retrieve mplsLdpEntityTcpPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityUdpDscPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityUdpDscPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityUdpDscPort"
                  ]
                },
                "description": "Retrieve mplsLdpEntityUdpDscPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityMaxPduLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityMaxPduLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityMaxPduLength"
                  ]
                },
                "description": "Retrieve mplsLdpEntityMaxPduLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityKeepAliveHoldTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityKeepAliveHoldTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityKeepAliveHoldTimer"
                  ]
                },
                "description": "Retrieve mplsLdpEntityKeepAliveHoldTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityHelloHoldTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityHelloHoldTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityHelloHoldTimer"
                  ]
                },
                "description": "Retrieve mplsLdpEntityHelloHoldTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityInitSessionThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityInitSessionThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityInitSessionThreshold"
                  ]
                },
                "description": "Retrieve mplsLdpEntityInitSessionThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityLabelDistMethod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityLabelDistMethod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityLabelDistMethod"
                  ]
                },
                "description": "Retrieve mplsLdpEntityLabelDistMethod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityLabelRetentionMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityLabelRetentionMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityLabelRetentionMode"
                  ]
                },
                "description": "Retrieve mplsLdpEntityLabelRetentionMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityPathVectorLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityPathVectorLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityPathVectorLimit"
                  ]
                },
                "description": "Retrieve mplsLdpEntityPathVectorLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityHopCountLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityHopCountLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityHopCountLimit"
                  ]
                },
                "description": "Retrieve mplsLdpEntityHopCountLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityTransportAddrKind",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityTransportAddrKind",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityTransportAddrKind"
                  ]
                },
                "description": "Retrieve mplsLdpEntityTransportAddrKind from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityTargetPeer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityTargetPeer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityTargetPeer"
                  ]
                },
                "description": "Retrieve mplsLdpEntityTargetPeer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityTargetPeerAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityTargetPeerAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityTargetPeerAddrType"
                  ]
                },
                "description": "Retrieve mplsLdpEntityTargetPeerAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityTargetPeerAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityTargetPeerAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityTargetPeerAddr"
                  ]
                },
                "description": "Retrieve mplsLdpEntityTargetPeerAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityLabelType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityLabelType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityLabelType"
                  ]
                },
                "description": "Retrieve mplsLdpEntityLabelType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityDiscontinuityTime"
                  ]
                },
                "description": "Retrieve mplsLdpEntityDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityStorageType"
                  ]
                },
                "description": "Retrieve mplsLdpEntityStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityRowStatus"
                  ]
                },
                "description": "Retrieve mplsLdpEntityRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityStatsSessionAttempts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityStatsSessionAttempts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityStatsSessionAttempts"
                  ]
                },
                "description": "Retrieve mplsLdpEntityStatsSessionAttempts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityStatsSessionRejectedNoHelloErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityStatsSessionRejectedNoHelloErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityStatsSessionRejectedNoHelloErrors"
                  ]
                },
                "description": "Retrieve mplsLdpEntityStatsSessionRejectedNoHelloErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityStatsSessionRejectedAdErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityStatsSessionRejectedAdErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityStatsSessionRejectedAdErrors"
                  ]
                },
                "description": "Retrieve mplsLdpEntityStatsSessionRejectedAdErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityStatsSessionRejectedMaxPduErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityStatsSessionRejectedMaxPduErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityStatsSessionRejectedMaxPduErrors"
                  ]
                },
                "description": "Retrieve mplsLdpEntityStatsSessionRejectedMaxPduErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityStatsSessionRejectedLRErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityStatsSessionRejectedLRErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityStatsSessionRejectedLRErrors"
                  ]
                },
                "description": "Retrieve mplsLdpEntityStatsSessionRejectedLRErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityStatsBadLdpIdentifierErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityStatsBadLdpIdentifierErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityStatsBadLdpIdentifierErrors"
                  ]
                },
                "description": "Retrieve mplsLdpEntityStatsBadLdpIdentifierErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityStatsBadPduLengthErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityStatsBadPduLengthErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityStatsBadPduLengthErrors"
                  ]
                },
                "description": "Retrieve mplsLdpEntityStatsBadPduLengthErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityStatsBadMessageLengthErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityStatsBadMessageLengthErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityStatsBadMessageLengthErrors"
                  ]
                },
                "description": "Retrieve mplsLdpEntityStatsBadMessageLengthErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityStatsBadTlvLengthErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityStatsBadTlvLengthErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityStatsBadTlvLengthErrors"
                  ]
                },
                "description": "Retrieve mplsLdpEntityStatsBadTlvLengthErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityStatsMalformedTlvValueErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityStatsMalformedTlvValueErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityStatsMalformedTlvValueErrors"
                  ]
                },
                "description": "Retrieve mplsLdpEntityStatsMalformedTlvValueErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityStatsKeepAliveTimerExpErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityStatsKeepAliveTimerExpErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityStatsKeepAliveTimerExpErrors"
                  ]
                },
                "description": "Retrieve mplsLdpEntityStatsKeepAliveTimerExpErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityStatsShutdownReceivedNotifications",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityStatsShutdownReceivedNotifications",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityStatsShutdownReceivedNotifications"
                  ]
                },
                "description": "Retrieve mplsLdpEntityStatsShutdownReceivedNotifications from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityStatsShutdownSentNotifications",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpEntityTable/mplsLdpEntityEntry/mplsLdpEntityStatsShutdownSentNotifications",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpEntityTable",
                    "mplsLdpEntityEntry",
                    "mplsLdpEntityStatsShutdownSentNotifications"
                  ]
                },
                "description": "Retrieve mplsLdpEntityStatsShutdownSentNotifications from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable"
                  ]
                },
                "description": "Retrieve mplsLdpPeerTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry"
                  ]
                },
                "description": "Retrieve mplsLdpPeerEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpEntityLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpEntityLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpEntityLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpEntityIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpEntityIndex"
                  ]
                },
                "description": "Retrieve mplsLdpEntityIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpPeerLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpPeerLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpPeerLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerLabelDistMethod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpPeerLabelDistMethod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpPeerLabelDistMethod"
                  ]
                },
                "description": "Retrieve mplsLdpPeerLabelDistMethod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerPathVectorLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpPeerPathVectorLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpPeerPathVectorLimit"
                  ]
                },
                "description": "Retrieve mplsLdpPeerPathVectorLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerTransportAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpPeerTransportAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpPeerTransportAddrType"
                  ]
                },
                "description": "Retrieve mplsLdpPeerTransportAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerTransportAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpPeerTransportAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpPeerTransportAddr"
                  ]
                },
                "description": "Retrieve mplsLdpPeerTransportAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionStateLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpSessionStateLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpSessionStateLastChange"
                  ]
                },
                "description": "Retrieve mplsLdpSessionStateLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpSessionState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpSessionState"
                  ]
                },
                "description": "Retrieve mplsLdpSessionState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionRole",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpSessionRole",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpSessionRole"
                  ]
                },
                "description": "Retrieve mplsLdpSessionRole from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionProtocolVersion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpSessionProtocolVersion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpSessionProtocolVersion"
                  ]
                },
                "description": "Retrieve mplsLdpSessionProtocolVersion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionKeepAliveHoldTimeRem",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpSessionKeepAliveHoldTimeRem",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpSessionKeepAliveHoldTimeRem"
                  ]
                },
                "description": "Retrieve mplsLdpSessionKeepAliveHoldTimeRem from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionKeepAliveTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpSessionKeepAliveTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpSessionKeepAliveTime"
                  ]
                },
                "description": "Retrieve mplsLdpSessionKeepAliveTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionMaxPduLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpSessionMaxPduLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpSessionMaxPduLength"
                  ]
                },
                "description": "Retrieve mplsLdpSessionMaxPduLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpSessionDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpSessionDiscontinuityTime"
                  ]
                },
                "description": "Retrieve mplsLdpSessionDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionStatsUnknownMesTypeErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpSessionStatsUnknownMesTypeErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpSessionStatsUnknownMesTypeErrors"
                  ]
                },
                "description": "Retrieve mplsLdpSessionStatsUnknownMesTypeErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionStatsUnknownTlvErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpPeerTable/mplsLdpPeerEntry/mplsLdpSessionStatsUnknownTlvErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpPeerTable",
                    "mplsLdpPeerEntry",
                    "mplsLdpSessionStatsUnknownTlvErrors"
                  ]
                },
                "description": "Retrieve mplsLdpSessionStatsUnknownTlvErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpHelloAdjacencyTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpHelloAdjacencyTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpHelloAdjacencyTable"
                  ]
                },
                "description": "Retrieve mplsLdpHelloAdjacencyTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpHelloAdjacencyEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpHelloAdjacencyTable/mplsLdpHelloAdjacencyEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpHelloAdjacencyTable",
                    "mplsLdpHelloAdjacencyEntry"
                  ]
                },
                "description": "Retrieve mplsLdpHelloAdjacencyEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpHelloAdjacencyTable/mplsLdpHelloAdjacencyEntry/mplsLdpEntityLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpHelloAdjacencyTable",
                    "mplsLdpHelloAdjacencyEntry",
                    "mplsLdpEntityLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpEntityLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpHelloAdjacencyTable/mplsLdpHelloAdjacencyEntry/mplsLdpEntityIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpHelloAdjacencyTable",
                    "mplsLdpHelloAdjacencyEntry",
                    "mplsLdpEntityIndex"
                  ]
                },
                "description": "Retrieve mplsLdpEntityIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpHelloAdjacencyTable/mplsLdpHelloAdjacencyEntry/mplsLdpPeerLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpHelloAdjacencyTable",
                    "mplsLdpHelloAdjacencyEntry",
                    "mplsLdpPeerLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpPeerLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpHelloAdjacencyIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpHelloAdjacencyTable/mplsLdpHelloAdjacencyEntry/mplsLdpHelloAdjacencyIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpHelloAdjacencyTable",
                    "mplsLdpHelloAdjacencyEntry",
                    "mplsLdpHelloAdjacencyIndex"
                  ]
                },
                "description": "Retrieve mplsLdpHelloAdjacencyIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpHelloAdjacencyHoldTimeRem",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpHelloAdjacencyTable/mplsLdpHelloAdjacencyEntry/mplsLdpHelloAdjacencyHoldTimeRem",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpHelloAdjacencyTable",
                    "mplsLdpHelloAdjacencyEntry",
                    "mplsLdpHelloAdjacencyHoldTimeRem"
                  ]
                },
                "description": "Retrieve mplsLdpHelloAdjacencyHoldTimeRem from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpHelloAdjacencyHoldTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpHelloAdjacencyTable/mplsLdpHelloAdjacencyEntry/mplsLdpHelloAdjacencyHoldTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpHelloAdjacencyTable",
                    "mplsLdpHelloAdjacencyEntry",
                    "mplsLdpHelloAdjacencyHoldTime"
                  ]
                },
                "description": "Retrieve mplsLdpHelloAdjacencyHoldTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpHelloAdjacencyType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpHelloAdjacencyTable/mplsLdpHelloAdjacencyEntry/mplsLdpHelloAdjacencyType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpHelloAdjacencyTable",
                    "mplsLdpHelloAdjacencyEntry",
                    "mplsLdpHelloAdjacencyType"
                  ]
                },
                "description": "Retrieve mplsLdpHelloAdjacencyType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentLdpLspTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsInSegmentLdpLspTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsInSegmentLdpLspTable"
                  ]
                },
                "description": "Retrieve mplsInSegmentLdpLspTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentLdpLspEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsInSegmentLdpLspTable/mplsInSegmentLdpLspEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsInSegmentLdpLspTable",
                    "mplsInSegmentLdpLspEntry"
                  ]
                },
                "description": "Retrieve mplsInSegmentLdpLspEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsInSegmentLdpLspTable/mplsInSegmentLdpLspEntry/mplsLdpEntityLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsInSegmentLdpLspTable",
                    "mplsInSegmentLdpLspEntry",
                    "mplsLdpEntityLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpEntityLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsInSegmentLdpLspTable/mplsInSegmentLdpLspEntry/mplsLdpEntityIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsInSegmentLdpLspTable",
                    "mplsInSegmentLdpLspEntry",
                    "mplsLdpEntityIndex"
                  ]
                },
                "description": "Retrieve mplsLdpEntityIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsInSegmentLdpLspTable/mplsInSegmentLdpLspEntry/mplsLdpPeerLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsInSegmentLdpLspTable",
                    "mplsInSegmentLdpLspEntry",
                    "mplsLdpPeerLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpPeerLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentLdpLspIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsInSegmentLdpLspTable/mplsInSegmentLdpLspEntry/mplsInSegmentLdpLspIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsInSegmentLdpLspTable",
                    "mplsInSegmentLdpLspEntry",
                    "mplsInSegmentLdpLspIndex"
                  ]
                },
                "description": "Retrieve mplsInSegmentLdpLspIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentLdpLspLabelType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsInSegmentLdpLspTable/mplsInSegmentLdpLspEntry/mplsInSegmentLdpLspLabelType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsInSegmentLdpLspTable",
                    "mplsInSegmentLdpLspEntry",
                    "mplsInSegmentLdpLspLabelType"
                  ]
                },
                "description": "Retrieve mplsInSegmentLdpLspLabelType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentLdpLspType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsInSegmentLdpLspTable/mplsInSegmentLdpLspEntry/mplsInSegmentLdpLspType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsInSegmentLdpLspTable",
                    "mplsInSegmentLdpLspEntry",
                    "mplsInSegmentLdpLspType"
                  ]
                },
                "description": "Retrieve mplsInSegmentLdpLspType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentLdpLspTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsOutSegmentLdpLspTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsOutSegmentLdpLspTable"
                  ]
                },
                "description": "Retrieve mplsOutSegmentLdpLspTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentLdpLspEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsOutSegmentLdpLspTable/mplsOutSegmentLdpLspEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsOutSegmentLdpLspTable",
                    "mplsOutSegmentLdpLspEntry"
                  ]
                },
                "description": "Retrieve mplsOutSegmentLdpLspEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsOutSegmentLdpLspTable/mplsOutSegmentLdpLspEntry/mplsLdpEntityLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsOutSegmentLdpLspTable",
                    "mplsOutSegmentLdpLspEntry",
                    "mplsLdpEntityLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpEntityLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsOutSegmentLdpLspTable/mplsOutSegmentLdpLspEntry/mplsLdpEntityIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsOutSegmentLdpLspTable",
                    "mplsOutSegmentLdpLspEntry",
                    "mplsLdpEntityIndex"
                  ]
                },
                "description": "Retrieve mplsLdpEntityIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsOutSegmentLdpLspTable/mplsOutSegmentLdpLspEntry/mplsLdpPeerLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsOutSegmentLdpLspTable",
                    "mplsOutSegmentLdpLspEntry",
                    "mplsLdpPeerLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpPeerLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentLdpLspIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsOutSegmentLdpLspTable/mplsOutSegmentLdpLspEntry/mplsOutSegmentLdpLspIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsOutSegmentLdpLspTable",
                    "mplsOutSegmentLdpLspEntry",
                    "mplsOutSegmentLdpLspIndex"
                  ]
                },
                "description": "Retrieve mplsOutSegmentLdpLspIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentLdpLspLabelType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsOutSegmentLdpLspTable/mplsOutSegmentLdpLspEntry/mplsOutSegmentLdpLspLabelType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsOutSegmentLdpLspTable",
                    "mplsOutSegmentLdpLspEntry",
                    "mplsOutSegmentLdpLspLabelType"
                  ]
                },
                "description": "Retrieve mplsOutSegmentLdpLspLabelType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentLdpLspType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsOutSegmentLdpLspTable/mplsOutSegmentLdpLspEntry/mplsOutSegmentLdpLspType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsOutSegmentLdpLspTable",
                    "mplsOutSegmentLdpLspEntry",
                    "mplsOutSegmentLdpLspType"
                  ]
                },
                "description": "Retrieve mplsOutSegmentLdpLspType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsFecTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsFecTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsFecTable"
                  ]
                },
                "description": "Retrieve mplsFecTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsFecEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsFecTable/mplsFecEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsFecTable",
                    "mplsFecEntry"
                  ]
                },
                "description": "Retrieve mplsFecEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsFecIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsFecTable/mplsFecEntry/mplsFecIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsFecTable",
                    "mplsFecEntry",
                    "mplsFecIndex"
                  ]
                },
                "description": "Retrieve mplsFecIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsFecType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsFecTable/mplsFecEntry/mplsFecType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsFecTable",
                    "mplsFecEntry",
                    "mplsFecType"
                  ]
                },
                "description": "Retrieve mplsFecType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsFecAddrPrefixLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsFecTable/mplsFecEntry/mplsFecAddrPrefixLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsFecTable",
                    "mplsFecEntry",
                    "mplsFecAddrPrefixLength"
                  ]
                },
                "description": "Retrieve mplsFecAddrPrefixLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsFecAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsFecTable/mplsFecEntry/mplsFecAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsFecTable",
                    "mplsFecEntry",
                    "mplsFecAddrType"
                  ]
                },
                "description": "Retrieve mplsFecAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsFecAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsFecTable/mplsFecEntry/mplsFecAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsFecTable",
                    "mplsFecEntry",
                    "mplsFecAddr"
                  ]
                },
                "description": "Retrieve mplsFecAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsFecStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsFecTable/mplsFecEntry/mplsFecStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsFecTable",
                    "mplsFecEntry",
                    "mplsFecStorageType"
                  ]
                },
                "description": "Retrieve mplsFecStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsFecRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsFecTable/mplsFecEntry/mplsFecRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsFecTable",
                    "mplsFecEntry",
                    "mplsFecRowStatus"
                  ]
                },
                "description": "Retrieve mplsFecRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpLspFecTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpLspFecTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpLspFecTable"
                  ]
                },
                "description": "Retrieve mplsLdpLspFecTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpLspFecEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpLspFecTable/mplsLdpLspFecEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpLspFecTable",
                    "mplsLdpLspFecEntry"
                  ]
                },
                "description": "Retrieve mplsLdpLspFecEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpLspFecTable/mplsLdpLspFecEntry/mplsLdpEntityLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpLspFecTable",
                    "mplsLdpLspFecEntry",
                    "mplsLdpEntityLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpEntityLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpLspFecTable/mplsLdpLspFecEntry/mplsLdpEntityIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpLspFecTable",
                    "mplsLdpLspFecEntry",
                    "mplsLdpEntityIndex"
                  ]
                },
                "description": "Retrieve mplsLdpEntityIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpLspFecTable/mplsLdpLspFecEntry/mplsLdpPeerLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpLspFecTable",
                    "mplsLdpLspFecEntry",
                    "mplsLdpPeerLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpPeerLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpLspFecSegment",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpLspFecTable/mplsLdpLspFecEntry/mplsLdpLspFecSegment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpLspFecTable",
                    "mplsLdpLspFecEntry",
                    "mplsLdpLspFecSegment"
                  ]
                },
                "description": "Retrieve mplsLdpLspFecSegment from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpLspFecSegmentIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpLspFecTable/mplsLdpLspFecEntry/mplsLdpLspFecSegmentIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpLspFecTable",
                    "mplsLdpLspFecEntry",
                    "mplsLdpLspFecSegmentIndex"
                  ]
                },
                "description": "Retrieve mplsLdpLspFecSegmentIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpLspFecIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpLspFecTable/mplsLdpLspFecEntry/mplsLdpLspFecIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpLspFecTable",
                    "mplsLdpLspFecEntry",
                    "mplsLdpLspFecIndex"
                  ]
                },
                "description": "Retrieve mplsLdpLspFecIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpLspFecStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpLspFecTable/mplsLdpLspFecEntry/mplsLdpLspFecStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpLspFecTable",
                    "mplsLdpLspFecEntry",
                    "mplsLdpLspFecStorageType"
                  ]
                },
                "description": "Retrieve mplsLdpLspFecStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpLspFecRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpLspFecTable/mplsLdpLspFecEntry/mplsLdpLspFecRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpLspFecTable",
                    "mplsLdpLspFecEntry",
                    "mplsLdpLspFecRowStatus"
                  ]
                },
                "description": "Retrieve mplsLdpLspFecRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionPeerAddrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable"
                  ]
                },
                "description": "Retrieve mplsLdpSessionPeerAddrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionPeerAddrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/mplsLdpSessionPeerAddrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "mplsLdpSessionPeerAddrEntry"
                  ]
                },
                "description": "Retrieve mplsLdpSessionPeerAddrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/mplsLdpSessionPeerAddrEntry/mplsLdpEntityLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "mplsLdpSessionPeerAddrEntry",
                    "mplsLdpEntityLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpEntityLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/mplsLdpSessionPeerAddrEntry/mplsLdpEntityIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "mplsLdpSessionPeerAddrEntry",
                    "mplsLdpEntityIndex"
                  ]
                },
                "description": "Retrieve mplsLdpEntityIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/mplsLdpSessionPeerAddrEntry/mplsLdpPeerLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "mplsLdpSessionPeerAddrEntry",
                    "mplsLdpPeerLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpPeerLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionPeerAddrIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/mplsLdpSessionPeerAddrEntry/mplsLdpSessionPeerAddrIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "mplsLdpSessionPeerAddrEntry",
                    "mplsLdpSessionPeerAddrIndex"
                  ]
                },
                "description": "Retrieve mplsLdpSessionPeerAddrIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionPeerNextHopAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/mplsLdpSessionPeerAddrEntry/mplsLdpSessionPeerNextHopAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "mplsLdpSessionPeerAddrEntry",
                    "mplsLdpSessionPeerNextHopAddrType"
                  ]
                },
                "description": "Retrieve mplsLdpSessionPeerNextHopAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionPeerNextHopAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/mplsLdpSessionPeerAddrEntry/mplsLdpSessionPeerNextHopAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "mplsLdpSessionPeerAddrEntry",
                    "mplsLdpSessionPeerNextHopAddr"
                  ]
                },
                "description": "Retrieve mplsLdpSessionPeerNextHopAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-1/mplsLdpEntityLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-1",
                    "mplsLdpEntityLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpEntityLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-1/mplsLdpEntityIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-1",
                    "mplsLdpEntityIndex"
                  ]
                },
                "description": "Retrieve mplsLdpEntityIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityInitSessionThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-1/mplsLdpEntityInitSessionThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-1",
                    "mplsLdpEntityInitSessionThreshold"
                  ]
                },
                "description": "Retrieve mplsLdpEntityInitSessionThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityPathVectorLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-1/mplsLdpEntityPathVectorLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-1",
                    "mplsLdpEntityPathVectorLimit"
                  ]
                },
                "description": "Retrieve mplsLdpEntityPathVectorLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-2/mplsLdpEntityLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-2",
                    "mplsLdpEntityLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpEntityLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-2/mplsLdpEntityIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-2",
                    "mplsLdpEntityIndex"
                  ]
                },
                "description": "Retrieve mplsLdpEntityIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-2/mplsLdpPeerLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-2",
                    "mplsLdpPeerLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpPeerLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerPathVectorLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-2/mplsLdpPeerPathVectorLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-2",
                    "mplsLdpPeerPathVectorLimit"
                  ]
                },
                "description": "Retrieve mplsLdpPeerPathVectorLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-1/mplsLdpPeerLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-1",
                    "mplsLdpPeerLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpPeerLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-1/mplsLdpSessionState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-1",
                    "mplsLdpSessionState"
                  ]
                },
                "description": "Retrieve mplsLdpSessionState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-2/mplsLdpSessionDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-2",
                    "mplsLdpSessionDiscontinuityTime"
                  ]
                },
                "description": "Retrieve mplsLdpSessionDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-3/mplsLdpEntityLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-3",
                    "mplsLdpEntityLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpEntityLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-3/mplsLdpEntityIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-3",
                    "mplsLdpEntityIndex"
                  ]
                },
                "description": "Retrieve mplsLdpEntityIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-3/mplsLdpPeerLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-3",
                    "mplsLdpPeerLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpPeerLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionStatsUnknownMesTypeErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-3/mplsLdpSessionStatsUnknownMesTypeErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-3",
                    "mplsLdpSessionStatsUnknownMesTypeErrors"
                  ]
                },
                "description": "Retrieve mplsLdpSessionStatsUnknownMesTypeErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-4/mplsLdpEntityLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-4",
                    "mplsLdpEntityLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpEntityLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpEntityIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-4/mplsLdpEntityIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-4",
                    "mplsLdpEntityIndex"
                  ]
                },
                "description": "Retrieve mplsLdpEntityIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpPeerLdpId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-4/mplsLdpPeerLdpId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-4",
                    "mplsLdpPeerLdpId"
                  ]
                },
                "description": "Retrieve mplsLdpPeerLdpId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLdpSessionStatsUnknownTlvErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB/mplsLdpSessionPeerAddrTable/object-4/mplsLdpSessionStatsUnknownTlvErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LDP-STD-MIB:MPLS-LDP-STD-MIB",
                    "mplsLdpSessionPeerAddrTable",
                    "object-4",
                    "mplsLdpSessionStatsUnknownTlvErrors"
                  ]
                },
                "description": "Retrieve mplsLdpSessionStatsUnknownTlvErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "MPLS-LSR-STD-MIB",
          "description": "Cisco IOS-XE MIB - MPLS-LSR-STD-MIB\n\nMIB data from `MPLS-LSR-STD-MIB` module.\n\n**Root containers:** 1 (MPLS-LSR-STD-MIB)\n**Paths:** 97 | **Descendants:** 106\n\nAll endpoints are read-only (GET).\n\nEndpoints: 97 | Operations: 97",
          "item": [
            {
              "name": "GET Get MPLS-LSR-STD-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB"
                  ]
                },
                "description": "Retrieve MPLS-LSR-STD-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLsrObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsLsrObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsLsrObjects"
                  ]
                },
                "description": "Retrieve mplsLsrObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsLsrObjects/mplsInSegmentIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsLsrObjects",
                    "mplsInSegmentIndexNext"
                  ]
                },
                "description": "Retrieve mplsInSegmentIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsLsrObjects/mplsOutSegmentIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsLsrObjects",
                    "mplsOutSegmentIndexNext"
                  ]
                },
                "description": "Retrieve mplsOutSegmentIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsLsrObjects/mplsXCIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsLsrObjects",
                    "mplsXCIndexNext"
                  ]
                },
                "description": "Retrieve mplsXCIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsMaxLabelStackDepth",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsLsrObjects/mplsMaxLabelStackDepth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsLsrObjects",
                    "mplsMaxLabelStackDepth"
                  ]
                },
                "description": "Retrieve mplsMaxLabelStackDepth from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLabelStackIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsLsrObjects/mplsLabelStackIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsLsrObjects",
                    "mplsLabelStackIndexNext"
                  ]
                },
                "description": "Retrieve mplsLabelStackIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCNotificationsEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsLsrObjects/mplsXCNotificationsEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsLsrObjects",
                    "mplsXCNotificationsEnable"
                  ]
                },
                "description": "Retrieve mplsXCNotificationsEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInterfaceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInterfaceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInterfaceTable"
                  ]
                },
                "description": "Retrieve mplsInterfaceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInterfaceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInterfaceTable/mplsInterfaceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInterfaceTable",
                    "mplsInterfaceEntry"
                  ]
                },
                "description": "Retrieve mplsInterfaceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInterfaceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInterfaceTable/mplsInterfaceEntry/mplsInterfaceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInterfaceTable",
                    "mplsInterfaceEntry",
                    "mplsInterfaceIndex"
                  ]
                },
                "description": "Retrieve mplsInterfaceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInterfaceLabelMinIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInterfaceTable/mplsInterfaceEntry/mplsInterfaceLabelMinIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInterfaceTable",
                    "mplsInterfaceEntry",
                    "mplsInterfaceLabelMinIn"
                  ]
                },
                "description": "Retrieve mplsInterfaceLabelMinIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInterfaceLabelMaxIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInterfaceTable/mplsInterfaceEntry/mplsInterfaceLabelMaxIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInterfaceTable",
                    "mplsInterfaceEntry",
                    "mplsInterfaceLabelMaxIn"
                  ]
                },
                "description": "Retrieve mplsInterfaceLabelMaxIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInterfaceLabelMinOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInterfaceTable/mplsInterfaceEntry/mplsInterfaceLabelMinOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInterfaceTable",
                    "mplsInterfaceEntry",
                    "mplsInterfaceLabelMinOut"
                  ]
                },
                "description": "Retrieve mplsInterfaceLabelMinOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInterfaceLabelMaxOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInterfaceTable/mplsInterfaceEntry/mplsInterfaceLabelMaxOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInterfaceTable",
                    "mplsInterfaceEntry",
                    "mplsInterfaceLabelMaxOut"
                  ]
                },
                "description": "Retrieve mplsInterfaceLabelMaxOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInterfaceTotalBandwidth",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInterfaceTable/mplsInterfaceEntry/mplsInterfaceTotalBandwidth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInterfaceTable",
                    "mplsInterfaceEntry",
                    "mplsInterfaceTotalBandwidth"
                  ]
                },
                "description": "Retrieve mplsInterfaceTotalBandwidth from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInterfaceAvailableBandwidth",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInterfaceTable/mplsInterfaceEntry/mplsInterfaceAvailableBandwidth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInterfaceTable",
                    "mplsInterfaceEntry",
                    "mplsInterfaceAvailableBandwidth"
                  ]
                },
                "description": "Retrieve mplsInterfaceAvailableBandwidth from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInterfaceLabelParticipationType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInterfaceTable/mplsInterfaceEntry/mplsInterfaceLabelParticipationType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInterfaceTable",
                    "mplsInterfaceEntry",
                    "mplsInterfaceLabelParticipationType"
                  ]
                },
                "description": "Retrieve mplsInterfaceLabelParticipationType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInterfacePerfInLabelsInUse",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInterfaceTable/mplsInterfaceEntry/mplsInterfacePerfInLabelsInUse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInterfaceTable",
                    "mplsInterfaceEntry",
                    "mplsInterfacePerfInLabelsInUse"
                  ]
                },
                "description": "Retrieve mplsInterfacePerfInLabelsInUse from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInterfacePerfInLabelLookupFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInterfaceTable/mplsInterfaceEntry/mplsInterfacePerfInLabelLookupFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInterfaceTable",
                    "mplsInterfaceEntry",
                    "mplsInterfacePerfInLabelLookupFailures"
                  ]
                },
                "description": "Retrieve mplsInterfacePerfInLabelLookupFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInterfacePerfOutLabelsInUse",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInterfaceTable/mplsInterfaceEntry/mplsInterfacePerfOutLabelsInUse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInterfaceTable",
                    "mplsInterfaceEntry",
                    "mplsInterfacePerfOutLabelsInUse"
                  ]
                },
                "description": "Retrieve mplsInterfacePerfOutLabelsInUse from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInterfacePerfOutFragmentedPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInterfaceTable/mplsInterfaceEntry/mplsInterfacePerfOutFragmentedPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInterfaceTable",
                    "mplsInterfaceEntry",
                    "mplsInterfacePerfOutFragmentedPkts"
                  ]
                },
                "description": "Retrieve mplsInterfacePerfOutFragmentedPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable"
                  ]
                },
                "description": "Retrieve mplsInSegmentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry"
                  ]
                },
                "description": "Retrieve mplsInSegmentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentIndex"
                  ]
                },
                "description": "Retrieve mplsInSegmentIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentInterface"
                  ]
                },
                "description": "Retrieve mplsInSegmentInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentLabel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentLabel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentLabel"
                  ]
                },
                "description": "Retrieve mplsInSegmentLabel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentLabelPtr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentLabelPtr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentLabelPtr"
                  ]
                },
                "description": "Retrieve mplsInSegmentLabelPtr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentNPop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentNPop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentNPop"
                  ]
                },
                "description": "Retrieve mplsInSegmentNPop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentAddrFamily",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentAddrFamily",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentAddrFamily"
                  ]
                },
                "description": "Retrieve mplsInSegmentAddrFamily from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentXCIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentXCIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentXCIndex"
                  ]
                },
                "description": "Retrieve mplsInSegmentXCIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentOwner"
                  ]
                },
                "description": "Retrieve mplsInSegmentOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentTrafficParamPtr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentTrafficParamPtr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentTrafficParamPtr"
                  ]
                },
                "description": "Retrieve mplsInSegmentTrafficParamPtr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentRowStatus"
                  ]
                },
                "description": "Retrieve mplsInSegmentRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentStorageType"
                  ]
                },
                "description": "Retrieve mplsInSegmentStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentPerfOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentPerfOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentPerfOctets"
                  ]
                },
                "description": "Retrieve mplsInSegmentPerfOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentPerfPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentPerfPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentPerfPackets"
                  ]
                },
                "description": "Retrieve mplsInSegmentPerfPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentPerfErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentPerfErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentPerfErrors"
                  ]
                },
                "description": "Retrieve mplsInSegmentPerfErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentPerfDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentPerfDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentPerfDiscards"
                  ]
                },
                "description": "Retrieve mplsInSegmentPerfDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentPerfHCOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentPerfHCOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentPerfHCOctets"
                  ]
                },
                "description": "Retrieve mplsInSegmentPerfHCOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentPerfDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentTable/mplsInSegmentEntry/mplsInSegmentPerfDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentTable",
                    "mplsInSegmentEntry",
                    "mplsInSegmentPerfDiscontinuityTime"
                  ]
                },
                "description": "Retrieve mplsInSegmentPerfDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable"
                  ]
                },
                "description": "Retrieve mplsOutSegmentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry"
                  ]
                },
                "description": "Retrieve mplsOutSegmentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentIndex"
                  ]
                },
                "description": "Retrieve mplsOutSegmentIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentInterface"
                  ]
                },
                "description": "Retrieve mplsOutSegmentInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentPushTopLabel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentPushTopLabel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentPushTopLabel"
                  ]
                },
                "description": "Retrieve mplsOutSegmentPushTopLabel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentTopLabel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentTopLabel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentTopLabel"
                  ]
                },
                "description": "Retrieve mplsOutSegmentTopLabel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentTopLabelPtr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentTopLabelPtr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentTopLabelPtr"
                  ]
                },
                "description": "Retrieve mplsOutSegmentTopLabelPtr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentNextHopAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentNextHopAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentNextHopAddrType"
                  ]
                },
                "description": "Retrieve mplsOutSegmentNextHopAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentNextHopAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentNextHopAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentNextHopAddr"
                  ]
                },
                "description": "Retrieve mplsOutSegmentNextHopAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentXCIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentXCIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentXCIndex"
                  ]
                },
                "description": "Retrieve mplsOutSegmentXCIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentOwner"
                  ]
                },
                "description": "Retrieve mplsOutSegmentOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentTrafficParamPtr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentTrafficParamPtr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentTrafficParamPtr"
                  ]
                },
                "description": "Retrieve mplsOutSegmentTrafficParamPtr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentRowStatus"
                  ]
                },
                "description": "Retrieve mplsOutSegmentRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentStorageType"
                  ]
                },
                "description": "Retrieve mplsOutSegmentStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentPerfOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentPerfOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentPerfOctets"
                  ]
                },
                "description": "Retrieve mplsOutSegmentPerfOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentPerfPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentPerfPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentPerfPackets"
                  ]
                },
                "description": "Retrieve mplsOutSegmentPerfPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentPerfErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentPerfErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentPerfErrors"
                  ]
                },
                "description": "Retrieve mplsOutSegmentPerfErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentPerfDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentPerfDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentPerfDiscards"
                  ]
                },
                "description": "Retrieve mplsOutSegmentPerfDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentPerfHCOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentPerfHCOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentPerfHCOctets"
                  ]
                },
                "description": "Retrieve mplsOutSegmentPerfHCOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsOutSegmentPerfDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsOutSegmentTable/mplsOutSegmentEntry/mplsOutSegmentPerfDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsOutSegmentTable",
                    "mplsOutSegmentEntry",
                    "mplsOutSegmentPerfDiscontinuityTime"
                  ]
                },
                "description": "Retrieve mplsOutSegmentPerfDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsXCTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsXCTable"
                  ]
                },
                "description": "Retrieve mplsXCTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsXCTable/mplsXCEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsXCTable",
                    "mplsXCEntry"
                  ]
                },
                "description": "Retrieve mplsXCEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsXCTable/mplsXCEntry/mplsXCIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsXCTable",
                    "mplsXCEntry",
                    "mplsXCIndex"
                  ]
                },
                "description": "Retrieve mplsXCIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCInSegmentIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsXCTable/mplsXCEntry/mplsXCInSegmentIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsXCTable",
                    "mplsXCEntry",
                    "mplsXCInSegmentIndex"
                  ]
                },
                "description": "Retrieve mplsXCInSegmentIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCOutSegmentIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsXCTable/mplsXCEntry/mplsXCOutSegmentIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsXCTable",
                    "mplsXCEntry",
                    "mplsXCOutSegmentIndex"
                  ]
                },
                "description": "Retrieve mplsXCOutSegmentIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCLspId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsXCTable/mplsXCEntry/mplsXCLspId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsXCTable",
                    "mplsXCEntry",
                    "mplsXCLspId"
                  ]
                },
                "description": "Retrieve mplsXCLspId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCLabelStackIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsXCTable/mplsXCEntry/mplsXCLabelStackIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsXCTable",
                    "mplsXCEntry",
                    "mplsXCLabelStackIndex"
                  ]
                },
                "description": "Retrieve mplsXCLabelStackIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsXCTable/mplsXCEntry/mplsXCOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsXCTable",
                    "mplsXCEntry",
                    "mplsXCOwner"
                  ]
                },
                "description": "Retrieve mplsXCOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsXCTable/mplsXCEntry/mplsXCRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsXCTable",
                    "mplsXCEntry",
                    "mplsXCRowStatus"
                  ]
                },
                "description": "Retrieve mplsXCRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsXCTable/mplsXCEntry/mplsXCStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsXCTable",
                    "mplsXCEntry",
                    "mplsXCStorageType"
                  ]
                },
                "description": "Retrieve mplsXCStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsXCTable/mplsXCEntry/mplsXCAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsXCTable",
                    "mplsXCEntry",
                    "mplsXCAdminStatus"
                  ]
                },
                "description": "Retrieve mplsXCAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsXCTable/mplsXCEntry/mplsXCOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsXCTable",
                    "mplsXCEntry",
                    "mplsXCOperStatus"
                  ]
                },
                "description": "Retrieve mplsXCOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLabelStackTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsLabelStackTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsLabelStackTable"
                  ]
                },
                "description": "Retrieve mplsLabelStackTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLabelStackEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsLabelStackTable/mplsLabelStackEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsLabelStackTable",
                    "mplsLabelStackEntry"
                  ]
                },
                "description": "Retrieve mplsLabelStackEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLabelStackIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsLabelStackTable/mplsLabelStackEntry/mplsLabelStackIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsLabelStackTable",
                    "mplsLabelStackEntry",
                    "mplsLabelStackIndex"
                  ]
                },
                "description": "Retrieve mplsLabelStackIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLabelStackLabelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsLabelStackTable/mplsLabelStackEntry/mplsLabelStackLabelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsLabelStackTable",
                    "mplsLabelStackEntry",
                    "mplsLabelStackLabelIndex"
                  ]
                },
                "description": "Retrieve mplsLabelStackLabelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLabelStackLabel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsLabelStackTable/mplsLabelStackEntry/mplsLabelStackLabel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsLabelStackTable",
                    "mplsLabelStackEntry",
                    "mplsLabelStackLabel"
                  ]
                },
                "description": "Retrieve mplsLabelStackLabel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLabelStackLabelPtr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsLabelStackTable/mplsLabelStackEntry/mplsLabelStackLabelPtr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsLabelStackTable",
                    "mplsLabelStackEntry",
                    "mplsLabelStackLabelPtr"
                  ]
                },
                "description": "Retrieve mplsLabelStackLabelPtr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLabelStackRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsLabelStackTable/mplsLabelStackEntry/mplsLabelStackRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsLabelStackTable",
                    "mplsLabelStackEntry",
                    "mplsLabelStackRowStatus"
                  ]
                },
                "description": "Retrieve mplsLabelStackRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsLabelStackStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsLabelStackTable/mplsLabelStackEntry/mplsLabelStackStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsLabelStackTable",
                    "mplsLabelStackEntry",
                    "mplsLabelStackStorageType"
                  ]
                },
                "description": "Retrieve mplsLabelStackStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentMapTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentMapTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentMapTable"
                  ]
                },
                "description": "Retrieve mplsInSegmentMapTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentMapEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentMapTable/mplsInSegmentMapEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentMapTable",
                    "mplsInSegmentMapEntry"
                  ]
                },
                "description": "Retrieve mplsInSegmentMapEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentMapInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentMapTable/mplsInSegmentMapEntry/mplsInSegmentMapInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentMapTable",
                    "mplsInSegmentMapEntry",
                    "mplsInSegmentMapInterface"
                  ]
                },
                "description": "Retrieve mplsInSegmentMapInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentMapLabel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentMapTable/mplsInSegmentMapEntry/mplsInSegmentMapLabel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentMapTable",
                    "mplsInSegmentMapEntry",
                    "mplsInSegmentMapLabel"
                  ]
                },
                "description": "Retrieve mplsInSegmentMapLabel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentMapLabelPtrIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentMapTable/mplsInSegmentMapEntry/mplsInSegmentMapLabelPtrIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentMapTable",
                    "mplsInSegmentMapEntry",
                    "mplsInSegmentMapLabelPtrIndex"
                  ]
                },
                "description": "Retrieve mplsInSegmentMapLabelPtrIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsInSegmentMapIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentMapTable/mplsInSegmentMapEntry/mplsInSegmentMapIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentMapTable",
                    "mplsInSegmentMapEntry",
                    "mplsInSegmentMapIndex"
                  ]
                },
                "description": "Retrieve mplsInSegmentMapIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentMapTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentMapTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentMapTable/object-1/mplsXCIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentMapTable",
                    "object-1",
                    "mplsXCIndex"
                  ]
                },
                "description": "Retrieve mplsXCIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCInSegmentIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentMapTable/object-1/mplsXCInSegmentIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentMapTable",
                    "object-1",
                    "mplsXCInSegmentIndex"
                  ]
                },
                "description": "Retrieve mplsXCInSegmentIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCOutSegmentIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentMapTable/object-1/mplsXCOutSegmentIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentMapTable",
                    "object-1",
                    "mplsXCOutSegmentIndex"
                  ]
                },
                "description": "Retrieve mplsXCOutSegmentIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentMapTable/object-1/mplsXCOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentMapTable",
                    "object-1",
                    "mplsXCOperStatus"
                  ]
                },
                "description": "Retrieve mplsXCOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentMapTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentMapTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentMapTable/object-2/mplsXCIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentMapTable",
                    "object-2",
                    "mplsXCIndex"
                  ]
                },
                "description": "Retrieve mplsXCIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCInSegmentIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentMapTable/object-2/mplsXCInSegmentIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentMapTable",
                    "object-2",
                    "mplsXCInSegmentIndex"
                  ]
                },
                "description": "Retrieve mplsXCInSegmentIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCOutSegmentIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentMapTable/object-2/mplsXCOutSegmentIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentMapTable",
                    "object-2",
                    "mplsXCOutSegmentIndex"
                  ]
                },
                "description": "Retrieve mplsXCOutSegmentIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsXCOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB/mplsInSegmentMapTable/object-2/mplsXCOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-LSR-STD-MIB:MPLS-LSR-STD-MIB",
                    "mplsInSegmentMapTable",
                    "object-2",
                    "mplsXCOperStatus"
                  ]
                },
                "description": "Retrieve mplsXCOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "MPLS-TE-STD-MIB",
          "description": "Cisco IOS-XE MIB - MPLS-TE-STD-MIB\n\nMIB data from `MPLS-TE-STD-MIB` module.\n\n**Root containers:** 1 (MPLS-TE-STD-MIB)\n**Paths:** 126 | **Descendants:** 161\n\nAll endpoints are read-only (GET).\n\nEndpoints: 126 | Operations: 126",
          "item": [
            {
              "name": "GET Get MPLS-TE-STD-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB"
                  ]
                },
                "description": "Retrieve MPLS-TE-STD-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTeScalars",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTeScalars",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTeScalars"
                  ]
                },
                "description": "Retrieve mplsTeScalars from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelConfigured",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTeScalars/mplsTunnelConfigured",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTeScalars",
                    "mplsTunnelConfigured"
                  ]
                },
                "description": "Retrieve mplsTunnelConfigured from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelActive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTeScalars/mplsTunnelActive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTeScalars",
                    "mplsTunnelActive"
                  ]
                },
                "description": "Retrieve mplsTunnelActive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelTEDistProto",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTeScalars/mplsTunnelTEDistProto",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTeScalars",
                    "mplsTunnelTEDistProto"
                  ]
                },
                "description": "Retrieve mplsTunnelTEDistProto from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelMaxHops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTeScalars/mplsTunnelMaxHops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTeScalars",
                    "mplsTunnelMaxHops"
                  ]
                },
                "description": "Retrieve mplsTunnelMaxHops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelNotificationMaxRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTeScalars/mplsTunnelNotificationMaxRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTeScalars",
                    "mplsTunnelNotificationMaxRate"
                  ]
                },
                "description": "Retrieve mplsTunnelNotificationMaxRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTeObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTeObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTeObjects"
                  ]
                },
                "description": "Retrieve mplsTeObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTeObjects/mplsTunnelIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTeObjects",
                    "mplsTunnelIndexNext"
                  ]
                },
                "description": "Retrieve mplsTunnelIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopListIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTeObjects/mplsTunnelHopListIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTeObjects",
                    "mplsTunnelHopListIndexNext"
                  ]
                },
                "description": "Retrieve mplsTunnelHopListIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelResourceIndexNext",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTeObjects/mplsTunnelResourceIndexNext",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTeObjects",
                    "mplsTunnelResourceIndexNext"
                  ]
                },
                "description": "Retrieve mplsTunnelResourceIndexNext from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelNotificationEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTeObjects/mplsTunnelNotificationEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTeObjects",
                    "mplsTunnelNotificationEnable"
                  ]
                },
                "description": "Retrieve mplsTunnelNotificationEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable"
                  ]
                },
                "description": "Retrieve mplsTunnelTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry"
                  ]
                },
                "description": "Retrieve mplsTunnelEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelInstance"
                  ]
                },
                "description": "Retrieve mplsTunnelInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelIngressLSRId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelIngressLSRId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelIngressLSRId"
                  ]
                },
                "description": "Retrieve mplsTunnelIngressLSRId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelEgressLSRId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelEgressLSRId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelEgressLSRId"
                  ]
                },
                "description": "Retrieve mplsTunnelEgressLSRId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelName"
                  ]
                },
                "description": "Retrieve mplsTunnelName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelDescr"
                  ]
                },
                "description": "Retrieve mplsTunnelDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelIsIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelIsIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelIsIf"
                  ]
                },
                "description": "Retrieve mplsTunnelIsIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelIfIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelOwner"
                  ]
                },
                "description": "Retrieve mplsTunnelOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelRole",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelRole",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelRole"
                  ]
                },
                "description": "Retrieve mplsTunnelRole from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelXCPointer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelXCPointer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelXCPointer"
                  ]
                },
                "description": "Retrieve mplsTunnelXCPointer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelSignallingProto",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelSignallingProto",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelSignallingProto"
                  ]
                },
                "description": "Retrieve mplsTunnelSignallingProto from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelSetupPrio",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelSetupPrio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelSetupPrio"
                  ]
                },
                "description": "Retrieve mplsTunnelSetupPrio from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHoldingPrio",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelHoldingPrio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelHoldingPrio"
                  ]
                },
                "description": "Retrieve mplsTunnelHoldingPrio from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelSessionAttributes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelSessionAttributes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelSessionAttributes"
                  ]
                },
                "description": "Retrieve mplsTunnelSessionAttributes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelLocalProtectInUse",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelLocalProtectInUse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelLocalProtectInUse"
                  ]
                },
                "description": "Retrieve mplsTunnelLocalProtectInUse from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelResourcePointer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelResourcePointer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelResourcePointer"
                  ]
                },
                "description": "Retrieve mplsTunnelResourcePointer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelPrimaryInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelPrimaryInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelPrimaryInstance"
                  ]
                },
                "description": "Retrieve mplsTunnelPrimaryInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelInstancePriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelInstancePriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelInstancePriority"
                  ]
                },
                "description": "Retrieve mplsTunnelInstancePriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopTableIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelHopTableIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelHopTableIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelHopTableIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelPathInUse",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelPathInUse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelPathInUse"
                  ]
                },
                "description": "Retrieve mplsTunnelPathInUse from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelARHopTableIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelARHopTableIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelARHopTableIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelARHopTableIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCHopTableIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelCHopTableIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelCHopTableIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelCHopTableIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelIncludeAnyAffinity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelIncludeAnyAffinity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelIncludeAnyAffinity"
                  ]
                },
                "description": "Retrieve mplsTunnelIncludeAnyAffinity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelIncludeAllAffinity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelIncludeAllAffinity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelIncludeAllAffinity"
                  ]
                },
                "description": "Retrieve mplsTunnelIncludeAllAffinity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelExcludeAnyAffinity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelExcludeAnyAffinity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelExcludeAnyAffinity"
                  ]
                },
                "description": "Retrieve mplsTunnelExcludeAnyAffinity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelTotalUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelTotalUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelTotalUpTime"
                  ]
                },
                "description": "Retrieve mplsTunnelTotalUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelInstanceUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelInstanceUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelInstanceUpTime"
                  ]
                },
                "description": "Retrieve mplsTunnelInstanceUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelPrimaryUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelPrimaryUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelPrimaryUpTime"
                  ]
                },
                "description": "Retrieve mplsTunnelPrimaryUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelPathChanges",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelPathChanges",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelPathChanges"
                  ]
                },
                "description": "Retrieve mplsTunnelPathChanges from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelLastPathChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelLastPathChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelLastPathChange"
                  ]
                },
                "description": "Retrieve mplsTunnelLastPathChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCreationTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelCreationTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelCreationTime"
                  ]
                },
                "description": "Retrieve mplsTunnelCreationTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelStateTransitions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelStateTransitions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelStateTransitions"
                  ]
                },
                "description": "Retrieve mplsTunnelStateTransitions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelAdminStatus"
                  ]
                },
                "description": "Retrieve mplsTunnelAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelOperStatus"
                  ]
                },
                "description": "Retrieve mplsTunnelOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelRowStatus"
                  ]
                },
                "description": "Retrieve mplsTunnelRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelStorageType"
                  ]
                },
                "description": "Retrieve mplsTunnelStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelPerfPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelPerfPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelPerfPackets"
                  ]
                },
                "description": "Retrieve mplsTunnelPerfPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelPerfHCPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelPerfHCPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelPerfHCPackets"
                  ]
                },
                "description": "Retrieve mplsTunnelPerfHCPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelPerfErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelPerfErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelPerfErrors"
                  ]
                },
                "description": "Retrieve mplsTunnelPerfErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelPerfBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelPerfBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelPerfBytes"
                  ]
                },
                "description": "Retrieve mplsTunnelPerfBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelPerfHCBytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelTable/mplsTunnelEntry/mplsTunnelPerfHCBytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelTable",
                    "mplsTunnelEntry",
                    "mplsTunnelPerfHCBytes"
                  ]
                },
                "description": "Retrieve mplsTunnelPerfHCBytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable"
                  ]
                },
                "description": "Retrieve mplsTunnelHopTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable/mplsTunnelHopEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable",
                    "mplsTunnelHopEntry"
                  ]
                },
                "description": "Retrieve mplsTunnelHopEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopListIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable/mplsTunnelHopEntry/mplsTunnelHopListIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable",
                    "mplsTunnelHopEntry",
                    "mplsTunnelHopListIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelHopListIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopPathOptionIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable/mplsTunnelHopEntry/mplsTunnelHopPathOptionIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable",
                    "mplsTunnelHopEntry",
                    "mplsTunnelHopPathOptionIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelHopPathOptionIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable/mplsTunnelHopEntry/mplsTunnelHopIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable",
                    "mplsTunnelHopEntry",
                    "mplsTunnelHopIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelHopIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable/mplsTunnelHopEntry/mplsTunnelHopAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable",
                    "mplsTunnelHopEntry",
                    "mplsTunnelHopAddrType"
                  ]
                },
                "description": "Retrieve mplsTunnelHopAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable/mplsTunnelHopEntry/mplsTunnelHopIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable",
                    "mplsTunnelHopEntry",
                    "mplsTunnelHopIpAddr"
                  ]
                },
                "description": "Retrieve mplsTunnelHopIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopIpPrefixLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable/mplsTunnelHopEntry/mplsTunnelHopIpPrefixLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable",
                    "mplsTunnelHopEntry",
                    "mplsTunnelHopIpPrefixLen"
                  ]
                },
                "description": "Retrieve mplsTunnelHopIpPrefixLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopAsNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable/mplsTunnelHopEntry/mplsTunnelHopAsNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable",
                    "mplsTunnelHopEntry",
                    "mplsTunnelHopAsNumber"
                  ]
                },
                "description": "Retrieve mplsTunnelHopAsNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopAddrUnnum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable/mplsTunnelHopEntry/mplsTunnelHopAddrUnnum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable",
                    "mplsTunnelHopEntry",
                    "mplsTunnelHopAddrUnnum"
                  ]
                },
                "description": "Retrieve mplsTunnelHopAddrUnnum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopLspId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable/mplsTunnelHopEntry/mplsTunnelHopLspId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable",
                    "mplsTunnelHopEntry",
                    "mplsTunnelHopLspId"
                  ]
                },
                "description": "Retrieve mplsTunnelHopLspId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable/mplsTunnelHopEntry/mplsTunnelHopType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable",
                    "mplsTunnelHopEntry",
                    "mplsTunnelHopType"
                  ]
                },
                "description": "Retrieve mplsTunnelHopType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopInclude",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable/mplsTunnelHopEntry/mplsTunnelHopInclude",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable",
                    "mplsTunnelHopEntry",
                    "mplsTunnelHopInclude"
                  ]
                },
                "description": "Retrieve mplsTunnelHopInclude from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopPathOptionName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable/mplsTunnelHopEntry/mplsTunnelHopPathOptionName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable",
                    "mplsTunnelHopEntry",
                    "mplsTunnelHopPathOptionName"
                  ]
                },
                "description": "Retrieve mplsTunnelHopPathOptionName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopEntryPathComp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable/mplsTunnelHopEntry/mplsTunnelHopEntryPathComp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable",
                    "mplsTunnelHopEntry",
                    "mplsTunnelHopEntryPathComp"
                  ]
                },
                "description": "Retrieve mplsTunnelHopEntryPathComp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable/mplsTunnelHopEntry/mplsTunnelHopRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable",
                    "mplsTunnelHopEntry",
                    "mplsTunnelHopRowStatus"
                  ]
                },
                "description": "Retrieve mplsTunnelHopRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelHopStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelHopTable/mplsTunnelHopEntry/mplsTunnelHopStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelHopTable",
                    "mplsTunnelHopEntry",
                    "mplsTunnelHopStorageType"
                  ]
                },
                "description": "Retrieve mplsTunnelHopStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelResourceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelResourceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelResourceTable"
                  ]
                },
                "description": "Retrieve mplsTunnelResourceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelResourceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelResourceTable/mplsTunnelResourceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelResourceTable",
                    "mplsTunnelResourceEntry"
                  ]
                },
                "description": "Retrieve mplsTunnelResourceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelResourceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelResourceTable/mplsTunnelResourceEntry/mplsTunnelResourceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelResourceTable",
                    "mplsTunnelResourceEntry",
                    "mplsTunnelResourceIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelResourceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelResourceMaxRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelResourceTable/mplsTunnelResourceEntry/mplsTunnelResourceMaxRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelResourceTable",
                    "mplsTunnelResourceEntry",
                    "mplsTunnelResourceMaxRate"
                  ]
                },
                "description": "Retrieve mplsTunnelResourceMaxRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelResourceMeanRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelResourceTable/mplsTunnelResourceEntry/mplsTunnelResourceMeanRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelResourceTable",
                    "mplsTunnelResourceEntry",
                    "mplsTunnelResourceMeanRate"
                  ]
                },
                "description": "Retrieve mplsTunnelResourceMeanRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelResourceMaxBurstSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelResourceTable/mplsTunnelResourceEntry/mplsTunnelResourceMaxBurstSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelResourceTable",
                    "mplsTunnelResourceEntry",
                    "mplsTunnelResourceMaxBurstSize"
                  ]
                },
                "description": "Retrieve mplsTunnelResourceMaxBurstSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelResourceMeanBurstSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelResourceTable/mplsTunnelResourceEntry/mplsTunnelResourceMeanBurstSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelResourceTable",
                    "mplsTunnelResourceEntry",
                    "mplsTunnelResourceMeanBurstSize"
                  ]
                },
                "description": "Retrieve mplsTunnelResourceMeanBurstSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelResourceExBurstSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelResourceTable/mplsTunnelResourceEntry/mplsTunnelResourceExBurstSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelResourceTable",
                    "mplsTunnelResourceEntry",
                    "mplsTunnelResourceExBurstSize"
                  ]
                },
                "description": "Retrieve mplsTunnelResourceExBurstSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelResourceFrequency",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelResourceTable/mplsTunnelResourceEntry/mplsTunnelResourceFrequency",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelResourceTable",
                    "mplsTunnelResourceEntry",
                    "mplsTunnelResourceFrequency"
                  ]
                },
                "description": "Retrieve mplsTunnelResourceFrequency from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelResourceWeight",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelResourceTable/mplsTunnelResourceEntry/mplsTunnelResourceWeight",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelResourceTable",
                    "mplsTunnelResourceEntry",
                    "mplsTunnelResourceWeight"
                  ]
                },
                "description": "Retrieve mplsTunnelResourceWeight from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelResourceRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelResourceTable/mplsTunnelResourceEntry/mplsTunnelResourceRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelResourceTable",
                    "mplsTunnelResourceEntry",
                    "mplsTunnelResourceRowStatus"
                  ]
                },
                "description": "Retrieve mplsTunnelResourceRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelResourceStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelResourceTable/mplsTunnelResourceEntry/mplsTunnelResourceStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelResourceTable",
                    "mplsTunnelResourceEntry",
                    "mplsTunnelResourceStorageType"
                  ]
                },
                "description": "Retrieve mplsTunnelResourceStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelARHopTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelARHopTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelARHopTable"
                  ]
                },
                "description": "Retrieve mplsTunnelARHopTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelARHopEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelARHopTable/mplsTunnelARHopEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelARHopTable",
                    "mplsTunnelARHopEntry"
                  ]
                },
                "description": "Retrieve mplsTunnelARHopEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelARHopListIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelARHopTable/mplsTunnelARHopEntry/mplsTunnelARHopListIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelARHopTable",
                    "mplsTunnelARHopEntry",
                    "mplsTunnelARHopListIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelARHopListIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelARHopIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelARHopTable/mplsTunnelARHopEntry/mplsTunnelARHopIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelARHopTable",
                    "mplsTunnelARHopEntry",
                    "mplsTunnelARHopIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelARHopIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelARHopAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelARHopTable/mplsTunnelARHopEntry/mplsTunnelARHopAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelARHopTable",
                    "mplsTunnelARHopEntry",
                    "mplsTunnelARHopAddrType"
                  ]
                },
                "description": "Retrieve mplsTunnelARHopAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelARHopIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelARHopTable/mplsTunnelARHopEntry/mplsTunnelARHopIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelARHopTable",
                    "mplsTunnelARHopEntry",
                    "mplsTunnelARHopIpAddr"
                  ]
                },
                "description": "Retrieve mplsTunnelARHopIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelARHopAddrUnnum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelARHopTable/mplsTunnelARHopEntry/mplsTunnelARHopAddrUnnum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelARHopTable",
                    "mplsTunnelARHopEntry",
                    "mplsTunnelARHopAddrUnnum"
                  ]
                },
                "description": "Retrieve mplsTunnelARHopAddrUnnum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelARHopLspId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelARHopTable/mplsTunnelARHopEntry/mplsTunnelARHopLspId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelARHopTable",
                    "mplsTunnelARHopEntry",
                    "mplsTunnelARHopLspId"
                  ]
                },
                "description": "Retrieve mplsTunnelARHopLspId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCHopTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCHopTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCHopTable"
                  ]
                },
                "description": "Retrieve mplsTunnelCHopTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCHopEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCHopTable/mplsTunnelCHopEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCHopTable",
                    "mplsTunnelCHopEntry"
                  ]
                },
                "description": "Retrieve mplsTunnelCHopEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCHopListIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCHopTable/mplsTunnelCHopEntry/mplsTunnelCHopListIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCHopTable",
                    "mplsTunnelCHopEntry",
                    "mplsTunnelCHopListIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelCHopListIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCHopIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCHopTable/mplsTunnelCHopEntry/mplsTunnelCHopIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCHopTable",
                    "mplsTunnelCHopEntry",
                    "mplsTunnelCHopIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelCHopIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCHopAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCHopTable/mplsTunnelCHopEntry/mplsTunnelCHopAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCHopTable",
                    "mplsTunnelCHopEntry",
                    "mplsTunnelCHopAddrType"
                  ]
                },
                "description": "Retrieve mplsTunnelCHopAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCHopIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCHopTable/mplsTunnelCHopEntry/mplsTunnelCHopIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCHopTable",
                    "mplsTunnelCHopEntry",
                    "mplsTunnelCHopIpAddr"
                  ]
                },
                "description": "Retrieve mplsTunnelCHopIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCHopIpPrefixLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCHopTable/mplsTunnelCHopEntry/mplsTunnelCHopIpPrefixLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCHopTable",
                    "mplsTunnelCHopEntry",
                    "mplsTunnelCHopIpPrefixLen"
                  ]
                },
                "description": "Retrieve mplsTunnelCHopIpPrefixLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCHopAsNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCHopTable/mplsTunnelCHopEntry/mplsTunnelCHopAsNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCHopTable",
                    "mplsTunnelCHopEntry",
                    "mplsTunnelCHopAsNumber"
                  ]
                },
                "description": "Retrieve mplsTunnelCHopAsNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCHopAddrUnnum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCHopTable/mplsTunnelCHopEntry/mplsTunnelCHopAddrUnnum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCHopTable",
                    "mplsTunnelCHopEntry",
                    "mplsTunnelCHopAddrUnnum"
                  ]
                },
                "description": "Retrieve mplsTunnelCHopAddrUnnum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCHopLspId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCHopTable/mplsTunnelCHopEntry/mplsTunnelCHopLspId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCHopTable",
                    "mplsTunnelCHopEntry",
                    "mplsTunnelCHopLspId"
                  ]
                },
                "description": "Retrieve mplsTunnelCHopLspId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCHopType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCHopTable/mplsTunnelCHopEntry/mplsTunnelCHopType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCHopTable",
                    "mplsTunnelCHopEntry",
                    "mplsTunnelCHopType"
                  ]
                },
                "description": "Retrieve mplsTunnelCHopType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCRLDPResTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable"
                  ]
                },
                "description": "Retrieve mplsTunnelCRLDPResTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCRLDPResEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/mplsTunnelCRLDPResEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "mplsTunnelCRLDPResEntry"
                  ]
                },
                "description": "Retrieve mplsTunnelCRLDPResEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelResourceIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/mplsTunnelCRLDPResEntry/mplsTunnelResourceIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "mplsTunnelCRLDPResEntry",
                    "mplsTunnelResourceIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelResourceIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCRLDPResMeanBurstSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/mplsTunnelCRLDPResEntry/mplsTunnelCRLDPResMeanBurstSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "mplsTunnelCRLDPResEntry",
                    "mplsTunnelCRLDPResMeanBurstSize"
                  ]
                },
                "description": "Retrieve mplsTunnelCRLDPResMeanBurstSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCRLDPResExBurstSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/mplsTunnelCRLDPResEntry/mplsTunnelCRLDPResExBurstSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "mplsTunnelCRLDPResEntry",
                    "mplsTunnelCRLDPResExBurstSize"
                  ]
                },
                "description": "Retrieve mplsTunnelCRLDPResExBurstSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCRLDPResFrequency",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/mplsTunnelCRLDPResEntry/mplsTunnelCRLDPResFrequency",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "mplsTunnelCRLDPResEntry",
                    "mplsTunnelCRLDPResFrequency"
                  ]
                },
                "description": "Retrieve mplsTunnelCRLDPResFrequency from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCRLDPResWeight",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/mplsTunnelCRLDPResEntry/mplsTunnelCRLDPResWeight",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "mplsTunnelCRLDPResEntry",
                    "mplsTunnelCRLDPResWeight"
                  ]
                },
                "description": "Retrieve mplsTunnelCRLDPResWeight from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCRLDPResFlags",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/mplsTunnelCRLDPResEntry/mplsTunnelCRLDPResFlags",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "mplsTunnelCRLDPResEntry",
                    "mplsTunnelCRLDPResFlags"
                  ]
                },
                "description": "Retrieve mplsTunnelCRLDPResFlags from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCRLDPResRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/mplsTunnelCRLDPResEntry/mplsTunnelCRLDPResRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "mplsTunnelCRLDPResEntry",
                    "mplsTunnelCRLDPResRowStatus"
                  ]
                },
                "description": "Retrieve mplsTunnelCRLDPResRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelCRLDPResStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/mplsTunnelCRLDPResEntry/mplsTunnelCRLDPResStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "mplsTunnelCRLDPResEntry",
                    "mplsTunnelCRLDPResStorageType"
                  ]
                },
                "description": "Retrieve mplsTunnelCRLDPResStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/object-1/mplsTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "object-1",
                    "mplsTunnelIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/object-1/mplsTunnelInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "object-1",
                    "mplsTunnelInstance"
                  ]
                },
                "description": "Retrieve mplsTunnelInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelIngressLSRId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/object-1/mplsTunnelIngressLSRId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "object-1",
                    "mplsTunnelIngressLSRId"
                  ]
                },
                "description": "Retrieve mplsTunnelIngressLSRId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelEgressLSRId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/object-1/mplsTunnelEgressLSRId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "object-1",
                    "mplsTunnelEgressLSRId"
                  ]
                },
                "description": "Retrieve mplsTunnelEgressLSRId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/object-1/mplsTunnelAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "object-1",
                    "mplsTunnelAdminStatus"
                  ]
                },
                "description": "Retrieve mplsTunnelAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/object-2/mplsTunnelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "object-2",
                    "mplsTunnelIndex"
                  ]
                },
                "description": "Retrieve mplsTunnelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/object-2/mplsTunnelInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "object-2",
                    "mplsTunnelInstance"
                  ]
                },
                "description": "Retrieve mplsTunnelInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelIngressLSRId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/object-2/mplsTunnelIngressLSRId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "object-2",
                    "mplsTunnelIngressLSRId"
                  ]
                },
                "description": "Retrieve mplsTunnelIngressLSRId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelEgressLSRId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/object-2/mplsTunnelEgressLSRId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "object-2",
                    "mplsTunnelEgressLSRId"
                  ]
                },
                "description": "Retrieve mplsTunnelEgressLSRId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsTunnelOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-TE-STD-MIB:MPLS-TE-STD-MIB/mplsTunnelCRLDPResTable/object-2/mplsTunnelOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-TE-STD-MIB:MPLS-TE-STD-MIB",
                    "mplsTunnelCRLDPResTable",
                    "object-2",
                    "mplsTunnelOperStatus"
                  ]
                },
                "description": "Retrieve mplsTunnelOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "MPLS-VPN-MIB",
          "description": "Cisco IOS-XE MIB - MPLS-VPN-MIB\n\nMIB data from `MPLS-VPN-MIB` module.\n\n**Root containers:** 1 (MPLS-VPN-MIB)\n**Paths:** 94 | **Descendants:** 93\n\nAll endpoints are read-only (GET).\n\nEndpoints: 94 | Operations: 94",
          "item": [
            {
              "name": "GET Get MPLS-VPN-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB"
                  ]
                },
                "description": "Retrieve MPLS-VPN-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnScalars",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnScalars",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnScalars"
                  ]
                },
                "description": "Retrieve mplsVpnScalars from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnConfiguredVrfs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnScalars/mplsVpnConfiguredVrfs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnScalars",
                    "mplsVpnConfiguredVrfs"
                  ]
                },
                "description": "Retrieve mplsVpnConfiguredVrfs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnActiveVrfs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnScalars/mplsVpnActiveVrfs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnScalars",
                    "mplsVpnActiveVrfs"
                  ]
                },
                "description": "Retrieve mplsVpnActiveVrfs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnConnectedInterfaces",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnScalars/mplsVpnConnectedInterfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnScalars",
                    "mplsVpnConnectedInterfaces"
                  ]
                },
                "description": "Retrieve mplsVpnConnectedInterfaces from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnNotificationEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnScalars/mplsVpnNotificationEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnScalars",
                    "mplsVpnNotificationEnable"
                  ]
                },
                "description": "Retrieve mplsVpnNotificationEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfConfMaxPossibleRoutes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnScalars/mplsVpnVrfConfMaxPossibleRoutes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnScalars",
                    "mplsVpnVrfConfMaxPossibleRoutes"
                  ]
                },
                "description": "Retrieve mplsVpnVrfConfMaxPossibleRoutes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnInterfaceConfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnInterfaceConfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnInterfaceConfTable"
                  ]
                },
                "description": "Retrieve mplsVpnInterfaceConfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnInterfaceConfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnInterfaceConfTable/mplsVpnInterfaceConfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnInterfaceConfTable",
                    "mplsVpnInterfaceConfEntry"
                  ]
                },
                "description": "Retrieve mplsVpnInterfaceConfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnInterfaceConfTable/mplsVpnInterfaceConfEntry/mplsVpnVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnInterfaceConfTable",
                    "mplsVpnInterfaceConfEntry",
                    "mplsVpnVrfName"
                  ]
                },
                "description": "Retrieve mplsVpnVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnInterfaceConfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnInterfaceConfTable/mplsVpnInterfaceConfEntry/mplsVpnInterfaceConfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnInterfaceConfTable",
                    "mplsVpnInterfaceConfEntry",
                    "mplsVpnInterfaceConfIndex"
                  ]
                },
                "description": "Retrieve mplsVpnInterfaceConfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnInterfaceLabelEdgeType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnInterfaceConfTable/mplsVpnInterfaceConfEntry/mplsVpnInterfaceLabelEdgeType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnInterfaceConfTable",
                    "mplsVpnInterfaceConfEntry",
                    "mplsVpnInterfaceLabelEdgeType"
                  ]
                },
                "description": "Retrieve mplsVpnInterfaceLabelEdgeType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnInterfaceVpnClassification",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnInterfaceConfTable/mplsVpnInterfaceConfEntry/mplsVpnInterfaceVpnClassification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnInterfaceConfTable",
                    "mplsVpnInterfaceConfEntry",
                    "mplsVpnInterfaceVpnClassification"
                  ]
                },
                "description": "Retrieve mplsVpnInterfaceVpnClassification from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnInterfaceVpnRouteDistProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnInterfaceConfTable/mplsVpnInterfaceConfEntry/mplsVpnInterfaceVpnRouteDistProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnInterfaceConfTable",
                    "mplsVpnInterfaceConfEntry",
                    "mplsVpnInterfaceVpnRouteDistProtocol"
                  ]
                },
                "description": "Retrieve mplsVpnInterfaceVpnRouteDistProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnInterfaceConfStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnInterfaceConfTable/mplsVpnInterfaceConfEntry/mplsVpnInterfaceConfStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnInterfaceConfTable",
                    "mplsVpnInterfaceConfEntry",
                    "mplsVpnInterfaceConfStorageType"
                  ]
                },
                "description": "Retrieve mplsVpnInterfaceConfStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnInterfaceConfRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnInterfaceConfTable/mplsVpnInterfaceConfEntry/mplsVpnInterfaceConfRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnInterfaceConfTable",
                    "mplsVpnInterfaceConfEntry",
                    "mplsVpnInterfaceConfRowStatus"
                  ]
                },
                "description": "Retrieve mplsVpnInterfaceConfRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable"
                  ]
                },
                "description": "Retrieve mplsVpnVrfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry"
                  ]
                },
                "description": "Retrieve mplsVpnVrfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfName"
                  ]
                },
                "description": "Retrieve mplsVpnVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfDescription"
                  ]
                },
                "description": "Retrieve mplsVpnVrfDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteDistinguisher",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfRouteDistinguisher",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfRouteDistinguisher"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteDistinguisher from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfCreationTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfCreationTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfCreationTime"
                  ]
                },
                "description": "Retrieve mplsVpnVrfCreationTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfOperStatus"
                  ]
                },
                "description": "Retrieve mplsVpnVrfOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfActiveInterfaces",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfActiveInterfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfActiveInterfaces"
                  ]
                },
                "description": "Retrieve mplsVpnVrfActiveInterfaces from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfAssociatedInterfaces",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfAssociatedInterfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfAssociatedInterfaces"
                  ]
                },
                "description": "Retrieve mplsVpnVrfAssociatedInterfaces from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfConfMidRouteThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfConfMidRouteThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfConfMidRouteThreshold"
                  ]
                },
                "description": "Retrieve mplsVpnVrfConfMidRouteThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfConfHighRouteThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfConfHighRouteThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfConfHighRouteThreshold"
                  ]
                },
                "description": "Retrieve mplsVpnVrfConfHighRouteThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfConfMaxRoutes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfConfMaxRoutes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfConfMaxRoutes"
                  ]
                },
                "description": "Retrieve mplsVpnVrfConfMaxRoutes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfConfLastChanged",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfConfLastChanged",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfConfLastChanged"
                  ]
                },
                "description": "Retrieve mplsVpnVrfConfLastChanged from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfConfRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfConfRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfConfRowStatus"
                  ]
                },
                "description": "Retrieve mplsVpnVrfConfRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfConfStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfConfStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfConfStorageType"
                  ]
                },
                "description": "Retrieve mplsVpnVrfConfStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfSecIllegalLabelViolations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfSecIllegalLabelViolations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfSecIllegalLabelViolations"
                  ]
                },
                "description": "Retrieve mplsVpnVrfSecIllegalLabelViolations from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfSecIllegalLabelRcvThresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfSecIllegalLabelRcvThresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfSecIllegalLabelRcvThresh"
                  ]
                },
                "description": "Retrieve mplsVpnVrfSecIllegalLabelRcvThresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfPerfRoutesAdded",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfPerfRoutesAdded",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfPerfRoutesAdded"
                  ]
                },
                "description": "Retrieve mplsVpnVrfPerfRoutesAdded from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfPerfRoutesDeleted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfPerfRoutesDeleted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfPerfRoutesDeleted"
                  ]
                },
                "description": "Retrieve mplsVpnVrfPerfRoutesDeleted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfPerfCurrNumRoutes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfTable/mplsVpnVrfEntry/mplsVpnVrfPerfCurrNumRoutes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfTable",
                    "mplsVpnVrfEntry",
                    "mplsVpnVrfPerfCurrNumRoutes"
                  ]
                },
                "description": "Retrieve mplsVpnVrfPerfCurrNumRoutes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteTargetTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTargetTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTargetTable"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteTargetTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteTargetEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTargetTable/mplsVpnVrfRouteTargetEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTargetTable",
                    "mplsVpnVrfRouteTargetEntry"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteTargetEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTargetTable/mplsVpnVrfRouteTargetEntry/mplsVpnVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTargetTable",
                    "mplsVpnVrfRouteTargetEntry",
                    "mplsVpnVrfName"
                  ]
                },
                "description": "Retrieve mplsVpnVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteTargetIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTargetTable/mplsVpnVrfRouteTargetEntry/mplsVpnVrfRouteTargetIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTargetTable",
                    "mplsVpnVrfRouteTargetEntry",
                    "mplsVpnVrfRouteTargetIndex"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteTargetIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteTargetType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTargetTable/mplsVpnVrfRouteTargetEntry/mplsVpnVrfRouteTargetType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTargetTable",
                    "mplsVpnVrfRouteTargetEntry",
                    "mplsVpnVrfRouteTargetType"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteTargetType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteTarget",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTargetTable/mplsVpnVrfRouteTargetEntry/mplsVpnVrfRouteTarget",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTargetTable",
                    "mplsVpnVrfRouteTargetEntry",
                    "mplsVpnVrfRouteTarget"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteTarget from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteTargetDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTargetTable/mplsVpnVrfRouteTargetEntry/mplsVpnVrfRouteTargetDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTargetTable",
                    "mplsVpnVrfRouteTargetEntry",
                    "mplsVpnVrfRouteTargetDescr"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteTargetDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteTargetRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTargetTable/mplsVpnVrfRouteTargetEntry/mplsVpnVrfRouteTargetRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTargetTable",
                    "mplsVpnVrfRouteTargetEntry",
                    "mplsVpnVrfRouteTargetRowStatus"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteTargetRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpNbrAddrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrAddrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrAddrTable"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpNbrAddrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpNbrAddrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrAddrTable/mplsVpnVrfBgpNbrAddrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrAddrTable",
                    "mplsVpnVrfBgpNbrAddrEntry"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpNbrAddrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrAddrTable/mplsVpnVrfBgpNbrAddrEntry/mplsVpnVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrAddrTable",
                    "mplsVpnVrfBgpNbrAddrEntry",
                    "mplsVpnVrfName"
                  ]
                },
                "description": "Retrieve mplsVpnVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnInterfaceConfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrAddrTable/mplsVpnVrfBgpNbrAddrEntry/mplsVpnInterfaceConfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrAddrTable",
                    "mplsVpnVrfBgpNbrAddrEntry",
                    "mplsVpnInterfaceConfIndex"
                  ]
                },
                "description": "Retrieve mplsVpnInterfaceConfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpNbrIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrAddrTable/mplsVpnVrfBgpNbrAddrEntry/mplsVpnVrfBgpNbrIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrAddrTable",
                    "mplsVpnVrfBgpNbrAddrEntry",
                    "mplsVpnVrfBgpNbrIndex"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpNbrIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpNbrRole",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrAddrTable/mplsVpnVrfBgpNbrAddrEntry/mplsVpnVrfBgpNbrRole",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrAddrTable",
                    "mplsVpnVrfBgpNbrAddrEntry",
                    "mplsVpnVrfBgpNbrRole"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpNbrRole from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpNbrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrAddrTable/mplsVpnVrfBgpNbrAddrEntry/mplsVpnVrfBgpNbrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrAddrTable",
                    "mplsVpnVrfBgpNbrAddrEntry",
                    "mplsVpnVrfBgpNbrType"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpNbrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpNbrAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrAddrTable/mplsVpnVrfBgpNbrAddrEntry/mplsVpnVrfBgpNbrAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrAddrTable",
                    "mplsVpnVrfBgpNbrAddrEntry",
                    "mplsVpnVrfBgpNbrAddr"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpNbrAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpNbrRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrAddrTable/mplsVpnVrfBgpNbrAddrEntry/mplsVpnVrfBgpNbrRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrAddrTable",
                    "mplsVpnVrfBgpNbrAddrEntry",
                    "mplsVpnVrfBgpNbrRowStatus"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpNbrRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpNbrStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrAddrTable/mplsVpnVrfBgpNbrAddrEntry/mplsVpnVrfBgpNbrStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrAddrTable",
                    "mplsVpnVrfBgpNbrAddrEntry",
                    "mplsVpnVrfBgpNbrStorageType"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpNbrStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpNbrPrefixTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpNbrPrefixTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpNbrPrefixEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable/mplsVpnVrfBgpNbrPrefixEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable",
                    "mplsVpnVrfBgpNbrPrefixEntry"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpNbrPrefixEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable/mplsVpnVrfBgpNbrPrefixEntry/mplsVpnVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable",
                    "mplsVpnVrfBgpNbrPrefixEntry",
                    "mplsVpnVrfName"
                  ]
                },
                "description": "Retrieve mplsVpnVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpPathAttrPeer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable/mplsVpnVrfBgpNbrPrefixEntry/mplsVpnVrfBgpPathAttrPeer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable",
                    "mplsVpnVrfBgpNbrPrefixEntry",
                    "mplsVpnVrfBgpPathAttrPeer"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpPathAttrPeer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpPathAttrIpAddrPrefixLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable/mplsVpnVrfBgpNbrPrefixEntry/mplsVpnVrfBgpPathAttrIpAddrPrefixLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable",
                    "mplsVpnVrfBgpNbrPrefixEntry",
                    "mplsVpnVrfBgpPathAttrIpAddrPrefixLen"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpPathAttrIpAddrPrefixLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpPathAttrIpAddrPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable/mplsVpnVrfBgpNbrPrefixEntry/mplsVpnVrfBgpPathAttrIpAddrPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable",
                    "mplsVpnVrfBgpNbrPrefixEntry",
                    "mplsVpnVrfBgpPathAttrIpAddrPrefix"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpPathAttrIpAddrPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpPathAttrOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable/mplsVpnVrfBgpNbrPrefixEntry/mplsVpnVrfBgpPathAttrOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable",
                    "mplsVpnVrfBgpNbrPrefixEntry",
                    "mplsVpnVrfBgpPathAttrOrigin"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpPathAttrOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpPathAttrASPathSegment",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable/mplsVpnVrfBgpNbrPrefixEntry/mplsVpnVrfBgpPathAttrASPathSegment",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable",
                    "mplsVpnVrfBgpNbrPrefixEntry",
                    "mplsVpnVrfBgpPathAttrASPathSegment"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpPathAttrASPathSegment from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpPathAttrNextHop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable/mplsVpnVrfBgpNbrPrefixEntry/mplsVpnVrfBgpPathAttrNextHop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable",
                    "mplsVpnVrfBgpNbrPrefixEntry",
                    "mplsVpnVrfBgpPathAttrNextHop"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpPathAttrNextHop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpPathAttrMultiExitDisc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable/mplsVpnVrfBgpNbrPrefixEntry/mplsVpnVrfBgpPathAttrMultiExitDisc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable",
                    "mplsVpnVrfBgpNbrPrefixEntry",
                    "mplsVpnVrfBgpPathAttrMultiExitDisc"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpPathAttrMultiExitDisc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpPathAttrLocalPref",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable/mplsVpnVrfBgpNbrPrefixEntry/mplsVpnVrfBgpPathAttrLocalPref",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable",
                    "mplsVpnVrfBgpNbrPrefixEntry",
                    "mplsVpnVrfBgpPathAttrLocalPref"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpPathAttrLocalPref from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpPathAttrAtomicAggregate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable/mplsVpnVrfBgpNbrPrefixEntry/mplsVpnVrfBgpPathAttrAtomicAggregate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable",
                    "mplsVpnVrfBgpNbrPrefixEntry",
                    "mplsVpnVrfBgpPathAttrAtomicAggregate"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpPathAttrAtomicAggregate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpPathAttrAggregatorAS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable/mplsVpnVrfBgpNbrPrefixEntry/mplsVpnVrfBgpPathAttrAggregatorAS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable",
                    "mplsVpnVrfBgpNbrPrefixEntry",
                    "mplsVpnVrfBgpPathAttrAggregatorAS"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpPathAttrAggregatorAS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpPathAttrAggregatorAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable/mplsVpnVrfBgpNbrPrefixEntry/mplsVpnVrfBgpPathAttrAggregatorAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable",
                    "mplsVpnVrfBgpNbrPrefixEntry",
                    "mplsVpnVrfBgpPathAttrAggregatorAddr"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpPathAttrAggregatorAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpPathAttrCalcLocalPref",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable/mplsVpnVrfBgpNbrPrefixEntry/mplsVpnVrfBgpPathAttrCalcLocalPref",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable",
                    "mplsVpnVrfBgpNbrPrefixEntry",
                    "mplsVpnVrfBgpPathAttrCalcLocalPref"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpPathAttrCalcLocalPref from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpPathAttrBest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable/mplsVpnVrfBgpNbrPrefixEntry/mplsVpnVrfBgpPathAttrBest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable",
                    "mplsVpnVrfBgpNbrPrefixEntry",
                    "mplsVpnVrfBgpPathAttrBest"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpPathAttrBest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfBgpPathAttrUnknown",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfBgpNbrPrefixTable/mplsVpnVrfBgpNbrPrefixEntry/mplsVpnVrfBgpPathAttrUnknown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfBgpNbrPrefixTable",
                    "mplsVpnVrfBgpNbrPrefixEntry",
                    "mplsVpnVrfBgpPathAttrUnknown"
                  ]
                },
                "description": "Retrieve mplsVpnVrfBgpPathAttrUnknown from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfName"
                  ]
                },
                "description": "Retrieve mplsVpnVrfName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteDest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteDest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteDest"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteDest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteDestAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteDestAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteDestAddrType"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteDestAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteMask"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteMaskAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteMaskAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteMaskAddrType"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteMaskAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteTos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteTos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteTos"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteTos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteNextHop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteNextHop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteNextHop"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteNextHop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteNextHopAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteNextHopAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteNextHopAddrType"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteNextHopAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteIfIndex"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteType"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteProto",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteProto",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteProto"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteProto from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteAge"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteInfo"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteNextHopAS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteNextHopAS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteNextHopAS"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteNextHopAS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteMetric1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteMetric1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteMetric1"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteMetric1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteMetric2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteMetric2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteMetric2"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteMetric2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteMetric3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteMetric3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteMetric3"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteMetric3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteMetric4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteMetric4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteMetric4"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteMetric4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteMetric5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteMetric5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteMetric5"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteMetric5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteRowStatus"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mplsVpnVrfRouteStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/MPLS-VPN-MIB:MPLS-VPN-MIB/mplsVpnVrfRouteTable/mplsVpnVrfRouteEntry/mplsVpnVrfRouteStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "MPLS-VPN-MIB:MPLS-VPN-MIB",
                    "mplsVpnVrfRouteTable",
                    "mplsVpnVrfRouteEntry",
                    "mplsVpnVrfRouteStorageType"
                  ]
                },
                "description": "Retrieve mplsVpnVrfRouteStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "NHRP-MIB",
          "description": "Cisco IOS-XE MIB - NHRP-MIB\n\nMIB data from `NHRP-MIB` module.\n\n**Root containers:** 1 (NHRP-MIB)\n**Paths:** 166 | **Descendants:** 165\n\nAll endpoints are read-only (GET).\n\nEndpoints: 166 | Operations: 166",
          "item": [
            {
              "name": "GET Get NHRP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB"
                  ]
                },
                "description": "Retrieve NHRP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpGeneralObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpGeneralObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpGeneralObjects"
                  ]
                },
                "description": "Retrieve nhrpGeneralObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpNextIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpGeneralObjects/nhrpNextIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpGeneralObjects",
                    "nhrpNextIndex"
                  ]
                },
                "description": "Retrieve nhrpNextIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable"
                  ]
                },
                "description": "Retrieve nhrpCacheTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry"
                  ]
                },
                "description": "Retrieve nhrpCacheEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheInternetworkAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/nhrpCacheInternetworkAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "nhrpCacheInternetworkAddrType"
                  ]
                },
                "description": "Retrieve nhrpCacheInternetworkAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheInternetworkAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/nhrpCacheInternetworkAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "nhrpCacheInternetworkAddr"
                  ]
                },
                "description": "Retrieve nhrpCacheInternetworkAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/nhrpCacheIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "nhrpCacheIndex"
                  ]
                },
                "description": "Retrieve nhrpCacheIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCachePrefixLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/nhrpCachePrefixLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "nhrpCachePrefixLength"
                  ]
                },
                "description": "Retrieve nhrpCachePrefixLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheNextHopInternetworkAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/nhrpCacheNextHopInternetworkAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "nhrpCacheNextHopInternetworkAddr"
                  ]
                },
                "description": "Retrieve nhrpCacheNextHopInternetworkAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheNbmaAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/nhrpCacheNbmaAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "nhrpCacheNbmaAddrType"
                  ]
                },
                "description": "Retrieve nhrpCacheNbmaAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheNbmaAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/nhrpCacheNbmaAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "nhrpCacheNbmaAddr"
                  ]
                },
                "description": "Retrieve nhrpCacheNbmaAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheNbmaSubaddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/nhrpCacheNbmaSubaddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "nhrpCacheNbmaSubaddr"
                  ]
                },
                "description": "Retrieve nhrpCacheNbmaSubaddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/nhrpCacheType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "nhrpCacheType"
                  ]
                },
                "description": "Retrieve nhrpCacheType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/nhrpCacheState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "nhrpCacheState"
                  ]
                },
                "description": "Retrieve nhrpCacheState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheHoldingTimeValid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/nhrpCacheHoldingTimeValid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "nhrpCacheHoldingTimeValid"
                  ]
                },
                "description": "Retrieve nhrpCacheHoldingTimeValid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheHoldingTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/nhrpCacheHoldingTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "nhrpCacheHoldingTime"
                  ]
                },
                "description": "Retrieve nhrpCacheHoldingTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheNegotiatedMtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/nhrpCacheNegotiatedMtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "nhrpCacheNegotiatedMtu"
                  ]
                },
                "description": "Retrieve nhrpCacheNegotiatedMtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCachePreference",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/nhrpCachePreference",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "nhrpCachePreference"
                  ]
                },
                "description": "Retrieve nhrpCachePreference from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/nhrpCacheStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "nhrpCacheStorageType"
                  ]
                },
                "description": "Retrieve nhrpCacheStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpCacheTable/nhrpCacheEntry/nhrpCacheRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpCacheTable",
                    "nhrpCacheEntry",
                    "nhrpCacheRowStatus"
                  ]
                },
                "description": "Retrieve nhrpCacheRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpPurgeReqTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpPurgeReqTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpPurgeReqTable"
                  ]
                },
                "description": "Retrieve nhrpPurgeReqTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpPurgeReqEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpPurgeReqTable/nhrpPurgeReqEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpPurgeReqTable",
                    "nhrpPurgeReqEntry"
                  ]
                },
                "description": "Retrieve nhrpPurgeReqEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpPurgeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpPurgeReqTable/nhrpPurgeReqEntry/nhrpPurgeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpPurgeReqTable",
                    "nhrpPurgeReqEntry",
                    "nhrpPurgeIndex"
                  ]
                },
                "description": "Retrieve nhrpPurgeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpPurgeCacheIdentifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpPurgeReqTable/nhrpPurgeReqEntry/nhrpPurgeCacheIdentifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpPurgeReqTable",
                    "nhrpPurgeReqEntry",
                    "nhrpPurgeCacheIdentifier"
                  ]
                },
                "description": "Retrieve nhrpPurgeCacheIdentifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpPurgePrefixLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpPurgeReqTable/nhrpPurgeReqEntry/nhrpPurgePrefixLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpPurgeReqTable",
                    "nhrpPurgeReqEntry",
                    "nhrpPurgePrefixLength"
                  ]
                },
                "description": "Retrieve nhrpPurgePrefixLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpPurgeRequestID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpPurgeReqTable/nhrpPurgeReqEntry/nhrpPurgeRequestID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpPurgeReqTable",
                    "nhrpPurgeReqEntry",
                    "nhrpPurgeRequestID"
                  ]
                },
                "description": "Retrieve nhrpPurgeRequestID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpPurgeReplyExpected",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpPurgeReqTable/nhrpPurgeReqEntry/nhrpPurgeReplyExpected",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpPurgeReqTable",
                    "nhrpPurgeReqEntry",
                    "nhrpPurgeReplyExpected"
                  ]
                },
                "description": "Retrieve nhrpPurgeReplyExpected from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpPurgeRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpPurgeReqTable/nhrpPurgeReqEntry/nhrpPurgeRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpPurgeReqTable",
                    "nhrpPurgeReqEntry",
                    "nhrpPurgeRowStatus"
                  ]
                },
                "description": "Retrieve nhrpPurgeRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable"
                  ]
                },
                "description": "Retrieve nhrpClientTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable/nhrpClientEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable",
                    "nhrpClientEntry"
                  ]
                },
                "description": "Retrieve nhrpClientEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable/nhrpClientEntry/nhrpClientIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable",
                    "nhrpClientEntry",
                    "nhrpClientIndex"
                  ]
                },
                "description": "Retrieve nhrpClientIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientInternetworkAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable/nhrpClientEntry/nhrpClientInternetworkAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable",
                    "nhrpClientEntry",
                    "nhrpClientInternetworkAddrType"
                  ]
                },
                "description": "Retrieve nhrpClientInternetworkAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientInternetworkAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable/nhrpClientEntry/nhrpClientInternetworkAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable",
                    "nhrpClientEntry",
                    "nhrpClientInternetworkAddr"
                  ]
                },
                "description": "Retrieve nhrpClientInternetworkAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientNbmaAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable/nhrpClientEntry/nhrpClientNbmaAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable",
                    "nhrpClientEntry",
                    "nhrpClientNbmaAddrType"
                  ]
                },
                "description": "Retrieve nhrpClientNbmaAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientNbmaAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable/nhrpClientEntry/nhrpClientNbmaAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable",
                    "nhrpClientEntry",
                    "nhrpClientNbmaAddr"
                  ]
                },
                "description": "Retrieve nhrpClientNbmaAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientNbmaSubaddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable/nhrpClientEntry/nhrpClientNbmaSubaddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable",
                    "nhrpClientEntry",
                    "nhrpClientNbmaSubaddr"
                  ]
                },
                "description": "Retrieve nhrpClientNbmaSubaddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientInitialRequestTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable/nhrpClientEntry/nhrpClientInitialRequestTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable",
                    "nhrpClientEntry",
                    "nhrpClientInitialRequestTimeout"
                  ]
                },
                "description": "Retrieve nhrpClientInitialRequestTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientRegistrationRequestRetries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable/nhrpClientEntry/nhrpClientRegistrationRequestRetries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable",
                    "nhrpClientEntry",
                    "nhrpClientRegistrationRequestRetries"
                  ]
                },
                "description": "Retrieve nhrpClientRegistrationRequestRetries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientResolutionRequestRetries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable/nhrpClientEntry/nhrpClientResolutionRequestRetries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable",
                    "nhrpClientEntry",
                    "nhrpClientResolutionRequestRetries"
                  ]
                },
                "description": "Retrieve nhrpClientResolutionRequestRetries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientPurgeRequestRetries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable/nhrpClientEntry/nhrpClientPurgeRequestRetries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable",
                    "nhrpClientEntry",
                    "nhrpClientPurgeRequestRetries"
                  ]
                },
                "description": "Retrieve nhrpClientPurgeRequestRetries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientDefaultMtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable/nhrpClientEntry/nhrpClientDefaultMtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable",
                    "nhrpClientEntry",
                    "nhrpClientDefaultMtu"
                  ]
                },
                "description": "Retrieve nhrpClientDefaultMtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientHoldTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable/nhrpClientEntry/nhrpClientHoldTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable",
                    "nhrpClientEntry",
                    "nhrpClientHoldTime"
                  ]
                },
                "description": "Retrieve nhrpClientHoldTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientRequestID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable/nhrpClientEntry/nhrpClientRequestID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable",
                    "nhrpClientEntry",
                    "nhrpClientRequestID"
                  ]
                },
                "description": "Retrieve nhrpClientRequestID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable/nhrpClientEntry/nhrpClientStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable",
                    "nhrpClientEntry",
                    "nhrpClientStorageType"
                  ]
                },
                "description": "Retrieve nhrpClientStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientTable/nhrpClientEntry/nhrpClientRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientTable",
                    "nhrpClientEntry",
                    "nhrpClientRowStatus"
                  ]
                },
                "description": "Retrieve nhrpClientRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientRegistrationTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientRegistrationTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientRegistrationTable"
                  ]
                },
                "description": "Retrieve nhrpClientRegistrationTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientRegistrationEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientRegistrationTable/nhrpClientRegistrationEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientRegistrationTable",
                    "nhrpClientRegistrationEntry"
                  ]
                },
                "description": "Retrieve nhrpClientRegistrationEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientRegistrationTable/nhrpClientRegistrationEntry/nhrpClientIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientRegistrationTable",
                    "nhrpClientRegistrationEntry",
                    "nhrpClientIndex"
                  ]
                },
                "description": "Retrieve nhrpClientIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientRegIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientRegistrationTable/nhrpClientRegistrationEntry/nhrpClientRegIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientRegistrationTable",
                    "nhrpClientRegistrationEntry",
                    "nhrpClientRegIndex"
                  ]
                },
                "description": "Retrieve nhrpClientRegIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientRegUniqueness",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientRegistrationTable/nhrpClientRegistrationEntry/nhrpClientRegUniqueness",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientRegistrationTable",
                    "nhrpClientRegistrationEntry",
                    "nhrpClientRegUniqueness"
                  ]
                },
                "description": "Retrieve nhrpClientRegUniqueness from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientRegState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientRegistrationTable/nhrpClientRegistrationEntry/nhrpClientRegState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientRegistrationTable",
                    "nhrpClientRegistrationEntry",
                    "nhrpClientRegState"
                  ]
                },
                "description": "Retrieve nhrpClientRegState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientRegRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientRegistrationTable/nhrpClientRegistrationEntry/nhrpClientRegRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientRegistrationTable",
                    "nhrpClientRegistrationEntry",
                    "nhrpClientRegRowStatus"
                  ]
                },
                "description": "Retrieve nhrpClientRegRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientNhsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientNhsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientNhsTable"
                  ]
                },
                "description": "Retrieve nhrpClientNhsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientNhsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientNhsTable/nhrpClientNhsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientNhsTable",
                    "nhrpClientNhsEntry"
                  ]
                },
                "description": "Retrieve nhrpClientNhsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientNhsTable/nhrpClientNhsEntry/nhrpClientIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientNhsTable",
                    "nhrpClientNhsEntry",
                    "nhrpClientIndex"
                  ]
                },
                "description": "Retrieve nhrpClientIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientNhsIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientNhsTable/nhrpClientNhsEntry/nhrpClientNhsIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientNhsTable",
                    "nhrpClientNhsEntry",
                    "nhrpClientNhsIndex"
                  ]
                },
                "description": "Retrieve nhrpClientNhsIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientNhsInternetworkAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientNhsTable/nhrpClientNhsEntry/nhrpClientNhsInternetworkAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientNhsTable",
                    "nhrpClientNhsEntry",
                    "nhrpClientNhsInternetworkAddrType"
                  ]
                },
                "description": "Retrieve nhrpClientNhsInternetworkAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientNhsInternetworkAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientNhsTable/nhrpClientNhsEntry/nhrpClientNhsInternetworkAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientNhsTable",
                    "nhrpClientNhsEntry",
                    "nhrpClientNhsInternetworkAddr"
                  ]
                },
                "description": "Retrieve nhrpClientNhsInternetworkAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientNhsNbmaAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientNhsTable/nhrpClientNhsEntry/nhrpClientNhsNbmaAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientNhsTable",
                    "nhrpClientNhsEntry",
                    "nhrpClientNhsNbmaAddrType"
                  ]
                },
                "description": "Retrieve nhrpClientNhsNbmaAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientNhsNbmaAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientNhsTable/nhrpClientNhsEntry/nhrpClientNhsNbmaAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientNhsTable",
                    "nhrpClientNhsEntry",
                    "nhrpClientNhsNbmaAddr"
                  ]
                },
                "description": "Retrieve nhrpClientNhsNbmaAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientNhsNbmaSubaddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientNhsTable/nhrpClientNhsEntry/nhrpClientNhsNbmaSubaddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientNhsTable",
                    "nhrpClientNhsEntry",
                    "nhrpClientNhsNbmaSubaddr"
                  ]
                },
                "description": "Retrieve nhrpClientNhsNbmaSubaddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientNhsInUse",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientNhsTable/nhrpClientNhsEntry/nhrpClientNhsInUse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientNhsTable",
                    "nhrpClientNhsEntry",
                    "nhrpClientNhsInUse"
                  ]
                },
                "description": "Retrieve nhrpClientNhsInUse from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientNhsRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientNhsTable/nhrpClientNhsEntry/nhrpClientNhsRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientNhsTable",
                    "nhrpClientNhsEntry",
                    "nhrpClientNhsRowStatus"
                  ]
                },
                "description": "Retrieve nhrpClientNhsRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable"
                  ]
                },
                "description": "Retrieve nhrpClientStatTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry"
                  ]
                },
                "description": "Retrieve nhrpClientStatEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientIndex"
                  ]
                },
                "description": "Retrieve nhrpClientIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatTxResolveReq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatTxResolveReq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatTxResolveReq"
                  ]
                },
                "description": "Retrieve nhrpClientStatTxResolveReq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxResolveReplyAck",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxResolveReplyAck",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxResolveReplyAck"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxResolveReplyAck from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxResolveReplyNakProhibited",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxResolveReplyNakProhibited",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxResolveReplyNakProhibited"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxResolveReplyNakProhibited from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxResolveReplyNakInsufResources",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxResolveReplyNakInsufResources",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxResolveReplyNakInsufResources"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxResolveReplyNakInsufResources from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxResolveReplyNakNoBinding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxResolveReplyNakNoBinding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxResolveReplyNakNoBinding"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxResolveReplyNakNoBinding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxResolveReplyNakNotUnique",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxResolveReplyNakNotUnique",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxResolveReplyNakNotUnique"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxResolveReplyNakNotUnique from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatTxRegisterReq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatTxRegisterReq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatTxRegisterReq"
                  ]
                },
                "description": "Retrieve nhrpClientStatTxRegisterReq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxRegisterAck",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxRegisterAck",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxRegisterAck"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxRegisterAck from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxRegisterNakProhibited",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxRegisterNakProhibited",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxRegisterNakProhibited"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxRegisterNakProhibited from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxRegisterNakInsufResources",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxRegisterNakInsufResources",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxRegisterNakInsufResources"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxRegisterNakInsufResources from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxRegisterNakAlreadyReg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxRegisterNakAlreadyReg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxRegisterNakAlreadyReg"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxRegisterNakAlreadyReg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxPurgeReq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxPurgeReq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxPurgeReq"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxPurgeReq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatTxPurgeReq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatTxPurgeReq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatTxPurgeReq"
                  ]
                },
                "description": "Retrieve nhrpClientStatTxPurgeReq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxPurgeReply",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxPurgeReply",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxPurgeReply"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxPurgeReply from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatTxPurgeReply",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatTxPurgeReply",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatTxPurgeReply"
                  ]
                },
                "description": "Retrieve nhrpClientStatTxPurgeReply from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatTxErrorIndication",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatTxErrorIndication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatTxErrorIndication"
                  ]
                },
                "description": "Retrieve nhrpClientStatTxErrorIndication from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxErrUnrecognizedExtension",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxErrUnrecognizedExtension",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxErrUnrecognizedExtension"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxErrUnrecognizedExtension from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxErrLoopDetected",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxErrLoopDetected",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxErrLoopDetected"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxErrLoopDetected from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxErrProtoAddrUnreachable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxErrProtoAddrUnreachable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxErrProtoAddrUnreachable"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxErrProtoAddrUnreachable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxErrProtoError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxErrProtoError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxErrProtoError"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxErrProtoError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxErrSduSizeExceeded",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxErrSduSizeExceeded",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxErrSduSizeExceeded"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxErrSduSizeExceeded from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxErrInvalidExtension",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxErrInvalidExtension",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxErrInvalidExtension"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxErrInvalidExtension from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxErrAuthenticationFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxErrAuthenticationFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxErrAuthenticationFailure"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxErrAuthenticationFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatRxErrHopCountExceeded",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatRxErrHopCountExceeded",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatRxErrHopCountExceeded"
                  ]
                },
                "description": "Retrieve nhrpClientStatRxErrHopCountExceeded from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpClientStatDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpClientStatTable/nhrpClientStatEntry/nhrpClientStatDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpClientStatTable",
                    "nhrpClientStatEntry",
                    "nhrpClientStatDiscontinuityTime"
                  ]
                },
                "description": "Retrieve nhrpClientStatDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerTable"
                  ]
                },
                "description": "Retrieve nhrpServerTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerTable/nhrpServerEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerTable",
                    "nhrpServerEntry"
                  ]
                },
                "description": "Retrieve nhrpServerEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerTable/nhrpServerEntry/nhrpServerIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerTable",
                    "nhrpServerEntry",
                    "nhrpServerIndex"
                  ]
                },
                "description": "Retrieve nhrpServerIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerInternetworkAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerTable/nhrpServerEntry/nhrpServerInternetworkAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerTable",
                    "nhrpServerEntry",
                    "nhrpServerInternetworkAddrType"
                  ]
                },
                "description": "Retrieve nhrpServerInternetworkAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerInternetworkAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerTable/nhrpServerEntry/nhrpServerInternetworkAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerTable",
                    "nhrpServerEntry",
                    "nhrpServerInternetworkAddr"
                  ]
                },
                "description": "Retrieve nhrpServerInternetworkAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerNbmaAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerTable/nhrpServerEntry/nhrpServerNbmaAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerTable",
                    "nhrpServerEntry",
                    "nhrpServerNbmaAddrType"
                  ]
                },
                "description": "Retrieve nhrpServerNbmaAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerNbmaAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerTable/nhrpServerEntry/nhrpServerNbmaAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerTable",
                    "nhrpServerEntry",
                    "nhrpServerNbmaAddr"
                  ]
                },
                "description": "Retrieve nhrpServerNbmaAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerNbmaSubaddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerTable/nhrpServerEntry/nhrpServerNbmaSubaddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerTable",
                    "nhrpServerEntry",
                    "nhrpServerNbmaSubaddr"
                  ]
                },
                "description": "Retrieve nhrpServerNbmaSubaddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerTable/nhrpServerEntry/nhrpServerStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerTable",
                    "nhrpServerEntry",
                    "nhrpServerStorageType"
                  ]
                },
                "description": "Retrieve nhrpServerStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerTable/nhrpServerEntry/nhrpServerRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerTable",
                    "nhrpServerEntry",
                    "nhrpServerRowStatus"
                  ]
                },
                "description": "Retrieve nhrpServerRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerCacheTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerCacheTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerCacheTable"
                  ]
                },
                "description": "Retrieve nhrpServerCacheTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerCacheEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerCacheTable/nhrpServerCacheEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerCacheTable",
                    "nhrpServerCacheEntry"
                  ]
                },
                "description": "Retrieve nhrpServerCacheEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheInternetworkAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerCacheTable/nhrpServerCacheEntry/nhrpCacheInternetworkAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerCacheTable",
                    "nhrpServerCacheEntry",
                    "nhrpCacheInternetworkAddrType"
                  ]
                },
                "description": "Retrieve nhrpCacheInternetworkAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheInternetworkAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerCacheTable/nhrpServerCacheEntry/nhrpCacheInternetworkAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerCacheTable",
                    "nhrpServerCacheEntry",
                    "nhrpCacheInternetworkAddr"
                  ]
                },
                "description": "Retrieve nhrpCacheInternetworkAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerCacheTable/nhrpServerCacheEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerCacheTable",
                    "nhrpServerCacheEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpCacheIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerCacheTable/nhrpServerCacheEntry/nhrpCacheIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerCacheTable",
                    "nhrpServerCacheEntry",
                    "nhrpCacheIndex"
                  ]
                },
                "description": "Retrieve nhrpCacheIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerCacheAuthoritative",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerCacheTable/nhrpServerCacheEntry/nhrpServerCacheAuthoritative",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerCacheTable",
                    "nhrpServerCacheEntry",
                    "nhrpServerCacheAuthoritative"
                  ]
                },
                "description": "Retrieve nhrpServerCacheAuthoritative from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerCacheUniqueness",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerCacheTable/nhrpServerCacheEntry/nhrpServerCacheUniqueness",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerCacheTable",
                    "nhrpServerCacheEntry",
                    "nhrpServerCacheUniqueness"
                  ]
                },
                "description": "Retrieve nhrpServerCacheUniqueness from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerNhcTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerNhcTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerNhcTable"
                  ]
                },
                "description": "Retrieve nhrpServerNhcTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerNhcEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerNhcTable/nhrpServerNhcEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerNhcTable",
                    "nhrpServerNhcEntry"
                  ]
                },
                "description": "Retrieve nhrpServerNhcEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerNhcTable/nhrpServerNhcEntry/nhrpServerIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerNhcTable",
                    "nhrpServerNhcEntry",
                    "nhrpServerIndex"
                  ]
                },
                "description": "Retrieve nhrpServerIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerNhcIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerNhcTable/nhrpServerNhcEntry/nhrpServerNhcIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerNhcTable",
                    "nhrpServerNhcEntry",
                    "nhrpServerNhcIndex"
                  ]
                },
                "description": "Retrieve nhrpServerNhcIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerNhcPrefixLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerNhcTable/nhrpServerNhcEntry/nhrpServerNhcPrefixLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerNhcTable",
                    "nhrpServerNhcEntry",
                    "nhrpServerNhcPrefixLength"
                  ]
                },
                "description": "Retrieve nhrpServerNhcPrefixLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerNhcInternetworkAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerNhcTable/nhrpServerNhcEntry/nhrpServerNhcInternetworkAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerNhcTable",
                    "nhrpServerNhcEntry",
                    "nhrpServerNhcInternetworkAddrType"
                  ]
                },
                "description": "Retrieve nhrpServerNhcInternetworkAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerNhcInternetworkAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerNhcTable/nhrpServerNhcEntry/nhrpServerNhcInternetworkAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerNhcTable",
                    "nhrpServerNhcEntry",
                    "nhrpServerNhcInternetworkAddr"
                  ]
                },
                "description": "Retrieve nhrpServerNhcInternetworkAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerNhcNbmaAddrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerNhcTable/nhrpServerNhcEntry/nhrpServerNhcNbmaAddrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerNhcTable",
                    "nhrpServerNhcEntry",
                    "nhrpServerNhcNbmaAddrType"
                  ]
                },
                "description": "Retrieve nhrpServerNhcNbmaAddrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerNhcNbmaAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerNhcTable/nhrpServerNhcEntry/nhrpServerNhcNbmaAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerNhcTable",
                    "nhrpServerNhcEntry",
                    "nhrpServerNhcNbmaAddr"
                  ]
                },
                "description": "Retrieve nhrpServerNhcNbmaAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerNhcNbmaSubaddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerNhcTable/nhrpServerNhcEntry/nhrpServerNhcNbmaSubaddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerNhcTable",
                    "nhrpServerNhcEntry",
                    "nhrpServerNhcNbmaSubaddr"
                  ]
                },
                "description": "Retrieve nhrpServerNhcNbmaSubaddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerNhcInUse",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerNhcTable/nhrpServerNhcEntry/nhrpServerNhcInUse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerNhcTable",
                    "nhrpServerNhcEntry",
                    "nhrpServerNhcInUse"
                  ]
                },
                "description": "Retrieve nhrpServerNhcInUse from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerNhcRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerNhcTable/nhrpServerNhcEntry/nhrpServerNhcRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerNhcTable",
                    "nhrpServerNhcEntry",
                    "nhrpServerNhcRowStatus"
                  ]
                },
                "description": "Retrieve nhrpServerNhcRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable"
                  ]
                },
                "description": "Retrieve nhrpServerStatTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry"
                  ]
                },
                "description": "Retrieve nhrpServerStatEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerIndex"
                  ]
                },
                "description": "Retrieve nhrpServerIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatRxResolveReq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatRxResolveReq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatRxResolveReq"
                  ]
                },
                "description": "Retrieve nhrpServerStatRxResolveReq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxResolveReplyAck",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxResolveReplyAck",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxResolveReplyAck"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxResolveReplyAck from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxResolveReplyNakProhibited",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxResolveReplyNakProhibited",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxResolveReplyNakProhibited"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxResolveReplyNakProhibited from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxResolveReplyNakInsufResources",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxResolveReplyNakInsufResources",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxResolveReplyNakInsufResources"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxResolveReplyNakInsufResources from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxResolveReplyNakNoBinding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxResolveReplyNakNoBinding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxResolveReplyNakNoBinding"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxResolveReplyNakNoBinding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxResolveReplyNakNotUnique",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxResolveReplyNakNotUnique",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxResolveReplyNakNotUnique"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxResolveReplyNakNotUnique from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatRxRegisterReq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatRxRegisterReq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatRxRegisterReq"
                  ]
                },
                "description": "Retrieve nhrpServerStatRxRegisterReq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxRegisterAck",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxRegisterAck",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxRegisterAck"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxRegisterAck from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxRegisterNakProhibited",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxRegisterNakProhibited",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxRegisterNakProhibited"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxRegisterNakProhibited from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxRegisterNakInsufResources",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxRegisterNakInsufResources",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxRegisterNakInsufResources"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxRegisterNakInsufResources from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxRegisterNakAlreadyReg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxRegisterNakAlreadyReg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxRegisterNakAlreadyReg"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxRegisterNakAlreadyReg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatRxPurgeReq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatRxPurgeReq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatRxPurgeReq"
                  ]
                },
                "description": "Retrieve nhrpServerStatRxPurgeReq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxPurgeReq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxPurgeReq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxPurgeReq"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxPurgeReq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatRxPurgeReply",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatRxPurgeReply",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatRxPurgeReply"
                  ]
                },
                "description": "Retrieve nhrpServerStatRxPurgeReply from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxPurgeReply",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxPurgeReply",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxPurgeReply"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxPurgeReply from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatRxErrUnrecognizedExtension",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatRxErrUnrecognizedExtension",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatRxErrUnrecognizedExtension"
                  ]
                },
                "description": "Retrieve nhrpServerStatRxErrUnrecognizedExtension from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatRxErrLoopDetected",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatRxErrLoopDetected",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatRxErrLoopDetected"
                  ]
                },
                "description": "Retrieve nhrpServerStatRxErrLoopDetected from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatRxErrProtoAddrUnreachable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatRxErrProtoAddrUnreachable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatRxErrProtoAddrUnreachable"
                  ]
                },
                "description": "Retrieve nhrpServerStatRxErrProtoAddrUnreachable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatRxErrProtoError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatRxErrProtoError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatRxErrProtoError"
                  ]
                },
                "description": "Retrieve nhrpServerStatRxErrProtoError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatRxErrSduSizeExceeded",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatRxErrSduSizeExceeded",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatRxErrSduSizeExceeded"
                  ]
                },
                "description": "Retrieve nhrpServerStatRxErrSduSizeExceeded from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatRxErrInvalidExtension",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatRxErrInvalidExtension",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatRxErrInvalidExtension"
                  ]
                },
                "description": "Retrieve nhrpServerStatRxErrInvalidExtension from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatRxErrInvalidResReplyReceived",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatRxErrInvalidResReplyReceived",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatRxErrInvalidResReplyReceived"
                  ]
                },
                "description": "Retrieve nhrpServerStatRxErrInvalidResReplyReceived from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatRxErrAuthenticationFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatRxErrAuthenticationFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatRxErrAuthenticationFailure"
                  ]
                },
                "description": "Retrieve nhrpServerStatRxErrAuthenticationFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatRxErrHopCountExceeded",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatRxErrHopCountExceeded",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatRxErrHopCountExceeded"
                  ]
                },
                "description": "Retrieve nhrpServerStatRxErrHopCountExceeded from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxErrUnrecognizedExtension",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxErrUnrecognizedExtension",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxErrUnrecognizedExtension"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxErrUnrecognizedExtension from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxErrLoopDetected",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxErrLoopDetected",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxErrLoopDetected"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxErrLoopDetected from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxErrProtoAddrUnreachable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxErrProtoAddrUnreachable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxErrProtoAddrUnreachable"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxErrProtoAddrUnreachable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxErrProtoError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxErrProtoError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxErrProtoError"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxErrProtoError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxErrSduSizeExceeded",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxErrSduSizeExceeded",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxErrSduSizeExceeded"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxErrSduSizeExceeded from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxErrInvalidExtension",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxErrInvalidExtension",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxErrInvalidExtension"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxErrInvalidExtension from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxErrAuthenticationFailure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxErrAuthenticationFailure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxErrAuthenticationFailure"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxErrAuthenticationFailure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatTxErrHopCountExceeded",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatTxErrHopCountExceeded",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatTxErrHopCountExceeded"
                  ]
                },
                "description": "Retrieve nhrpServerStatTxErrHopCountExceeded from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatFwResolveReq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatFwResolveReq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatFwResolveReq"
                  ]
                },
                "description": "Retrieve nhrpServerStatFwResolveReq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatFwResolveReply",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatFwResolveReply",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatFwResolveReply"
                  ]
                },
                "description": "Retrieve nhrpServerStatFwResolveReply from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatFwRegisterReq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatFwRegisterReq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatFwRegisterReq"
                  ]
                },
                "description": "Retrieve nhrpServerStatFwRegisterReq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatFwRegisterReply",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatFwRegisterReply",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatFwRegisterReply"
                  ]
                },
                "description": "Retrieve nhrpServerStatFwRegisterReply from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatFwPurgeReq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatFwPurgeReq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatFwPurgeReq"
                  ]
                },
                "description": "Retrieve nhrpServerStatFwPurgeReq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatFwPurgeReply",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatFwPurgeReply",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatFwPurgeReply"
                  ]
                },
                "description": "Retrieve nhrpServerStatFwPurgeReply from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatFwErrorIndication",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatFwErrorIndication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatFwErrorIndication"
                  ]
                },
                "description": "Retrieve nhrpServerStatFwErrorIndication from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nhrpServerStatDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NHRP-MIB:NHRP-MIB/nhrpServerStatTable/nhrpServerStatEntry/nhrpServerStatDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NHRP-MIB:NHRP-MIB",
                    "nhrpServerStatTable",
                    "nhrpServerStatEntry",
                    "nhrpServerStatDiscontinuityTime"
                  ]
                },
                "description": "Retrieve nhrpServerStatDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "NOTIFICATION-LOG-MIB",
          "description": "Cisco IOS-XE MIB - NOTIFICATION-LOG-MIB\n\nMIB data from `NOTIFICATION-LOG-MIB` module.\n\n**Root containers:** 1 (NOTIFICATION-LOG-MIB)\n**Paths:** 46 | **Descendants:** 45\n\nAll endpoints are read-only (GET).\n\nEndpoints: 46 | Operations: 46",
          "item": [
            {
              "name": "GET Get NOTIFICATION-LOG-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB"
                  ]
                },
                "description": "Retrieve NOTIFICATION-LOG-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmConfig"
                  ]
                },
                "description": "Retrieve nlmConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmConfigGlobalEntryLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmConfig/nlmConfigGlobalEntryLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmConfig",
                    "nlmConfigGlobalEntryLimit"
                  ]
                },
                "description": "Retrieve nlmConfigGlobalEntryLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmConfigGlobalAgeOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmConfig/nlmConfigGlobalAgeOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmConfig",
                    "nlmConfigGlobalAgeOut"
                  ]
                },
                "description": "Retrieve nlmConfigGlobalAgeOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmStats",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmStats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmStats"
                  ]
                },
                "description": "Retrieve nlmStats from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmStatsGlobalNotificationsLogged",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmStats/nlmStatsGlobalNotificationsLogged",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmStats",
                    "nlmStatsGlobalNotificationsLogged"
                  ]
                },
                "description": "Retrieve nlmStatsGlobalNotificationsLogged from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmStatsGlobalNotificationsBumped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmStats/nlmStatsGlobalNotificationsBumped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmStats",
                    "nlmStatsGlobalNotificationsBumped"
                  ]
                },
                "description": "Retrieve nlmStatsGlobalNotificationsBumped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmConfigLogTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmConfigLogTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmConfigLogTable"
                  ]
                },
                "description": "Retrieve nlmConfigLogTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmConfigLogEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmConfigLogTable/nlmConfigLogEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmConfigLogTable",
                    "nlmConfigLogEntry"
                  ]
                },
                "description": "Retrieve nlmConfigLogEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmConfigLogTable/nlmConfigLogEntry/nlmLogName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmConfigLogTable",
                    "nlmConfigLogEntry",
                    "nlmLogName"
                  ]
                },
                "description": "Retrieve nlmLogName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmConfigLogFilterName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmConfigLogTable/nlmConfigLogEntry/nlmConfigLogFilterName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmConfigLogTable",
                    "nlmConfigLogEntry",
                    "nlmConfigLogFilterName"
                  ]
                },
                "description": "Retrieve nlmConfigLogFilterName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmConfigLogEntryLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmConfigLogTable/nlmConfigLogEntry/nlmConfigLogEntryLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmConfigLogTable",
                    "nlmConfigLogEntry",
                    "nlmConfigLogEntryLimit"
                  ]
                },
                "description": "Retrieve nlmConfigLogEntryLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmConfigLogAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmConfigLogTable/nlmConfigLogEntry/nlmConfigLogAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmConfigLogTable",
                    "nlmConfigLogEntry",
                    "nlmConfigLogAdminStatus"
                  ]
                },
                "description": "Retrieve nlmConfigLogAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmConfigLogOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmConfigLogTable/nlmConfigLogEntry/nlmConfigLogOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmConfigLogTable",
                    "nlmConfigLogEntry",
                    "nlmConfigLogOperStatus"
                  ]
                },
                "description": "Retrieve nlmConfigLogOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmConfigLogStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmConfigLogTable/nlmConfigLogEntry/nlmConfigLogStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmConfigLogTable",
                    "nlmConfigLogEntry",
                    "nlmConfigLogStorageType"
                  ]
                },
                "description": "Retrieve nlmConfigLogStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmConfigLogEntryStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmConfigLogTable/nlmConfigLogEntry/nlmConfigLogEntryStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmConfigLogTable",
                    "nlmConfigLogEntry",
                    "nlmConfigLogEntryStatus"
                  ]
                },
                "description": "Retrieve nlmConfigLogEntryStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmStatsLogNotificationsLogged",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmConfigLogTable/nlmConfigLogEntry/nlmStatsLogNotificationsLogged",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmConfigLogTable",
                    "nlmConfigLogEntry",
                    "nlmStatsLogNotificationsLogged"
                  ]
                },
                "description": "Retrieve nlmStatsLogNotificationsLogged from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmStatsLogNotificationsBumped",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmConfigLogTable/nlmConfigLogEntry/nlmStatsLogNotificationsBumped",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmConfigLogTable",
                    "nlmConfigLogEntry",
                    "nlmStatsLogNotificationsBumped"
                  ]
                },
                "description": "Retrieve nlmStatsLogNotificationsBumped from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogTable"
                  ]
                },
                "description": "Retrieve nlmLogTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogTable/nlmLogEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogTable",
                    "nlmLogEntry"
                  ]
                },
                "description": "Retrieve nlmLogEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogTable/nlmLogEntry/nlmLogName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogTable",
                    "nlmLogEntry",
                    "nlmLogName"
                  ]
                },
                "description": "Retrieve nlmLogName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogTable/nlmLogEntry/nlmLogIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogTable",
                    "nlmLogEntry",
                    "nlmLogIndex"
                  ]
                },
                "description": "Retrieve nlmLogIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogTable/nlmLogEntry/nlmLogTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogTable",
                    "nlmLogEntry",
                    "nlmLogTime"
                  ]
                },
                "description": "Retrieve nlmLogTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogDateAndTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogTable/nlmLogEntry/nlmLogDateAndTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogTable",
                    "nlmLogEntry",
                    "nlmLogDateAndTime"
                  ]
                },
                "description": "Retrieve nlmLogDateAndTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogEngineID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogTable/nlmLogEntry/nlmLogEngineID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogTable",
                    "nlmLogEntry",
                    "nlmLogEngineID"
                  ]
                },
                "description": "Retrieve nlmLogEngineID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogEngineTAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogTable/nlmLogEntry/nlmLogEngineTAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogTable",
                    "nlmLogEntry",
                    "nlmLogEngineTAddress"
                  ]
                },
                "description": "Retrieve nlmLogEngineTAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogEngineTDomain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogTable/nlmLogEntry/nlmLogEngineTDomain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogTable",
                    "nlmLogEntry",
                    "nlmLogEngineTDomain"
                  ]
                },
                "description": "Retrieve nlmLogEngineTDomain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogContextEngineID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogTable/nlmLogEntry/nlmLogContextEngineID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogTable",
                    "nlmLogEntry",
                    "nlmLogContextEngineID"
                  ]
                },
                "description": "Retrieve nlmLogContextEngineID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogContextName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogTable/nlmLogEntry/nlmLogContextName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogTable",
                    "nlmLogEntry",
                    "nlmLogContextName"
                  ]
                },
                "description": "Retrieve nlmLogContextName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogNotificationID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogTable/nlmLogEntry/nlmLogNotificationID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogTable",
                    "nlmLogEntry",
                    "nlmLogNotificationID"
                  ]
                },
                "description": "Retrieve nlmLogNotificationID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogVariableTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogVariableTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogVariableTable"
                  ]
                },
                "description": "Retrieve nlmLogVariableTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogVariableEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogVariableTable/nlmLogVariableEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogVariableTable",
                    "nlmLogVariableEntry"
                  ]
                },
                "description": "Retrieve nlmLogVariableEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogVariableTable/nlmLogVariableEntry/nlmLogName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogVariableTable",
                    "nlmLogVariableEntry",
                    "nlmLogName"
                  ]
                },
                "description": "Retrieve nlmLogName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogVariableTable/nlmLogVariableEntry/nlmLogIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogVariableTable",
                    "nlmLogVariableEntry",
                    "nlmLogIndex"
                  ]
                },
                "description": "Retrieve nlmLogIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogVariableIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogVariableTable/nlmLogVariableEntry/nlmLogVariableIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogVariableTable",
                    "nlmLogVariableEntry",
                    "nlmLogVariableIndex"
                  ]
                },
                "description": "Retrieve nlmLogVariableIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogVariableID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogVariableTable/nlmLogVariableEntry/nlmLogVariableID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogVariableTable",
                    "nlmLogVariableEntry",
                    "nlmLogVariableID"
                  ]
                },
                "description": "Retrieve nlmLogVariableID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogVariableValueType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogVariableTable/nlmLogVariableEntry/nlmLogVariableValueType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogVariableTable",
                    "nlmLogVariableEntry",
                    "nlmLogVariableValueType"
                  ]
                },
                "description": "Retrieve nlmLogVariableValueType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogVariableCounter32Val",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogVariableTable/nlmLogVariableEntry/nlmLogVariableCounter32Val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogVariableTable",
                    "nlmLogVariableEntry",
                    "nlmLogVariableCounter32Val"
                  ]
                },
                "description": "Retrieve nlmLogVariableCounter32Val from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogVariableUnsigned32Val",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogVariableTable/nlmLogVariableEntry/nlmLogVariableUnsigned32Val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogVariableTable",
                    "nlmLogVariableEntry",
                    "nlmLogVariableUnsigned32Val"
                  ]
                },
                "description": "Retrieve nlmLogVariableUnsigned32Val from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogVariableTimeTicksVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogVariableTable/nlmLogVariableEntry/nlmLogVariableTimeTicksVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogVariableTable",
                    "nlmLogVariableEntry",
                    "nlmLogVariableTimeTicksVal"
                  ]
                },
                "description": "Retrieve nlmLogVariableTimeTicksVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogVariableInteger32Val",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogVariableTable/nlmLogVariableEntry/nlmLogVariableInteger32Val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogVariableTable",
                    "nlmLogVariableEntry",
                    "nlmLogVariableInteger32Val"
                  ]
                },
                "description": "Retrieve nlmLogVariableInteger32Val from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogVariableOctetStringVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogVariableTable/nlmLogVariableEntry/nlmLogVariableOctetStringVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogVariableTable",
                    "nlmLogVariableEntry",
                    "nlmLogVariableOctetStringVal"
                  ]
                },
                "description": "Retrieve nlmLogVariableOctetStringVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogVariableIpAddressVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogVariableTable/nlmLogVariableEntry/nlmLogVariableIpAddressVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogVariableTable",
                    "nlmLogVariableEntry",
                    "nlmLogVariableIpAddressVal"
                  ]
                },
                "description": "Retrieve nlmLogVariableIpAddressVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogVariableOidVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogVariableTable/nlmLogVariableEntry/nlmLogVariableOidVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogVariableTable",
                    "nlmLogVariableEntry",
                    "nlmLogVariableOidVal"
                  ]
                },
                "description": "Retrieve nlmLogVariableOidVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogVariableCounter64Val",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogVariableTable/nlmLogVariableEntry/nlmLogVariableCounter64Val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogVariableTable",
                    "nlmLogVariableEntry",
                    "nlmLogVariableCounter64Val"
                  ]
                },
                "description": "Retrieve nlmLogVariableCounter64Val from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlmLogVariableOpaqueVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB/nlmLogVariableTable/nlmLogVariableEntry/nlmLogVariableOpaqueVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "NOTIFICATION-LOG-MIB:NOTIFICATION-LOG-MIB",
                    "nlmLogVariableTable",
                    "nlmLogVariableEntry",
                    "nlmLogVariableOpaqueVal"
                  ]
                },
                "description": "Retrieve nlmLogVariableOpaqueVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "OSPF-MIB",
          "description": "Cisco IOS-XE MIB - OSPF-MIB\n\nMIB data from `OSPF-MIB` module.\n\n**Root containers:** 1 (OSPF-MIB)\n**Paths:** 199 | **Descendants:** 198\n\nAll endpoints are read-only (GET).\n\nEndpoints: 199 | Operations: 199",
          "item": [
            {
              "name": "GET Get OSPF-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB"
                  ]
                },
                "description": "Retrieve OSPF-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfGeneralGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup"
                  ]
                },
                "description": "Retrieve ospfGeneralGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfRouterId"
                  ]
                },
                "description": "Retrieve ospfRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAdminStat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfAdminStat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfAdminStat"
                  ]
                },
                "description": "Retrieve ospfAdminStat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVersionNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfVersionNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfVersionNumber"
                  ]
                },
                "description": "Retrieve ospfVersionNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaBdrRtrStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfAreaBdrRtrStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfAreaBdrRtrStatus"
                  ]
                },
                "description": "Retrieve ospfAreaBdrRtrStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfASBdrRtrStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfASBdrRtrStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfASBdrRtrStatus"
                  ]
                },
                "description": "Retrieve ospfASBdrRtrStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfExternLsaCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfExternLsaCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfExternLsaCount"
                  ]
                },
                "description": "Retrieve ospfExternLsaCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfExternLsaCksumSum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfExternLsaCksumSum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfExternLsaCksumSum"
                  ]
                },
                "description": "Retrieve ospfExternLsaCksumSum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfTOSSupport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfTOSSupport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfTOSSupport"
                  ]
                },
                "description": "Retrieve ospfTOSSupport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfOriginateNewLsas",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfOriginateNewLsas",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfOriginateNewLsas"
                  ]
                },
                "description": "Retrieve ospfOriginateNewLsas from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfRxNewLsas",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfRxNewLsas",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfRxNewLsas"
                  ]
                },
                "description": "Retrieve ospfRxNewLsas from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfExtLsdbLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfExtLsdbLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfExtLsdbLimit"
                  ]
                },
                "description": "Retrieve ospfExtLsdbLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfMulticastExtensions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfMulticastExtensions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfMulticastExtensions"
                  ]
                },
                "description": "Retrieve ospfMulticastExtensions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfExitOverflowInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfExitOverflowInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfExitOverflowInterval"
                  ]
                },
                "description": "Retrieve ospfExitOverflowInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfDemandExtensions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfDemandExtensions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfDemandExtensions"
                  ]
                },
                "description": "Retrieve ospfDemandExtensions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfRFC1583Compatibility",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfRFC1583Compatibility",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfRFC1583Compatibility"
                  ]
                },
                "description": "Retrieve ospfRFC1583Compatibility from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfOpaqueLsaSupport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfOpaqueLsaSupport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfOpaqueLsaSupport"
                  ]
                },
                "description": "Retrieve ospfOpaqueLsaSupport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfReferenceBandwidth",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfReferenceBandwidth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfReferenceBandwidth"
                  ]
                },
                "description": "Retrieve ospfReferenceBandwidth from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfRestartSupport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfRestartSupport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfRestartSupport"
                  ]
                },
                "description": "Retrieve ospfRestartSupport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfRestartInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfRestartInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfRestartInterval"
                  ]
                },
                "description": "Retrieve ospfRestartInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfRestartStrictLsaChecking",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfRestartStrictLsaChecking",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfRestartStrictLsaChecking"
                  ]
                },
                "description": "Retrieve ospfRestartStrictLsaChecking from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfRestartStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfRestartStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfRestartStatus"
                  ]
                },
                "description": "Retrieve ospfRestartStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfRestartAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfRestartAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfRestartAge"
                  ]
                },
                "description": "Retrieve ospfRestartAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfRestartExitReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfRestartExitReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfRestartExitReason"
                  ]
                },
                "description": "Retrieve ospfRestartExitReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAsLsaCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfAsLsaCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfAsLsaCount"
                  ]
                },
                "description": "Retrieve ospfAsLsaCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAsLsaCksumSum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfAsLsaCksumSum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfAsLsaCksumSum"
                  ]
                },
                "description": "Retrieve ospfAsLsaCksumSum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfStubRouterSupport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfStubRouterSupport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfStubRouterSupport"
                  ]
                },
                "description": "Retrieve ospfStubRouterSupport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfStubRouterAdvertisement",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfStubRouterAdvertisement",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfStubRouterAdvertisement"
                  ]
                },
                "description": "Retrieve ospfStubRouterAdvertisement from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfDiscontinuityTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfGeneralGroup/ospfDiscontinuityTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfGeneralGroup",
                    "ospfDiscontinuityTime"
                  ]
                },
                "description": "Retrieve ospfDiscontinuityTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaTable"
                  ]
                },
                "description": "Retrieve ospfAreaTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaTable/ospfAreaEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaTable",
                    "ospfAreaEntry"
                  ]
                },
                "description": "Retrieve ospfAreaEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaTable/ospfAreaEntry/ospfAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaTable",
                    "ospfAreaEntry",
                    "ospfAreaId"
                  ]
                },
                "description": "Retrieve ospfAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAuthType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaTable/ospfAreaEntry/ospfAuthType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaTable",
                    "ospfAreaEntry",
                    "ospfAuthType"
                  ]
                },
                "description": "Retrieve ospfAuthType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfImportAsExtern",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaTable/ospfAreaEntry/ospfImportAsExtern",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaTable",
                    "ospfAreaEntry",
                    "ospfImportAsExtern"
                  ]
                },
                "description": "Retrieve ospfImportAsExtern from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfSpfRuns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaTable/ospfAreaEntry/ospfSpfRuns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaTable",
                    "ospfAreaEntry",
                    "ospfSpfRuns"
                  ]
                },
                "description": "Retrieve ospfSpfRuns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaBdrRtrCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaTable/ospfAreaEntry/ospfAreaBdrRtrCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaTable",
                    "ospfAreaEntry",
                    "ospfAreaBdrRtrCount"
                  ]
                },
                "description": "Retrieve ospfAreaBdrRtrCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAsBdrRtrCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaTable/ospfAreaEntry/ospfAsBdrRtrCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaTable",
                    "ospfAreaEntry",
                    "ospfAsBdrRtrCount"
                  ]
                },
                "description": "Retrieve ospfAsBdrRtrCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaLsaCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaTable/ospfAreaEntry/ospfAreaLsaCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaTable",
                    "ospfAreaEntry",
                    "ospfAreaLsaCount"
                  ]
                },
                "description": "Retrieve ospfAreaLsaCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaLsaCksumSum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaTable/ospfAreaEntry/ospfAreaLsaCksumSum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaTable",
                    "ospfAreaEntry",
                    "ospfAreaLsaCksumSum"
                  ]
                },
                "description": "Retrieve ospfAreaLsaCksumSum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaSummary",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaTable/ospfAreaEntry/ospfAreaSummary",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaTable",
                    "ospfAreaEntry",
                    "ospfAreaSummary"
                  ]
                },
                "description": "Retrieve ospfAreaSummary from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaTable/ospfAreaEntry/ospfAreaStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaTable",
                    "ospfAreaEntry",
                    "ospfAreaStatus"
                  ]
                },
                "description": "Retrieve ospfAreaStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaNssaTranslatorRole",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaTable/ospfAreaEntry/ospfAreaNssaTranslatorRole",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaTable",
                    "ospfAreaEntry",
                    "ospfAreaNssaTranslatorRole"
                  ]
                },
                "description": "Retrieve ospfAreaNssaTranslatorRole from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaNssaTranslatorState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaTable/ospfAreaEntry/ospfAreaNssaTranslatorState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaTable",
                    "ospfAreaEntry",
                    "ospfAreaNssaTranslatorState"
                  ]
                },
                "description": "Retrieve ospfAreaNssaTranslatorState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaNssaTranslatorStabilityInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaTable/ospfAreaEntry/ospfAreaNssaTranslatorStabilityInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaTable",
                    "ospfAreaEntry",
                    "ospfAreaNssaTranslatorStabilityInterval"
                  ]
                },
                "description": "Retrieve ospfAreaNssaTranslatorStabilityInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaNssaTranslatorEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaTable/ospfAreaEntry/ospfAreaNssaTranslatorEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaTable",
                    "ospfAreaEntry",
                    "ospfAreaNssaTranslatorEvents"
                  ]
                },
                "description": "Retrieve ospfAreaNssaTranslatorEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfStubAreaTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfStubAreaTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfStubAreaTable"
                  ]
                },
                "description": "Retrieve ospfStubAreaTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfStubAreaEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfStubAreaTable/ospfStubAreaEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfStubAreaTable",
                    "ospfStubAreaEntry"
                  ]
                },
                "description": "Retrieve ospfStubAreaEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfStubAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfStubAreaTable/ospfStubAreaEntry/ospfStubAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfStubAreaTable",
                    "ospfStubAreaEntry",
                    "ospfStubAreaId"
                  ]
                },
                "description": "Retrieve ospfStubAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfStubTOS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfStubAreaTable/ospfStubAreaEntry/ospfStubTOS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfStubAreaTable",
                    "ospfStubAreaEntry",
                    "ospfStubTOS"
                  ]
                },
                "description": "Retrieve ospfStubTOS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfStubMetric",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfStubAreaTable/ospfStubAreaEntry/ospfStubMetric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfStubAreaTable",
                    "ospfStubAreaEntry",
                    "ospfStubMetric"
                  ]
                },
                "description": "Retrieve ospfStubMetric from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfStubStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfStubAreaTable/ospfStubAreaEntry/ospfStubStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfStubAreaTable",
                    "ospfStubAreaEntry",
                    "ospfStubStatus"
                  ]
                },
                "description": "Retrieve ospfStubStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfStubMetricType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfStubAreaTable/ospfStubAreaEntry/ospfStubMetricType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfStubAreaTable",
                    "ospfStubAreaEntry",
                    "ospfStubMetricType"
                  ]
                },
                "description": "Retrieve ospfStubMetricType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLsdbTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLsdbTable"
                  ]
                },
                "description": "Retrieve ospfLsdbTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLsdbTable/ospfLsdbEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLsdbTable",
                    "ospfLsdbEntry"
                  ]
                },
                "description": "Retrieve ospfLsdbEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLsdbTable/ospfLsdbEntry/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLsdbTable",
                    "ospfLsdbEntry",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLsdbTable/ospfLsdbEntry/ospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLsdbTable",
                    "ospfLsdbEntry",
                    "ospfLsdbType"
                  ]
                },
                "description": "Retrieve ospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLsdbTable/ospfLsdbEntry/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLsdbTable",
                    "ospfLsdbEntry",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLsdbTable/ospfLsdbEntry/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLsdbTable",
                    "ospfLsdbEntry",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbSequence",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLsdbTable/ospfLsdbEntry/ospfLsdbSequence",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLsdbTable",
                    "ospfLsdbEntry",
                    "ospfLsdbSequence"
                  ]
                },
                "description": "Retrieve ospfLsdbSequence from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLsdbTable/ospfLsdbEntry/ospfLsdbAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLsdbTable",
                    "ospfLsdbEntry",
                    "ospfLsdbAge"
                  ]
                },
                "description": "Retrieve ospfLsdbAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbChecksum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLsdbTable/ospfLsdbEntry/ospfLsdbChecksum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLsdbTable",
                    "ospfLsdbEntry",
                    "ospfLsdbChecksum"
                  ]
                },
                "description": "Retrieve ospfLsdbChecksum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAdvertisement",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLsdbTable/ospfLsdbEntry/ospfLsdbAdvertisement",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLsdbTable",
                    "ospfLsdbEntry",
                    "ospfLsdbAdvertisement"
                  ]
                },
                "description": "Retrieve ospfLsdbAdvertisement from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaRangeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaRangeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaRangeTable"
                  ]
                },
                "description": "Retrieve ospfAreaRangeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaRangeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaRangeTable/ospfAreaRangeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaRangeTable",
                    "ospfAreaRangeEntry"
                  ]
                },
                "description": "Retrieve ospfAreaRangeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaRangeAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaRangeTable/ospfAreaRangeEntry/ospfAreaRangeAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaRangeTable",
                    "ospfAreaRangeEntry",
                    "ospfAreaRangeAreaId"
                  ]
                },
                "description": "Retrieve ospfAreaRangeAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaRangeNet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaRangeTable/ospfAreaRangeEntry/ospfAreaRangeNet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaRangeTable",
                    "ospfAreaRangeEntry",
                    "ospfAreaRangeNet"
                  ]
                },
                "description": "Retrieve ospfAreaRangeNet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaRangeMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaRangeTable/ospfAreaRangeEntry/ospfAreaRangeMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaRangeTable",
                    "ospfAreaRangeEntry",
                    "ospfAreaRangeMask"
                  ]
                },
                "description": "Retrieve ospfAreaRangeMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaRangeStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaRangeTable/ospfAreaRangeEntry/ospfAreaRangeStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaRangeTable",
                    "ospfAreaRangeEntry",
                    "ospfAreaRangeStatus"
                  ]
                },
                "description": "Retrieve ospfAreaRangeStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaRangeEffect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaRangeTable/ospfAreaRangeEntry/ospfAreaRangeEffect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaRangeTable",
                    "ospfAreaRangeEntry",
                    "ospfAreaRangeEffect"
                  ]
                },
                "description": "Retrieve ospfAreaRangeEffect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfHostTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfHostTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfHostTable"
                  ]
                },
                "description": "Retrieve ospfHostTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfHostEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfHostTable/ospfHostEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfHostTable",
                    "ospfHostEntry"
                  ]
                },
                "description": "Retrieve ospfHostEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfHostIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfHostTable/ospfHostEntry/ospfHostIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfHostTable",
                    "ospfHostEntry",
                    "ospfHostIpAddress"
                  ]
                },
                "description": "Retrieve ospfHostIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfHostTOS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfHostTable/ospfHostEntry/ospfHostTOS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfHostTable",
                    "ospfHostEntry",
                    "ospfHostTOS"
                  ]
                },
                "description": "Retrieve ospfHostTOS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfHostMetric",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfHostTable/ospfHostEntry/ospfHostMetric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfHostTable",
                    "ospfHostEntry",
                    "ospfHostMetric"
                  ]
                },
                "description": "Retrieve ospfHostMetric from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfHostStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfHostTable/ospfHostEntry/ospfHostStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfHostTable",
                    "ospfHostEntry",
                    "ospfHostStatus"
                  ]
                },
                "description": "Retrieve ospfHostStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfHostCfgAreaID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfHostTable/ospfHostEntry/ospfHostCfgAreaID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfHostTable",
                    "ospfHostEntry",
                    "ospfHostCfgAreaID"
                  ]
                },
                "description": "Retrieve ospfHostCfgAreaID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable"
                  ]
                },
                "description": "Retrieve ospfIfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry"
                  ]
                },
                "description": "Retrieve ospfIfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfIpAddress"
                  ]
                },
                "description": "Retrieve ospfIfIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAddressLessIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfAddressLessIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfAddressLessIf"
                  ]
                },
                "description": "Retrieve ospfAddressLessIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfAreaId"
                  ]
                },
                "description": "Retrieve ospfIfAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfType"
                  ]
                },
                "description": "Retrieve ospfIfType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfAdminStat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfAdminStat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfAdminStat"
                  ]
                },
                "description": "Retrieve ospfIfAdminStat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfRtrPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfRtrPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfRtrPriority"
                  ]
                },
                "description": "Retrieve ospfIfRtrPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfTransitDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfTransitDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfTransitDelay"
                  ]
                },
                "description": "Retrieve ospfIfTransitDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfRetransInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfRetransInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfRetransInterval"
                  ]
                },
                "description": "Retrieve ospfIfRetransInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfHelloInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfHelloInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfHelloInterval"
                  ]
                },
                "description": "Retrieve ospfIfHelloInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfRtrDeadInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfRtrDeadInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfRtrDeadInterval"
                  ]
                },
                "description": "Retrieve ospfIfRtrDeadInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfPollInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfPollInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfPollInterval"
                  ]
                },
                "description": "Retrieve ospfIfPollInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfState"
                  ]
                },
                "description": "Retrieve ospfIfState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfDesignatedRouter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfDesignatedRouter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfDesignatedRouter"
                  ]
                },
                "description": "Retrieve ospfIfDesignatedRouter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfBackupDesignatedRouter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfBackupDesignatedRouter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfBackupDesignatedRouter"
                  ]
                },
                "description": "Retrieve ospfIfBackupDesignatedRouter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfEvents"
                  ]
                },
                "description": "Retrieve ospfIfEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfAuthKey",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfAuthKey",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfAuthKey"
                  ]
                },
                "description": "Retrieve ospfIfAuthKey from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfStatus"
                  ]
                },
                "description": "Retrieve ospfIfStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfMulticastForwarding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfMulticastForwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfMulticastForwarding"
                  ]
                },
                "description": "Retrieve ospfIfMulticastForwarding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfDemand",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfDemand",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfDemand"
                  ]
                },
                "description": "Retrieve ospfIfDemand from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfAuthType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfAuthType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfAuthType"
                  ]
                },
                "description": "Retrieve ospfIfAuthType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfLsaCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfLsaCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfLsaCount"
                  ]
                },
                "description": "Retrieve ospfIfLsaCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfLsaCksumSum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfLsaCksumSum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfLsaCksumSum"
                  ]
                },
                "description": "Retrieve ospfIfLsaCksumSum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfDesignatedRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfDesignatedRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfDesignatedRouterId"
                  ]
                },
                "description": "Retrieve ospfIfDesignatedRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfBackupDesignatedRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfTable/ospfIfEntry/ospfIfBackupDesignatedRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfTable",
                    "ospfIfEntry",
                    "ospfIfBackupDesignatedRouterId"
                  ]
                },
                "description": "Retrieve ospfIfBackupDesignatedRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfMetricTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfMetricTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfMetricTable"
                  ]
                },
                "description": "Retrieve ospfIfMetricTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfMetricEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfMetricTable/ospfIfMetricEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfMetricTable",
                    "ospfIfMetricEntry"
                  ]
                },
                "description": "Retrieve ospfIfMetricEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfMetricIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfMetricTable/ospfIfMetricEntry/ospfIfMetricIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfMetricTable",
                    "ospfIfMetricEntry",
                    "ospfIfMetricIpAddress"
                  ]
                },
                "description": "Retrieve ospfIfMetricIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfMetricAddressLessIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfMetricTable/ospfIfMetricEntry/ospfIfMetricAddressLessIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfMetricTable",
                    "ospfIfMetricEntry",
                    "ospfIfMetricAddressLessIf"
                  ]
                },
                "description": "Retrieve ospfIfMetricAddressLessIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfMetricTOS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfMetricTable/ospfIfMetricEntry/ospfIfMetricTOS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfMetricTable",
                    "ospfIfMetricEntry",
                    "ospfIfMetricTOS"
                  ]
                },
                "description": "Retrieve ospfIfMetricTOS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfMetricValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfMetricTable/ospfIfMetricEntry/ospfIfMetricValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfMetricTable",
                    "ospfIfMetricEntry",
                    "ospfIfMetricValue"
                  ]
                },
                "description": "Retrieve ospfIfMetricValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfMetricStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfIfMetricTable/ospfIfMetricEntry/ospfIfMetricStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfIfMetricTable",
                    "ospfIfMetricEntry",
                    "ospfIfMetricStatus"
                  ]
                },
                "description": "Retrieve ospfIfMetricStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtIfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtIfTable"
                  ]
                },
                "description": "Retrieve ospfVirtIfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtIfTable/ospfVirtIfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtIfTable",
                    "ospfVirtIfEntry"
                  ]
                },
                "description": "Retrieve ospfVirtIfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtIfTable/ospfVirtIfEntry/ospfVirtIfAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtIfTable",
                    "ospfVirtIfEntry",
                    "ospfVirtIfAreaId"
                  ]
                },
                "description": "Retrieve ospfVirtIfAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfNeighbor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtIfTable/ospfVirtIfEntry/ospfVirtIfNeighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtIfTable",
                    "ospfVirtIfEntry",
                    "ospfVirtIfNeighbor"
                  ]
                },
                "description": "Retrieve ospfVirtIfNeighbor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfTransitDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtIfTable/ospfVirtIfEntry/ospfVirtIfTransitDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtIfTable",
                    "ospfVirtIfEntry",
                    "ospfVirtIfTransitDelay"
                  ]
                },
                "description": "Retrieve ospfVirtIfTransitDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfRetransInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtIfTable/ospfVirtIfEntry/ospfVirtIfRetransInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtIfTable",
                    "ospfVirtIfEntry",
                    "ospfVirtIfRetransInterval"
                  ]
                },
                "description": "Retrieve ospfVirtIfRetransInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfHelloInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtIfTable/ospfVirtIfEntry/ospfVirtIfHelloInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtIfTable",
                    "ospfVirtIfEntry",
                    "ospfVirtIfHelloInterval"
                  ]
                },
                "description": "Retrieve ospfVirtIfHelloInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfRtrDeadInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtIfTable/ospfVirtIfEntry/ospfVirtIfRtrDeadInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtIfTable",
                    "ospfVirtIfEntry",
                    "ospfVirtIfRtrDeadInterval"
                  ]
                },
                "description": "Retrieve ospfVirtIfRtrDeadInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtIfTable/ospfVirtIfEntry/ospfVirtIfState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtIfTable",
                    "ospfVirtIfEntry",
                    "ospfVirtIfState"
                  ]
                },
                "description": "Retrieve ospfVirtIfState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtIfTable/ospfVirtIfEntry/ospfVirtIfEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtIfTable",
                    "ospfVirtIfEntry",
                    "ospfVirtIfEvents"
                  ]
                },
                "description": "Retrieve ospfVirtIfEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfAuthKey",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtIfTable/ospfVirtIfEntry/ospfVirtIfAuthKey",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtIfTable",
                    "ospfVirtIfEntry",
                    "ospfVirtIfAuthKey"
                  ]
                },
                "description": "Retrieve ospfVirtIfAuthKey from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtIfTable/ospfVirtIfEntry/ospfVirtIfStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtIfTable",
                    "ospfVirtIfEntry",
                    "ospfVirtIfStatus"
                  ]
                },
                "description": "Retrieve ospfVirtIfStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfAuthType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtIfTable/ospfVirtIfEntry/ospfVirtIfAuthType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtIfTable",
                    "ospfVirtIfEntry",
                    "ospfVirtIfAuthType"
                  ]
                },
                "description": "Retrieve ospfVirtIfAuthType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfLsaCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtIfTable/ospfVirtIfEntry/ospfVirtIfLsaCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtIfTable",
                    "ospfVirtIfEntry",
                    "ospfVirtIfLsaCount"
                  ]
                },
                "description": "Retrieve ospfVirtIfLsaCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfLsaCksumSum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtIfTable/ospfVirtIfEntry/ospfVirtIfLsaCksumSum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtIfTable",
                    "ospfVirtIfEntry",
                    "ospfVirtIfLsaCksumSum"
                  ]
                },
                "description": "Retrieve ospfVirtIfLsaCksumSum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfNbrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfNbrTable"
                  ]
                },
                "description": "Retrieve ospfNbrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfNbrTable/ospfNbrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfNbrTable",
                    "ospfNbrEntry"
                  ]
                },
                "description": "Retrieve ospfNbrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfNbrTable/ospfNbrEntry/ospfNbrIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfNbrTable",
                    "ospfNbrEntry",
                    "ospfNbrIpAddr"
                  ]
                },
                "description": "Retrieve ospfNbrIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrAddressLessIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfNbrTable/ospfNbrEntry/ospfNbrAddressLessIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfNbrTable",
                    "ospfNbrEntry",
                    "ospfNbrAddressLessIndex"
                  ]
                },
                "description": "Retrieve ospfNbrAddressLessIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrRtrId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfNbrTable/ospfNbrEntry/ospfNbrRtrId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfNbrTable",
                    "ospfNbrEntry",
                    "ospfNbrRtrId"
                  ]
                },
                "description": "Retrieve ospfNbrRtrId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrOptions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfNbrTable/ospfNbrEntry/ospfNbrOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfNbrTable",
                    "ospfNbrEntry",
                    "ospfNbrOptions"
                  ]
                },
                "description": "Retrieve ospfNbrOptions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfNbrTable/ospfNbrEntry/ospfNbrPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfNbrTable",
                    "ospfNbrEntry",
                    "ospfNbrPriority"
                  ]
                },
                "description": "Retrieve ospfNbrPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfNbrTable/ospfNbrEntry/ospfNbrState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfNbrTable",
                    "ospfNbrEntry",
                    "ospfNbrState"
                  ]
                },
                "description": "Retrieve ospfNbrState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfNbrTable/ospfNbrEntry/ospfNbrEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfNbrTable",
                    "ospfNbrEntry",
                    "ospfNbrEvents"
                  ]
                },
                "description": "Retrieve ospfNbrEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrLsRetransQLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfNbrTable/ospfNbrEntry/ospfNbrLsRetransQLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfNbrTable",
                    "ospfNbrEntry",
                    "ospfNbrLsRetransQLen"
                  ]
                },
                "description": "Retrieve ospfNbrLsRetransQLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbmaNbrStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfNbrTable/ospfNbrEntry/ospfNbmaNbrStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfNbrTable",
                    "ospfNbrEntry",
                    "ospfNbmaNbrStatus"
                  ]
                },
                "description": "Retrieve ospfNbmaNbrStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbmaNbrPermanence",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfNbrTable/ospfNbrEntry/ospfNbmaNbrPermanence",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfNbrTable",
                    "ospfNbrEntry",
                    "ospfNbmaNbrPermanence"
                  ]
                },
                "description": "Retrieve ospfNbmaNbrPermanence from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrHelloSuppressed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfNbrTable/ospfNbrEntry/ospfNbrHelloSuppressed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfNbrTable",
                    "ospfNbrEntry",
                    "ospfNbrHelloSuppressed"
                  ]
                },
                "description": "Retrieve ospfNbrHelloSuppressed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrRestartHelperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfNbrTable/ospfNbrEntry/ospfNbrRestartHelperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfNbrTable",
                    "ospfNbrEntry",
                    "ospfNbrRestartHelperStatus"
                  ]
                },
                "description": "Retrieve ospfNbrRestartHelperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrRestartHelperAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfNbrTable/ospfNbrEntry/ospfNbrRestartHelperAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfNbrTable",
                    "ospfNbrEntry",
                    "ospfNbrRestartHelperAge"
                  ]
                },
                "description": "Retrieve ospfNbrRestartHelperAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrRestartHelperExitReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfNbrTable/ospfNbrEntry/ospfNbrRestartHelperExitReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfNbrTable",
                    "ospfNbrEntry",
                    "ospfNbrRestartHelperExitReason"
                  ]
                },
                "description": "Retrieve ospfNbrRestartHelperExitReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtNbrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtNbrTable"
                  ]
                },
                "description": "Retrieve ospfVirtNbrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtNbrTable/ospfVirtNbrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtNbrTable",
                    "ospfVirtNbrEntry"
                  ]
                },
                "description": "Retrieve ospfVirtNbrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrArea",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtNbrTable/ospfVirtNbrEntry/ospfVirtNbrArea",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtNbrTable",
                    "ospfVirtNbrEntry",
                    "ospfVirtNbrArea"
                  ]
                },
                "description": "Retrieve ospfVirtNbrArea from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrRtrId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtNbrTable/ospfVirtNbrEntry/ospfVirtNbrRtrId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtNbrTable",
                    "ospfVirtNbrEntry",
                    "ospfVirtNbrRtrId"
                  ]
                },
                "description": "Retrieve ospfVirtNbrRtrId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtNbrTable/ospfVirtNbrEntry/ospfVirtNbrIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtNbrTable",
                    "ospfVirtNbrEntry",
                    "ospfVirtNbrIpAddr"
                  ]
                },
                "description": "Retrieve ospfVirtNbrIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrOptions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtNbrTable/ospfVirtNbrEntry/ospfVirtNbrOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtNbrTable",
                    "ospfVirtNbrEntry",
                    "ospfVirtNbrOptions"
                  ]
                },
                "description": "Retrieve ospfVirtNbrOptions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtNbrTable/ospfVirtNbrEntry/ospfVirtNbrState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtNbrTable",
                    "ospfVirtNbrEntry",
                    "ospfVirtNbrState"
                  ]
                },
                "description": "Retrieve ospfVirtNbrState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtNbrTable/ospfVirtNbrEntry/ospfVirtNbrEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtNbrTable",
                    "ospfVirtNbrEntry",
                    "ospfVirtNbrEvents"
                  ]
                },
                "description": "Retrieve ospfVirtNbrEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrLsRetransQLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtNbrTable/ospfVirtNbrEntry/ospfVirtNbrLsRetransQLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtNbrTable",
                    "ospfVirtNbrEntry",
                    "ospfVirtNbrLsRetransQLen"
                  ]
                },
                "description": "Retrieve ospfVirtNbrLsRetransQLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrHelloSuppressed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtNbrTable/ospfVirtNbrEntry/ospfVirtNbrHelloSuppressed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtNbrTable",
                    "ospfVirtNbrEntry",
                    "ospfVirtNbrHelloSuppressed"
                  ]
                },
                "description": "Retrieve ospfVirtNbrHelloSuppressed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrRestartHelperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtNbrTable/ospfVirtNbrEntry/ospfVirtNbrRestartHelperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtNbrTable",
                    "ospfVirtNbrEntry",
                    "ospfVirtNbrRestartHelperStatus"
                  ]
                },
                "description": "Retrieve ospfVirtNbrRestartHelperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrRestartHelperAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtNbrTable/ospfVirtNbrEntry/ospfVirtNbrRestartHelperAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtNbrTable",
                    "ospfVirtNbrEntry",
                    "ospfVirtNbrRestartHelperAge"
                  ]
                },
                "description": "Retrieve ospfVirtNbrRestartHelperAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrRestartHelperExitReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtNbrTable/ospfVirtNbrEntry/ospfVirtNbrRestartHelperExitReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtNbrTable",
                    "ospfVirtNbrEntry",
                    "ospfVirtNbrRestartHelperExitReason"
                  ]
                },
                "description": "Retrieve ospfVirtNbrRestartHelperExitReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaAggregateTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaAggregateTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaAggregateTable"
                  ]
                },
                "description": "Retrieve ospfAreaAggregateTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaAggregateEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaAggregateTable/ospfAreaAggregateEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaAggregateTable",
                    "ospfAreaAggregateEntry"
                  ]
                },
                "description": "Retrieve ospfAreaAggregateEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaAggregateAreaID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaAggregateTable/ospfAreaAggregateEntry/ospfAreaAggregateAreaID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaAggregateTable",
                    "ospfAreaAggregateEntry",
                    "ospfAreaAggregateAreaID"
                  ]
                },
                "description": "Retrieve ospfAreaAggregateAreaID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaAggregateLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaAggregateTable/ospfAreaAggregateEntry/ospfAreaAggregateLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaAggregateTable",
                    "ospfAreaAggregateEntry",
                    "ospfAreaAggregateLsdbType"
                  ]
                },
                "description": "Retrieve ospfAreaAggregateLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaAggregateNet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaAggregateTable/ospfAreaAggregateEntry/ospfAreaAggregateNet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaAggregateTable",
                    "ospfAreaAggregateEntry",
                    "ospfAreaAggregateNet"
                  ]
                },
                "description": "Retrieve ospfAreaAggregateNet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaAggregateMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaAggregateTable/ospfAreaAggregateEntry/ospfAreaAggregateMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaAggregateTable",
                    "ospfAreaAggregateEntry",
                    "ospfAreaAggregateMask"
                  ]
                },
                "description": "Retrieve ospfAreaAggregateMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaAggregateStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaAggregateTable/ospfAreaAggregateEntry/ospfAreaAggregateStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaAggregateTable",
                    "ospfAreaAggregateEntry",
                    "ospfAreaAggregateStatus"
                  ]
                },
                "description": "Retrieve ospfAreaAggregateStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaAggregateEffect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaAggregateTable/ospfAreaAggregateEntry/ospfAreaAggregateEffect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaAggregateTable",
                    "ospfAreaAggregateEntry",
                    "ospfAreaAggregateEffect"
                  ]
                },
                "description": "Retrieve ospfAreaAggregateEffect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaAggregateExtRouteTag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaAggregateTable/ospfAreaAggregateEntry/ospfAreaAggregateExtRouteTag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaAggregateTable",
                    "ospfAreaAggregateEntry",
                    "ospfAreaAggregateExtRouteTag"
                  ]
                },
                "description": "Retrieve ospfAreaAggregateExtRouteTag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLocalLsdbTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLocalLsdbTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLocalLsdbTable"
                  ]
                },
                "description": "Retrieve ospfLocalLsdbTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLocalLsdbEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLocalLsdbTable/ospfLocalLsdbEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLocalLsdbTable",
                    "ospfLocalLsdbEntry"
                  ]
                },
                "description": "Retrieve ospfLocalLsdbEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLocalLsdbIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLocalLsdbTable/ospfLocalLsdbEntry/ospfLocalLsdbIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLocalLsdbTable",
                    "ospfLocalLsdbEntry",
                    "ospfLocalLsdbIpAddress"
                  ]
                },
                "description": "Retrieve ospfLocalLsdbIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLocalLsdbAddressLessIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLocalLsdbTable/ospfLocalLsdbEntry/ospfLocalLsdbAddressLessIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLocalLsdbTable",
                    "ospfLocalLsdbEntry",
                    "ospfLocalLsdbAddressLessIf"
                  ]
                },
                "description": "Retrieve ospfLocalLsdbAddressLessIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLocalLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLocalLsdbTable/ospfLocalLsdbEntry/ospfLocalLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLocalLsdbTable",
                    "ospfLocalLsdbEntry",
                    "ospfLocalLsdbType"
                  ]
                },
                "description": "Retrieve ospfLocalLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLocalLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLocalLsdbTable/ospfLocalLsdbEntry/ospfLocalLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLocalLsdbTable",
                    "ospfLocalLsdbEntry",
                    "ospfLocalLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLocalLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLocalLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLocalLsdbTable/ospfLocalLsdbEntry/ospfLocalLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLocalLsdbTable",
                    "ospfLocalLsdbEntry",
                    "ospfLocalLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLocalLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLocalLsdbSequence",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLocalLsdbTable/ospfLocalLsdbEntry/ospfLocalLsdbSequence",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLocalLsdbTable",
                    "ospfLocalLsdbEntry",
                    "ospfLocalLsdbSequence"
                  ]
                },
                "description": "Retrieve ospfLocalLsdbSequence from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLocalLsdbAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLocalLsdbTable/ospfLocalLsdbEntry/ospfLocalLsdbAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLocalLsdbTable",
                    "ospfLocalLsdbEntry",
                    "ospfLocalLsdbAge"
                  ]
                },
                "description": "Retrieve ospfLocalLsdbAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLocalLsdbChecksum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLocalLsdbTable/ospfLocalLsdbEntry/ospfLocalLsdbChecksum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLocalLsdbTable",
                    "ospfLocalLsdbEntry",
                    "ospfLocalLsdbChecksum"
                  ]
                },
                "description": "Retrieve ospfLocalLsdbChecksum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLocalLsdbAdvertisement",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfLocalLsdbTable/ospfLocalLsdbEntry/ospfLocalLsdbAdvertisement",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfLocalLsdbTable",
                    "ospfLocalLsdbEntry",
                    "ospfLocalLsdbAdvertisement"
                  ]
                },
                "description": "Retrieve ospfLocalLsdbAdvertisement from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtLocalLsdbTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtLocalLsdbTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtLocalLsdbTable"
                  ]
                },
                "description": "Retrieve ospfVirtLocalLsdbTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtLocalLsdbEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtLocalLsdbTable/ospfVirtLocalLsdbEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtLocalLsdbTable",
                    "ospfVirtLocalLsdbEntry"
                  ]
                },
                "description": "Retrieve ospfVirtLocalLsdbEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtLocalLsdbTransitArea",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtLocalLsdbTable/ospfVirtLocalLsdbEntry/ospfVirtLocalLsdbTransitArea",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtLocalLsdbTable",
                    "ospfVirtLocalLsdbEntry",
                    "ospfVirtLocalLsdbTransitArea"
                  ]
                },
                "description": "Retrieve ospfVirtLocalLsdbTransitArea from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtLocalLsdbNeighbor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtLocalLsdbTable/ospfVirtLocalLsdbEntry/ospfVirtLocalLsdbNeighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtLocalLsdbTable",
                    "ospfVirtLocalLsdbEntry",
                    "ospfVirtLocalLsdbNeighbor"
                  ]
                },
                "description": "Retrieve ospfVirtLocalLsdbNeighbor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtLocalLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtLocalLsdbTable/ospfVirtLocalLsdbEntry/ospfVirtLocalLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtLocalLsdbTable",
                    "ospfVirtLocalLsdbEntry",
                    "ospfVirtLocalLsdbType"
                  ]
                },
                "description": "Retrieve ospfVirtLocalLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtLocalLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtLocalLsdbTable/ospfVirtLocalLsdbEntry/ospfVirtLocalLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtLocalLsdbTable",
                    "ospfVirtLocalLsdbEntry",
                    "ospfVirtLocalLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfVirtLocalLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtLocalLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtLocalLsdbTable/ospfVirtLocalLsdbEntry/ospfVirtLocalLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtLocalLsdbTable",
                    "ospfVirtLocalLsdbEntry",
                    "ospfVirtLocalLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfVirtLocalLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtLocalLsdbSequence",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtLocalLsdbTable/ospfVirtLocalLsdbEntry/ospfVirtLocalLsdbSequence",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtLocalLsdbTable",
                    "ospfVirtLocalLsdbEntry",
                    "ospfVirtLocalLsdbSequence"
                  ]
                },
                "description": "Retrieve ospfVirtLocalLsdbSequence from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtLocalLsdbAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtLocalLsdbTable/ospfVirtLocalLsdbEntry/ospfVirtLocalLsdbAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtLocalLsdbTable",
                    "ospfVirtLocalLsdbEntry",
                    "ospfVirtLocalLsdbAge"
                  ]
                },
                "description": "Retrieve ospfVirtLocalLsdbAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtLocalLsdbChecksum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtLocalLsdbTable/ospfVirtLocalLsdbEntry/ospfVirtLocalLsdbChecksum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtLocalLsdbTable",
                    "ospfVirtLocalLsdbEntry",
                    "ospfVirtLocalLsdbChecksum"
                  ]
                },
                "description": "Retrieve ospfVirtLocalLsdbChecksum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtLocalLsdbAdvertisement",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfVirtLocalLsdbTable/ospfVirtLocalLsdbEntry/ospfVirtLocalLsdbAdvertisement",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfVirtLocalLsdbTable",
                    "ospfVirtLocalLsdbEntry",
                    "ospfVirtLocalLsdbAdvertisement"
                  ]
                },
                "description": "Retrieve ospfVirtLocalLsdbAdvertisement from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAsLsdbTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAsLsdbTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAsLsdbTable"
                  ]
                },
                "description": "Retrieve ospfAsLsdbTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAsLsdbEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAsLsdbTable/ospfAsLsdbEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAsLsdbTable",
                    "ospfAsLsdbEntry"
                  ]
                },
                "description": "Retrieve ospfAsLsdbEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAsLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAsLsdbTable/ospfAsLsdbEntry/ospfAsLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAsLsdbTable",
                    "ospfAsLsdbEntry",
                    "ospfAsLsdbType"
                  ]
                },
                "description": "Retrieve ospfAsLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAsLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAsLsdbTable/ospfAsLsdbEntry/ospfAsLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAsLsdbTable",
                    "ospfAsLsdbEntry",
                    "ospfAsLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfAsLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAsLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAsLsdbTable/ospfAsLsdbEntry/ospfAsLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAsLsdbTable",
                    "ospfAsLsdbEntry",
                    "ospfAsLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfAsLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAsLsdbSequence",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAsLsdbTable/ospfAsLsdbEntry/ospfAsLsdbSequence",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAsLsdbTable",
                    "ospfAsLsdbEntry",
                    "ospfAsLsdbSequence"
                  ]
                },
                "description": "Retrieve ospfAsLsdbSequence from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAsLsdbAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAsLsdbTable/ospfAsLsdbEntry/ospfAsLsdbAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAsLsdbTable",
                    "ospfAsLsdbEntry",
                    "ospfAsLsdbAge"
                  ]
                },
                "description": "Retrieve ospfAsLsdbAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAsLsdbChecksum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAsLsdbTable/ospfAsLsdbEntry/ospfAsLsdbChecksum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAsLsdbTable",
                    "ospfAsLsdbEntry",
                    "ospfAsLsdbChecksum"
                  ]
                },
                "description": "Retrieve ospfAsLsdbChecksum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAsLsdbAdvertisement",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAsLsdbTable/ospfAsLsdbEntry/ospfAsLsdbAdvertisement",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAsLsdbTable",
                    "ospfAsLsdbEntry",
                    "ospfAsLsdbAdvertisement"
                  ]
                },
                "description": "Retrieve ospfAsLsdbAdvertisement from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaLsaCountTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaLsaCountTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaLsaCountTable"
                  ]
                },
                "description": "Retrieve ospfAreaLsaCountTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaLsaCountEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaLsaCountTable/ospfAreaLsaCountEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaLsaCountTable",
                    "ospfAreaLsaCountEntry"
                  ]
                },
                "description": "Retrieve ospfAreaLsaCountEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaLsaCountAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaLsaCountTable/ospfAreaLsaCountEntry/ospfAreaLsaCountAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaLsaCountTable",
                    "ospfAreaLsaCountEntry",
                    "ospfAreaLsaCountAreaId"
                  ]
                },
                "description": "Retrieve ospfAreaLsaCountAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaLsaCountLsaType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaLsaCountTable/ospfAreaLsaCountEntry/ospfAreaLsaCountLsaType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaLsaCountTable",
                    "ospfAreaLsaCountEntry",
                    "ospfAreaLsaCountLsaType"
                  ]
                },
                "description": "Retrieve ospfAreaLsaCountLsaType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaLsaCountNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-MIB:OSPF-MIB/ospfAreaLsaCountTable/ospfAreaLsaCountEntry/ospfAreaLsaCountNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-MIB:OSPF-MIB",
                    "ospfAreaLsaCountTable",
                    "ospfAreaLsaCountEntry",
                    "ospfAreaLsaCountNumber"
                  ]
                },
                "description": "Retrieve ospfAreaLsaCountNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "OSPF-TRAP-MIB",
          "description": "Cisco IOS-XE MIB - OSPF-TRAP-MIB\n\nMIB data from `OSPF-TRAP-MIB` module.\n\n**Root containers:** 1 (OSPF-TRAP-MIB)\n**Paths:** 101 | **Descendants:** 296\n\nAll endpoints are read-only (GET).\n\nEndpoints: 101 | Operations: 101",
          "item": [
            {
              "name": "GET Get OSPF-TRAP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB"
                  ]
                },
                "description": "Retrieve OSPF-TRAP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfTrapControl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl"
                  ]
                },
                "description": "Retrieve ospfTrapControl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfSetTrap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/ospfSetTrap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "ospfSetTrap"
                  ]
                },
                "description": "Retrieve ospfSetTrap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfConfigErrorType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/ospfConfigErrorType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "ospfConfigErrorType"
                  ]
                },
                "description": "Retrieve ospfConfigErrorType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfPacketType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/ospfPacketType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "ospfPacketType"
                  ]
                },
                "description": "Retrieve ospfPacketType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfPacketSrc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/ospfPacketSrc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "ospfPacketSrc"
                  ]
                },
                "description": "Retrieve ospfPacketSrc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-1/ospfRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-1",
                    "ospfRouterId"
                  ]
                },
                "description": "Retrieve ospfRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfNeighbor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-2/ospfVirtIfNeighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-2",
                    "ospfVirtIfNeighbor"
                  ]
                },
                "description": "Retrieve ospfVirtIfNeighbor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-2/ospfVirtIfAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-2",
                    "ospfVirtIfAreaId"
                  ]
                },
                "description": "Retrieve ospfVirtIfAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-3/ospfVirtIfAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-3",
                    "ospfVirtIfAreaId"
                  ]
                },
                "description": "Retrieve ospfVirtIfAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfNeighbor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-3/ospfVirtIfNeighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-3",
                    "ospfVirtIfNeighbor"
                  ]
                },
                "description": "Retrieve ospfVirtIfNeighbor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfVirtIfAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfVirtIfAreaId"
                  ]
                },
                "description": "Retrieve ospfVirtIfAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfNeighbor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfVirtIfNeighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfVirtIfNeighbor"
                  ]
                },
                "description": "Retrieve ospfVirtIfNeighbor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtIfState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfVirtIfState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfVirtIfState"
                  ]
                },
                "description": "Retrieve ospfVirtIfState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrAddressLessIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-2/ospfNbrAddressLessIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-2",
                    "ospfNbrAddressLessIndex"
                  ]
                },
                "description": "Retrieve ospfNbrAddressLessIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-2/ospfNbrIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-2",
                    "ospfNbrIpAddr"
                  ]
                },
                "description": "Retrieve ospfNbrIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-3/ospfNbrIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-3",
                    "ospfNbrIpAddr"
                  ]
                },
                "description": "Retrieve ospfNbrIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrAddressLessIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-3/ospfNbrAddressLessIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-3",
                    "ospfNbrAddressLessIndex"
                  ]
                },
                "description": "Retrieve ospfNbrAddressLessIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfNbrIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfNbrIpAddr"
                  ]
                },
                "description": "Retrieve ospfNbrIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrAddressLessIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfNbrAddressLessIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfNbrAddressLessIndex"
                  ]
                },
                "description": "Retrieve ospfNbrAddressLessIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrRtrId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfNbrRtrId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfNbrRtrId"
                  ]
                },
                "description": "Retrieve ospfNbrRtrId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-5/ospfNbrIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-5",
                    "ospfNbrIpAddr"
                  ]
                },
                "description": "Retrieve ospfNbrIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrAddressLessIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-5/ospfNbrAddressLessIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-5",
                    "ospfNbrAddressLessIndex"
                  ]
                },
                "description": "Retrieve ospfNbrAddressLessIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-5/ospfNbrState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-5",
                    "ospfNbrState"
                  ]
                },
                "description": "Retrieve ospfNbrState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrRtrId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-2/ospfVirtNbrRtrId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-2",
                    "ospfVirtNbrRtrId"
                  ]
                },
                "description": "Retrieve ospfVirtNbrRtrId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrArea",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-2/ospfVirtNbrArea",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-2",
                    "ospfVirtNbrArea"
                  ]
                },
                "description": "Retrieve ospfVirtNbrArea from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrArea",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-3/ospfVirtNbrArea",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-3",
                    "ospfVirtNbrArea"
                  ]
                },
                "description": "Retrieve ospfVirtNbrArea from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrRtrId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-3/ospfVirtNbrRtrId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-3",
                    "ospfVirtNbrRtrId"
                  ]
                },
                "description": "Retrieve ospfVirtNbrRtrId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrArea",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfVirtNbrArea",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfVirtNbrArea"
                  ]
                },
                "description": "Retrieve ospfVirtNbrArea from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrRtrId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfVirtNbrRtrId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfVirtNbrRtrId"
                  ]
                },
                "description": "Retrieve ospfVirtNbrRtrId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfVirtNbrState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfVirtNbrState"
                  ]
                },
                "description": "Retrieve ospfVirtNbrState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAddressLessIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-2/ospfAddressLessIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-2",
                    "ospfAddressLessIf"
                  ]
                },
                "description": "Retrieve ospfAddressLessIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-2/ospfIfIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-2",
                    "ospfIfIpAddress"
                  ]
                },
                "description": "Retrieve ospfIfIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-3/ospfIfIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-3",
                    "ospfIfIpAddress"
                  ]
                },
                "description": "Retrieve ospfIfIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAddressLessIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-3/ospfAddressLessIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-3",
                    "ospfAddressLessIf"
                  ]
                },
                "description": "Retrieve ospfAddressLessIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfPacketSrc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfPacketSrc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfPacketSrc"
                  ]
                },
                "description": "Retrieve ospfPacketSrc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfConfigErrorType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-5/ospfConfigErrorType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-5",
                    "ospfConfigErrorType"
                  ]
                },
                "description": "Retrieve ospfConfigErrorType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-6"
                  ]
                },
                "description": "Retrieve object-6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfPacketType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-6/ospfPacketType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-6",
                    "ospfPacketType"
                  ]
                },
                "description": "Retrieve ospfPacketType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfConfigErrorType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfConfigErrorType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfConfigErrorType"
                  ]
                },
                "description": "Retrieve ospfConfigErrorType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfPacketType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-5/ospfPacketType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-5",
                    "ospfPacketType"
                  ]
                },
                "description": "Retrieve ospfPacketType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfPacketType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfPacketType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfPacketType"
                  ]
                },
                "description": "Retrieve ospfPacketType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-6/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-6",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-6/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-6",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-6/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-6",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-6/ospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-6",
                    "ospfLsdbType"
                  ]
                },
                "description": "Retrieve ospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-7",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-7",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-7"
                  ]
                },
                "description": "Retrieve object-7 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-7/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-7",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-7/ospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-7",
                    "ospfLsdbType"
                  ]
                },
                "description": "Retrieve ospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-7/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-7",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-7/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-7",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-8",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-8",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-8"
                  ]
                },
                "description": "Retrieve object-8 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-8/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-8",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-8/ospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-8",
                    "ospfLsdbType"
                  ]
                },
                "description": "Retrieve ospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-8/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-8",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-8/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-8",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-5/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-5",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-5/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-5",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-5/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-5",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-5/ospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-5",
                    "ospfLsdbType"
                  ]
                },
                "description": "Retrieve ospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-2/ospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-2",
                    "ospfLsdbType"
                  ]
                },
                "description": "Retrieve ospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-2/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-2",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-2/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-2",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-2/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-2",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-3/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-3",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-3/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-3",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-3/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-3",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-3/ospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-3",
                    "ospfLsdbType"
                  ]
                },
                "description": "Retrieve ospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfLsdbAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfLsdbAreaId"
                  ]
                },
                "description": "Retrieve ospfLsdbAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfLsdbType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfLsdbType"
                  ]
                },
                "description": "Retrieve ospfLsdbType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbRouterId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfLsdbRouterId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfLsdbRouterId"
                  ]
                },
                "description": "Retrieve ospfLsdbRouterId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfLsdbLsid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfLsdbLsid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfLsdbLsid"
                  ]
                },
                "description": "Retrieve ospfLsdbLsid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfExtLsdbLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-2/ospfExtLsdbLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-2",
                    "ospfExtLsdbLimit"
                  ]
                },
                "description": "Retrieve ospfExtLsdbLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfIfIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfIfIpAddress"
                  ]
                },
                "description": "Retrieve ospfIfIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAddressLessIf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfAddressLessIf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfAddressLessIf"
                  ]
                },
                "description": "Retrieve ospfAddressLessIf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfIfState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfIfState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfIfState"
                  ]
                },
                "description": "Retrieve ospfIfState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-2/ospfAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-2",
                    "ospfAreaId"
                  ]
                },
                "description": "Retrieve ospfAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-3/ospfAreaId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-3",
                    "ospfAreaId"
                  ]
                },
                "description": "Retrieve ospfAreaId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfAreaNssaTranslatorState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-3/ospfAreaNssaTranslatorState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-3",
                    "ospfAreaNssaTranslatorState"
                  ]
                },
                "description": "Retrieve ospfAreaNssaTranslatorState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfRestartStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-2/ospfRestartStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-2",
                    "ospfRestartStatus"
                  ]
                },
                "description": "Retrieve ospfRestartStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfRestartInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-3/ospfRestartInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-3",
                    "ospfRestartInterval"
                  ]
                },
                "description": "Retrieve ospfRestartInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfRestartExitReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfRestartExitReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfRestartExitReason"
                  ]
                },
                "description": "Retrieve ospfRestartExitReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrRestartHelperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-5/ospfNbrRestartHelperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-5",
                    "ospfNbrRestartHelperStatus"
                  ]
                },
                "description": "Retrieve ospfNbrRestartHelperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-6/ospfNbrIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-6",
                    "ospfNbrIpAddr"
                  ]
                },
                "description": "Retrieve ospfNbrIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrAddressLessIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-6/ospfNbrAddressLessIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-6",
                    "ospfNbrAddressLessIndex"
                  ]
                },
                "description": "Retrieve ospfNbrAddressLessIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrRestartHelperAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-6/ospfNbrRestartHelperAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-6",
                    "ospfNbrRestartHelperAge"
                  ]
                },
                "description": "Retrieve ospfNbrRestartHelperAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrIpAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-7/ospfNbrIpAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-7",
                    "ospfNbrIpAddr"
                  ]
                },
                "description": "Retrieve ospfNbrIpAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrAddressLessIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-7/ospfNbrAddressLessIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-7",
                    "ospfNbrAddressLessIndex"
                  ]
                },
                "description": "Retrieve ospfNbrAddressLessIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfNbrRestartHelperExitReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-7/ospfNbrRestartHelperExitReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-7",
                    "ospfNbrRestartHelperExitReason"
                  ]
                },
                "description": "Retrieve ospfNbrRestartHelperExitReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrRestartHelperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-4/ospfVirtNbrRestartHelperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-4",
                    "ospfVirtNbrRestartHelperStatus"
                  ]
                },
                "description": "Retrieve ospfVirtNbrRestartHelperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrArea",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-5/ospfVirtNbrArea",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-5",
                    "ospfVirtNbrArea"
                  ]
                },
                "description": "Retrieve ospfVirtNbrArea from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrRtrId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-5/ospfVirtNbrRtrId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-5",
                    "ospfVirtNbrRtrId"
                  ]
                },
                "description": "Retrieve ospfVirtNbrRtrId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrRestartHelperAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-5/ospfVirtNbrRestartHelperAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-5",
                    "ospfVirtNbrRestartHelperAge"
                  ]
                },
                "description": "Retrieve ospfVirtNbrRestartHelperAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrArea",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-6/ospfVirtNbrArea",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-6",
                    "ospfVirtNbrArea"
                  ]
                },
                "description": "Retrieve ospfVirtNbrArea from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrRtrId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-6/ospfVirtNbrRtrId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-6",
                    "ospfVirtNbrRtrId"
                  ]
                },
                "description": "Retrieve ospfVirtNbrRtrId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ospfVirtNbrRestartHelperExitReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/OSPF-TRAP-MIB:OSPF-TRAP-MIB/ospfTrapControl/object-6/ospfVirtNbrRestartHelperExitReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "OSPF-TRAP-MIB:OSPF-TRAP-MIB",
                    "ospfTrapControl",
                    "object-6",
                    "ospfVirtNbrRestartHelperExitReason"
                  ]
                },
                "description": "Retrieve ospfVirtNbrRestartHelperExitReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "P-BRIDGE-MIB",
          "description": "Cisco IOS-XE MIB - P-BRIDGE-MIB\n\nMIB data from `P-BRIDGE-MIB` module.\n\n**Root containers:** 1 (P-BRIDGE-MIB)\n**Paths:** 42 | **Descendants:** 41\n\nAll endpoints are read-only (GET).\n\nEndpoints: 42 | Operations: 42",
          "item": [
            {
              "name": "GET Get P-BRIDGE-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB"
                  ]
                },
                "description": "Retrieve P-BRIDGE-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dExtBase",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dExtBase",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dExtBase"
                  ]
                },
                "description": "Retrieve dot1dExtBase from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dDeviceCapabilities",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dExtBase/dot1dDeviceCapabilities",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dExtBase",
                    "dot1dDeviceCapabilities"
                  ]
                },
                "description": "Retrieve dot1dDeviceCapabilities from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTrafficClassesEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dExtBase/dot1dTrafficClassesEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dExtBase",
                    "dot1dTrafficClassesEnabled"
                  ]
                },
                "description": "Retrieve dot1dTrafficClassesEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dGmrpStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dExtBase/dot1dGmrpStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dExtBase",
                    "dot1dGmrpStatus"
                  ]
                },
                "description": "Retrieve dot1dGmrpStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpHCPortTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTpHCPortTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTpHCPortTable"
                  ]
                },
                "description": "Retrieve dot1dTpHCPortTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpHCPortEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTpHCPortTable/dot1dTpHCPortEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTpHCPortTable",
                    "dot1dTpHCPortEntry"
                  ]
                },
                "description": "Retrieve dot1dTpHCPortEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTpHCPortTable/dot1dTpHCPortEntry/dot1dTpPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTpHCPortTable",
                    "dot1dTpHCPortEntry",
                    "dot1dTpPort"
                  ]
                },
                "description": "Retrieve dot1dTpPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpHCPortInFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTpHCPortTable/dot1dTpHCPortEntry/dot1dTpHCPortInFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTpHCPortTable",
                    "dot1dTpHCPortEntry",
                    "dot1dTpHCPortInFrames"
                  ]
                },
                "description": "Retrieve dot1dTpHCPortInFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpHCPortOutFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTpHCPortTable/dot1dTpHCPortEntry/dot1dTpHCPortOutFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTpHCPortTable",
                    "dot1dTpHCPortEntry",
                    "dot1dTpHCPortOutFrames"
                  ]
                },
                "description": "Retrieve dot1dTpHCPortOutFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpHCPortInDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTpHCPortTable/dot1dTpHCPortEntry/dot1dTpHCPortInDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTpHCPortTable",
                    "dot1dTpHCPortEntry",
                    "dot1dTpHCPortInDiscards"
                  ]
                },
                "description": "Retrieve dot1dTpHCPortInDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpPortOverflowTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTpPortOverflowTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTpPortOverflowTable"
                  ]
                },
                "description": "Retrieve dot1dTpPortOverflowTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpPortOverflowEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTpPortOverflowTable/dot1dTpPortOverflowEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTpPortOverflowTable",
                    "dot1dTpPortOverflowEntry"
                  ]
                },
                "description": "Retrieve dot1dTpPortOverflowEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTpPortOverflowTable/dot1dTpPortOverflowEntry/dot1dTpPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTpPortOverflowTable",
                    "dot1dTpPortOverflowEntry",
                    "dot1dTpPort"
                  ]
                },
                "description": "Retrieve dot1dTpPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpPortInOverflowFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTpPortOverflowTable/dot1dTpPortOverflowEntry/dot1dTpPortInOverflowFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTpPortOverflowTable",
                    "dot1dTpPortOverflowEntry",
                    "dot1dTpPortInOverflowFrames"
                  ]
                },
                "description": "Retrieve dot1dTpPortInOverflowFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpPortOutOverflowFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTpPortOverflowTable/dot1dTpPortOverflowEntry/dot1dTpPortOutOverflowFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTpPortOverflowTable",
                    "dot1dTpPortOverflowEntry",
                    "dot1dTpPortOutOverflowFrames"
                  ]
                },
                "description": "Retrieve dot1dTpPortOutOverflowFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTpPortInOverflowDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTpPortOverflowTable/dot1dTpPortOverflowEntry/dot1dTpPortInOverflowDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTpPortOverflowTable",
                    "dot1dTpPortOverflowEntry",
                    "dot1dTpPortInOverflowDiscards"
                  ]
                },
                "description": "Retrieve dot1dTpPortInOverflowDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dUserPriorityRegenTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dUserPriorityRegenTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dUserPriorityRegenTable"
                  ]
                },
                "description": "Retrieve dot1dUserPriorityRegenTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dUserPriorityRegenEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dUserPriorityRegenTable/dot1dUserPriorityRegenEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dUserPriorityRegenTable",
                    "dot1dUserPriorityRegenEntry"
                  ]
                },
                "description": "Retrieve dot1dUserPriorityRegenEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBasePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dUserPriorityRegenTable/dot1dUserPriorityRegenEntry/dot1dBasePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dUserPriorityRegenTable",
                    "dot1dUserPriorityRegenEntry",
                    "dot1dBasePort"
                  ]
                },
                "description": "Retrieve dot1dBasePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dUserPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dUserPriorityRegenTable/dot1dUserPriorityRegenEntry/dot1dUserPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dUserPriorityRegenTable",
                    "dot1dUserPriorityRegenEntry",
                    "dot1dUserPriority"
                  ]
                },
                "description": "Retrieve dot1dUserPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dRegenUserPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dUserPriorityRegenTable/dot1dUserPriorityRegenEntry/dot1dRegenUserPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dUserPriorityRegenTable",
                    "dot1dUserPriorityRegenEntry",
                    "dot1dRegenUserPriority"
                  ]
                },
                "description": "Retrieve dot1dRegenUserPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTrafficClassTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTrafficClassTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTrafficClassTable"
                  ]
                },
                "description": "Retrieve dot1dTrafficClassTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTrafficClassEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTrafficClassTable/dot1dTrafficClassEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTrafficClassTable",
                    "dot1dTrafficClassEntry"
                  ]
                },
                "description": "Retrieve dot1dTrafficClassEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBasePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTrafficClassTable/dot1dTrafficClassEntry/dot1dBasePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTrafficClassTable",
                    "dot1dTrafficClassEntry",
                    "dot1dBasePort"
                  ]
                },
                "description": "Retrieve dot1dBasePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTrafficClassPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTrafficClassTable/dot1dTrafficClassEntry/dot1dTrafficClassPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTrafficClassTable",
                    "dot1dTrafficClassEntry",
                    "dot1dTrafficClassPriority"
                  ]
                },
                "description": "Retrieve dot1dTrafficClassPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dTrafficClass",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dTrafficClassTable/dot1dTrafficClassEntry/dot1dTrafficClass",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dTrafficClassTable",
                    "dot1dTrafficClassEntry",
                    "dot1dTrafficClass"
                  ]
                },
                "description": "Retrieve dot1dTrafficClass from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dPortOutboundAccessPriorityTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dPortOutboundAccessPriorityTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dPortOutboundAccessPriorityTable"
                  ]
                },
                "description": "Retrieve dot1dPortOutboundAccessPriorityTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dPortOutboundAccessPriorityEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dPortOutboundAccessPriorityTable/dot1dPortOutboundAccessPriorityEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dPortOutboundAccessPriorityTable",
                    "dot1dPortOutboundAccessPriorityEntry"
                  ]
                },
                "description": "Retrieve dot1dPortOutboundAccessPriorityEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBasePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dPortOutboundAccessPriorityTable/dot1dPortOutboundAccessPriorityEntry/dot1dBasePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dPortOutboundAccessPriorityTable",
                    "dot1dPortOutboundAccessPriorityEntry",
                    "dot1dBasePort"
                  ]
                },
                "description": "Retrieve dot1dBasePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dRegenUserPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dPortOutboundAccessPriorityTable/dot1dPortOutboundAccessPriorityEntry/dot1dRegenUserPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dPortOutboundAccessPriorityTable",
                    "dot1dPortOutboundAccessPriorityEntry",
                    "dot1dRegenUserPriority"
                  ]
                },
                "description": "Retrieve dot1dRegenUserPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dPortOutboundAccessPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dPortOutboundAccessPriorityTable/dot1dPortOutboundAccessPriorityEntry/dot1dPortOutboundAccessPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dPortOutboundAccessPriorityTable",
                    "dot1dPortOutboundAccessPriorityEntry",
                    "dot1dPortOutboundAccessPriority"
                  ]
                },
                "description": "Retrieve dot1dPortOutboundAccessPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dPortCapabilities",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dPortCapabilities",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dPortCapabilities"
                  ]
                },
                "description": "Retrieve dot1dPortCapabilities from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dPortDefaultUserPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dPortDefaultUserPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dPortDefaultUserPriority"
                  ]
                },
                "description": "Retrieve dot1dPortDefaultUserPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dPortNumTrafficClasses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dPortNumTrafficClasses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dPortNumTrafficClasses"
                  ]
                },
                "description": "Retrieve dot1dPortNumTrafficClasses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dPortGarpJoinTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dPortGarpJoinTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dPortGarpJoinTime"
                  ]
                },
                "description": "Retrieve dot1dPortGarpJoinTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dPortGarpLeaveTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dPortGarpLeaveTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dPortGarpLeaveTime"
                  ]
                },
                "description": "Retrieve dot1dPortGarpLeaveTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dPortGarpLeaveAllTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dPortGarpLeaveAllTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dPortGarpLeaveAllTime"
                  ]
                },
                "description": "Retrieve dot1dPortGarpLeaveAllTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dPortGmrpStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dPortGmrpStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dPortGmrpStatus"
                  ]
                },
                "description": "Retrieve dot1dPortGmrpStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dPortGmrpFailedRegistrations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dPortGmrpFailedRegistrations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dPortGmrpFailedRegistrations"
                  ]
                },
                "description": "Retrieve dot1dPortGmrpFailedRegistrations from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dPortGmrpLastPduOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dPortGmrpLastPduOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dPortGmrpLastPduOrigin"
                  ]
                },
                "description": "Retrieve dot1dPortGmrpLastPduOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dPortRestrictedGroupRegistration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/P-BRIDGE-MIB:P-BRIDGE-MIB/dot1dPortRestrictedGroupRegistration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "P-BRIDGE-MIB:P-BRIDGE-MIB",
                    "dot1dPortRestrictedGroupRegistration"
                  ]
                },
                "description": "Retrieve dot1dPortRestrictedGroupRegistration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "PIM-MIB",
          "description": "Cisco IOS-XE MIB - PIM-MIB\n\nMIB data from `PIM-MIB` module.\n\n**Root containers:** 1 (PIM-MIB)\n**Paths:** 62 | **Descendants:** 61\n\nAll endpoints are read-only (GET).\n\nEndpoints: 62 | Operations: 62",
          "item": [
            {
              "name": "GET Get PIM-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB"
                  ]
                },
                "description": "Retrieve PIM-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pim",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pim",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pim"
                  ]
                },
                "description": "Retrieve pim from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimJoinPruneInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pim/pimJoinPruneInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pim",
                    "pimJoinPruneInterval"
                  ]
                },
                "description": "Retrieve pimJoinPruneInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimInterfaceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimInterfaceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimInterfaceTable"
                  ]
                },
                "description": "Retrieve pimInterfaceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimInterfaceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimInterfaceTable/pimInterfaceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimInterfaceTable",
                    "pimInterfaceEntry"
                  ]
                },
                "description": "Retrieve pimInterfaceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimInterfaceIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimInterfaceTable/pimInterfaceEntry/pimInterfaceIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimInterfaceTable",
                    "pimInterfaceEntry",
                    "pimInterfaceIfIndex"
                  ]
                },
                "description": "Retrieve pimInterfaceIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimInterfaceAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimInterfaceTable/pimInterfaceEntry/pimInterfaceAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimInterfaceTable",
                    "pimInterfaceEntry",
                    "pimInterfaceAddress"
                  ]
                },
                "description": "Retrieve pimInterfaceAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimInterfaceNetMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimInterfaceTable/pimInterfaceEntry/pimInterfaceNetMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimInterfaceTable",
                    "pimInterfaceEntry",
                    "pimInterfaceNetMask"
                  ]
                },
                "description": "Retrieve pimInterfaceNetMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimInterfaceMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimInterfaceTable/pimInterfaceEntry/pimInterfaceMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimInterfaceTable",
                    "pimInterfaceEntry",
                    "pimInterfaceMode"
                  ]
                },
                "description": "Retrieve pimInterfaceMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimInterfaceDR",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimInterfaceTable/pimInterfaceEntry/pimInterfaceDR",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimInterfaceTable",
                    "pimInterfaceEntry",
                    "pimInterfaceDR"
                  ]
                },
                "description": "Retrieve pimInterfaceDR from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimInterfaceHelloInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimInterfaceTable/pimInterfaceEntry/pimInterfaceHelloInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimInterfaceTable",
                    "pimInterfaceEntry",
                    "pimInterfaceHelloInterval"
                  ]
                },
                "description": "Retrieve pimInterfaceHelloInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimInterfaceStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimInterfaceTable/pimInterfaceEntry/pimInterfaceStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimInterfaceTable",
                    "pimInterfaceEntry",
                    "pimInterfaceStatus"
                  ]
                },
                "description": "Retrieve pimInterfaceStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimInterfaceJoinPruneInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimInterfaceTable/pimInterfaceEntry/pimInterfaceJoinPruneInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimInterfaceTable",
                    "pimInterfaceEntry",
                    "pimInterfaceJoinPruneInterval"
                  ]
                },
                "description": "Retrieve pimInterfaceJoinPruneInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimInterfaceCBSRPreference",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimInterfaceTable/pimInterfaceEntry/pimInterfaceCBSRPreference",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimInterfaceTable",
                    "pimInterfaceEntry",
                    "pimInterfaceCBSRPreference"
                  ]
                },
                "description": "Retrieve pimInterfaceCBSRPreference from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimNeighborTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimNeighborTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimNeighborTable"
                  ]
                },
                "description": "Retrieve pimNeighborTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimNeighborEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimNeighborTable/pimNeighborEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimNeighborTable",
                    "pimNeighborEntry"
                  ]
                },
                "description": "Retrieve pimNeighborEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimNeighborAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimNeighborTable/pimNeighborEntry/pimNeighborAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimNeighborTable",
                    "pimNeighborEntry",
                    "pimNeighborAddress"
                  ]
                },
                "description": "Retrieve pimNeighborAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimNeighborIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimNeighborTable/pimNeighborEntry/pimNeighborIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimNeighborTable",
                    "pimNeighborEntry",
                    "pimNeighborIfIndex"
                  ]
                },
                "description": "Retrieve pimNeighborIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimNeighborUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimNeighborTable/pimNeighborEntry/pimNeighborUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimNeighborTable",
                    "pimNeighborEntry",
                    "pimNeighborUpTime"
                  ]
                },
                "description": "Retrieve pimNeighborUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimNeighborExpiryTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimNeighborTable/pimNeighborEntry/pimNeighborExpiryTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimNeighborTable",
                    "pimNeighborEntry",
                    "pimNeighborExpiryTime"
                  ]
                },
                "description": "Retrieve pimNeighborExpiryTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimIpMRouteTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteTable"
                  ]
                },
                "description": "Retrieve pimIpMRouteTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimIpMRouteEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteTable/pimIpMRouteEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteTable",
                    "pimIpMRouteEntry"
                  ]
                },
                "description": "Retrieve pimIpMRouteEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteTable/pimIpMRouteEntry/ipMRouteGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteTable",
                    "pimIpMRouteEntry",
                    "ipMRouteGroup"
                  ]
                },
                "description": "Retrieve ipMRouteGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteTable/pimIpMRouteEntry/ipMRouteSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteTable",
                    "pimIpMRouteEntry",
                    "ipMRouteSource"
                  ]
                },
                "description": "Retrieve ipMRouteSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteSourceMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteTable/pimIpMRouteEntry/ipMRouteSourceMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteTable",
                    "pimIpMRouteEntry",
                    "ipMRouteSourceMask"
                  ]
                },
                "description": "Retrieve ipMRouteSourceMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimIpMRouteUpstreamAssertTimer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteTable/pimIpMRouteEntry/pimIpMRouteUpstreamAssertTimer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteTable",
                    "pimIpMRouteEntry",
                    "pimIpMRouteUpstreamAssertTimer"
                  ]
                },
                "description": "Retrieve pimIpMRouteUpstreamAssertTimer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimIpMRouteAssertMetric",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteTable/pimIpMRouteEntry/pimIpMRouteAssertMetric",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteTable",
                    "pimIpMRouteEntry",
                    "pimIpMRouteAssertMetric"
                  ]
                },
                "description": "Retrieve pimIpMRouteAssertMetric from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimIpMRouteAssertMetricPref",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteTable/pimIpMRouteEntry/pimIpMRouteAssertMetricPref",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteTable",
                    "pimIpMRouteEntry",
                    "pimIpMRouteAssertMetricPref"
                  ]
                },
                "description": "Retrieve pimIpMRouteAssertMetricPref from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimIpMRouteAssertRPTBit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteTable/pimIpMRouteEntry/pimIpMRouteAssertRPTBit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteTable",
                    "pimIpMRouteEntry",
                    "pimIpMRouteAssertRPTBit"
                  ]
                },
                "description": "Retrieve pimIpMRouteAssertRPTBit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimIpMRouteFlags",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteTable/pimIpMRouteEntry/pimIpMRouteFlags",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteTable",
                    "pimIpMRouteEntry",
                    "pimIpMRouteFlags"
                  ]
                },
                "description": "Retrieve pimIpMRouteFlags from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimRPSetTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimRPSetTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimRPSetTable"
                  ]
                },
                "description": "Retrieve pimRPSetTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimRPSetEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimRPSetTable/pimRPSetEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimRPSetTable",
                    "pimRPSetEntry"
                  ]
                },
                "description": "Retrieve pimRPSetEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimRPSetGroupAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimRPSetTable/pimRPSetEntry/pimRPSetGroupAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimRPSetTable",
                    "pimRPSetEntry",
                    "pimRPSetGroupAddress"
                  ]
                },
                "description": "Retrieve pimRPSetGroupAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimRPSetGroupMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimRPSetTable/pimRPSetEntry/pimRPSetGroupMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimRPSetTable",
                    "pimRPSetEntry",
                    "pimRPSetGroupMask"
                  ]
                },
                "description": "Retrieve pimRPSetGroupMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimRPSetAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimRPSetTable/pimRPSetEntry/pimRPSetAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimRPSetTable",
                    "pimRPSetEntry",
                    "pimRPSetAddress"
                  ]
                },
                "description": "Retrieve pimRPSetAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimRPSetHoldTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimRPSetTable/pimRPSetEntry/pimRPSetHoldTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimRPSetTable",
                    "pimRPSetEntry",
                    "pimRPSetHoldTime"
                  ]
                },
                "description": "Retrieve pimRPSetHoldTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimRPSetExpiryTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimRPSetTable/pimRPSetEntry/pimRPSetExpiryTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimRPSetTable",
                    "pimRPSetEntry",
                    "pimRPSetExpiryTime"
                  ]
                },
                "description": "Retrieve pimRPSetExpiryTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimRPSetComponent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimRPSetTable/pimRPSetEntry/pimRPSetComponent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimRPSetTable",
                    "pimRPSetEntry",
                    "pimRPSetComponent"
                  ]
                },
                "description": "Retrieve pimRPSetComponent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimIpMRouteNextHopTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteNextHopTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteNextHopTable"
                  ]
                },
                "description": "Retrieve pimIpMRouteNextHopTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimIpMRouteNextHopEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteNextHopTable/pimIpMRouteNextHopEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteNextHopTable",
                    "pimIpMRouteNextHopEntry"
                  ]
                },
                "description": "Retrieve pimIpMRouteNextHopEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteNextHopTable/pimIpMRouteNextHopEntry/ipMRouteNextHopGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteNextHopTable",
                    "pimIpMRouteNextHopEntry",
                    "ipMRouteNextHopGroup"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteNextHopTable/pimIpMRouteNextHopEntry/ipMRouteNextHopSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteNextHopTable",
                    "pimIpMRouteNextHopEntry",
                    "ipMRouteNextHopSource"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopSourceMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteNextHopTable/pimIpMRouteNextHopEntry/ipMRouteNextHopSourceMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteNextHopTable",
                    "pimIpMRouteNextHopEntry",
                    "ipMRouteNextHopSourceMask"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopSourceMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteNextHopTable/pimIpMRouteNextHopEntry/ipMRouteNextHopIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteNextHopTable",
                    "pimIpMRouteNextHopEntry",
                    "ipMRouteNextHopIfIndex"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipMRouteNextHopAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteNextHopTable/pimIpMRouteNextHopEntry/ipMRouteNextHopAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteNextHopTable",
                    "pimIpMRouteNextHopEntry",
                    "ipMRouteNextHopAddress"
                  ]
                },
                "description": "Retrieve ipMRouteNextHopAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimIpMRouteNextHopPruneReason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimIpMRouteNextHopTable/pimIpMRouteNextHopEntry/pimIpMRouteNextHopPruneReason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimIpMRouteNextHopTable",
                    "pimIpMRouteNextHopEntry",
                    "pimIpMRouteNextHopPruneReason"
                  ]
                },
                "description": "Retrieve pimIpMRouteNextHopPruneReason from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimCandidateRPTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimCandidateRPTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimCandidateRPTable"
                  ]
                },
                "description": "Retrieve pimCandidateRPTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimCandidateRPEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimCandidateRPTable/pimCandidateRPEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimCandidateRPTable",
                    "pimCandidateRPEntry"
                  ]
                },
                "description": "Retrieve pimCandidateRPEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimCandidateRPGroupAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimCandidateRPTable/pimCandidateRPEntry/pimCandidateRPGroupAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimCandidateRPTable",
                    "pimCandidateRPEntry",
                    "pimCandidateRPGroupAddress"
                  ]
                },
                "description": "Retrieve pimCandidateRPGroupAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimCandidateRPGroupMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimCandidateRPTable/pimCandidateRPEntry/pimCandidateRPGroupMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimCandidateRPTable",
                    "pimCandidateRPEntry",
                    "pimCandidateRPGroupMask"
                  ]
                },
                "description": "Retrieve pimCandidateRPGroupMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimCandidateRPAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimCandidateRPTable/pimCandidateRPEntry/pimCandidateRPAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimCandidateRPTable",
                    "pimCandidateRPEntry",
                    "pimCandidateRPAddress"
                  ]
                },
                "description": "Retrieve pimCandidateRPAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimCandidateRPRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimCandidateRPTable/pimCandidateRPEntry/pimCandidateRPRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimCandidateRPTable",
                    "pimCandidateRPEntry",
                    "pimCandidateRPRowStatus"
                  ]
                },
                "description": "Retrieve pimCandidateRPRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimComponentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimComponentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimComponentTable"
                  ]
                },
                "description": "Retrieve pimComponentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimComponentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimComponentTable/pimComponentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimComponentTable",
                    "pimComponentEntry"
                  ]
                },
                "description": "Retrieve pimComponentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimComponentIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimComponentTable/pimComponentEntry/pimComponentIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimComponentTable",
                    "pimComponentEntry",
                    "pimComponentIndex"
                  ]
                },
                "description": "Retrieve pimComponentIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimComponentBSRAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimComponentTable/pimComponentEntry/pimComponentBSRAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimComponentTable",
                    "pimComponentEntry",
                    "pimComponentBSRAddress"
                  ]
                },
                "description": "Retrieve pimComponentBSRAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimComponentBSRExpiryTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimComponentTable/pimComponentEntry/pimComponentBSRExpiryTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimComponentTable",
                    "pimComponentEntry",
                    "pimComponentBSRExpiryTime"
                  ]
                },
                "description": "Retrieve pimComponentBSRExpiryTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimComponentCRPHoldTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimComponentTable/pimComponentEntry/pimComponentCRPHoldTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimComponentTable",
                    "pimComponentEntry",
                    "pimComponentCRPHoldTime"
                  ]
                },
                "description": "Retrieve pimComponentCRPHoldTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimComponentStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimComponentTable/pimComponentEntry/pimComponentStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimComponentTable",
                    "pimComponentEntry",
                    "pimComponentStatus"
                  ]
                },
                "description": "Retrieve pimComponentStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimComponentTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimComponentTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimNeighborAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimComponentTable/object-1/pimNeighborAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimComponentTable",
                    "object-1",
                    "pimNeighborAddress"
                  ]
                },
                "description": "Retrieve pimNeighborAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pimNeighborIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/PIM-MIB:PIM-MIB/pimComponentTable/object-1/pimNeighborIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "PIM-MIB:PIM-MIB",
                    "pimComponentTable",
                    "object-1",
                    "pimNeighborIfIndex"
                  ]
                },
                "description": "Retrieve pimNeighborIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "POWER-ETHERNET-MIB",
          "description": "Cisco IOS-XE MIB - POWER-ETHERNET-MIB\n\nMIB data from `POWER-ETHERNET-MIB` module.\n\n**Root containers:** 1 (POWER-ETHERNET-MIB)\n**Paths:** 34 | **Descendants:** 37\n\nAll endpoints are read-only (GET).\n\nEndpoints: 34 | Operations: 34",
          "item": [
            {
              "name": "GET Get POWER-ETHERNET-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB"
                  ]
                },
                "description": "Retrieve POWER-ETHERNET-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethPsePortTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethPsePortTable"
                  ]
                },
                "description": "Retrieve pethPsePortTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethPsePortTable/pethPsePortEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethPsePortTable",
                    "pethPsePortEntry"
                  ]
                },
                "description": "Retrieve pethPsePortEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortGroupIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethPsePortTable/pethPsePortEntry/pethPsePortGroupIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethPsePortTable",
                    "pethPsePortEntry",
                    "pethPsePortGroupIndex"
                  ]
                },
                "description": "Retrieve pethPsePortGroupIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethPsePortTable/pethPsePortEntry/pethPsePortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethPsePortTable",
                    "pethPsePortEntry",
                    "pethPsePortIndex"
                  ]
                },
                "description": "Retrieve pethPsePortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortAdminEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethPsePortTable/pethPsePortEntry/pethPsePortAdminEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethPsePortTable",
                    "pethPsePortEntry",
                    "pethPsePortAdminEnable"
                  ]
                },
                "description": "Retrieve pethPsePortAdminEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortPowerPairsControlAbility",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethPsePortTable/pethPsePortEntry/pethPsePortPowerPairsControlAbility",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethPsePortTable",
                    "pethPsePortEntry",
                    "pethPsePortPowerPairsControlAbility"
                  ]
                },
                "description": "Retrieve pethPsePortPowerPairsControlAbility from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortPowerPairs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethPsePortTable/pethPsePortEntry/pethPsePortPowerPairs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethPsePortTable",
                    "pethPsePortEntry",
                    "pethPsePortPowerPairs"
                  ]
                },
                "description": "Retrieve pethPsePortPowerPairs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortDetectionStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethPsePortTable/pethPsePortEntry/pethPsePortDetectionStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethPsePortTable",
                    "pethPsePortEntry",
                    "pethPsePortDetectionStatus"
                  ]
                },
                "description": "Retrieve pethPsePortDetectionStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortPowerPriority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethPsePortTable/pethPsePortEntry/pethPsePortPowerPriority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethPsePortTable",
                    "pethPsePortEntry",
                    "pethPsePortPowerPriority"
                  ]
                },
                "description": "Retrieve pethPsePortPowerPriority from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortMPSAbsentCounter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethPsePortTable/pethPsePortEntry/pethPsePortMPSAbsentCounter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethPsePortTable",
                    "pethPsePortEntry",
                    "pethPsePortMPSAbsentCounter"
                  ]
                },
                "description": "Retrieve pethPsePortMPSAbsentCounter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethPsePortTable/pethPsePortEntry/pethPsePortType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethPsePortTable",
                    "pethPsePortEntry",
                    "pethPsePortType"
                  ]
                },
                "description": "Retrieve pethPsePortType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortPowerClassifications",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethPsePortTable/pethPsePortEntry/pethPsePortPowerClassifications",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethPsePortTable",
                    "pethPsePortEntry",
                    "pethPsePortPowerClassifications"
                  ]
                },
                "description": "Retrieve pethPsePortPowerClassifications from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortInvalidSignatureCounter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethPsePortTable/pethPsePortEntry/pethPsePortInvalidSignatureCounter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethPsePortTable",
                    "pethPsePortEntry",
                    "pethPsePortInvalidSignatureCounter"
                  ]
                },
                "description": "Retrieve pethPsePortInvalidSignatureCounter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortPowerDeniedCounter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethPsePortTable/pethPsePortEntry/pethPsePortPowerDeniedCounter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethPsePortTable",
                    "pethPsePortEntry",
                    "pethPsePortPowerDeniedCounter"
                  ]
                },
                "description": "Retrieve pethPsePortPowerDeniedCounter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortOverLoadCounter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethPsePortTable/pethPsePortEntry/pethPsePortOverLoadCounter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethPsePortTable",
                    "pethPsePortEntry",
                    "pethPsePortOverLoadCounter"
                  ]
                },
                "description": "Retrieve pethPsePortOverLoadCounter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortShortCounter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethPsePortTable/pethPsePortEntry/pethPsePortShortCounter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethPsePortTable",
                    "pethPsePortEntry",
                    "pethPsePortShortCounter"
                  ]
                },
                "description": "Retrieve pethPsePortShortCounter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethMainPseTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethMainPseTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethMainPseTable"
                  ]
                },
                "description": "Retrieve pethMainPseTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethMainPseEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethMainPseTable/pethMainPseEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethMainPseTable",
                    "pethMainPseEntry"
                  ]
                },
                "description": "Retrieve pethMainPseEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethMainPseGroupIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethMainPseTable/pethMainPseEntry/pethMainPseGroupIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethMainPseTable",
                    "pethMainPseEntry",
                    "pethMainPseGroupIndex"
                  ]
                },
                "description": "Retrieve pethMainPseGroupIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethMainPsePower",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethMainPseTable/pethMainPseEntry/pethMainPsePower",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethMainPseTable",
                    "pethMainPseEntry",
                    "pethMainPsePower"
                  ]
                },
                "description": "Retrieve pethMainPsePower from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethMainPseOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethMainPseTable/pethMainPseEntry/pethMainPseOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethMainPseTable",
                    "pethMainPseEntry",
                    "pethMainPseOperStatus"
                  ]
                },
                "description": "Retrieve pethMainPseOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethMainPseConsumptionPower",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethMainPseTable/pethMainPseEntry/pethMainPseConsumptionPower",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethMainPseTable",
                    "pethMainPseEntry",
                    "pethMainPseConsumptionPower"
                  ]
                },
                "description": "Retrieve pethMainPseConsumptionPower from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethMainPseUsageThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethMainPseTable/pethMainPseEntry/pethMainPseUsageThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethMainPseTable",
                    "pethMainPseEntry",
                    "pethMainPseUsageThreshold"
                  ]
                },
                "description": "Retrieve pethMainPseUsageThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethNotificationControlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethNotificationControlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethNotificationControlTable"
                  ]
                },
                "description": "Retrieve pethNotificationControlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethNotificationControlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethNotificationControlTable/pethNotificationControlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethNotificationControlTable",
                    "pethNotificationControlEntry"
                  ]
                },
                "description": "Retrieve pethNotificationControlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethNotificationControlGroupIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethNotificationControlTable/pethNotificationControlEntry/pethNotificationControlGroupIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethNotificationControlTable",
                    "pethNotificationControlEntry",
                    "pethNotificationControlGroupIndex"
                  ]
                },
                "description": "Retrieve pethNotificationControlGroupIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethNotificationControlEnable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethNotificationControlTable/pethNotificationControlEntry/pethNotificationControlEnable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethNotificationControlTable",
                    "pethNotificationControlEntry",
                    "pethNotificationControlEnable"
                  ]
                },
                "description": "Retrieve pethNotificationControlEnable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethNotificationControlTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethNotificationControlTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortGroupIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethNotificationControlTable/object-1/pethPsePortGroupIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethNotificationControlTable",
                    "object-1",
                    "pethPsePortGroupIndex"
                  ]
                },
                "description": "Retrieve pethPsePortGroupIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethNotificationControlTable/object-1/pethPsePortIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethNotificationControlTable",
                    "object-1",
                    "pethPsePortIndex"
                  ]
                },
                "description": "Retrieve pethPsePortIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethPsePortDetectionStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethNotificationControlTable/object-1/pethPsePortDetectionStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethNotificationControlTable",
                    "object-1",
                    "pethPsePortDetectionStatus"
                  ]
                },
                "description": "Retrieve pethPsePortDetectionStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethMainPseGroupIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethNotificationControlTable/object-1/pethMainPseGroupIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethNotificationControlTable",
                    "object-1",
                    "pethMainPseGroupIndex"
                  ]
                },
                "description": "Retrieve pethMainPseGroupIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pethMainPseConsumptionPower",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/POWER-ETHERNET-MIB:POWER-ETHERNET-MIB/pethNotificationControlTable/object-1/pethMainPseConsumptionPower",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "POWER-ETHERNET-MIB:POWER-ETHERNET-MIB",
                    "pethNotificationControlTable",
                    "object-1",
                    "pethMainPseConsumptionPower"
                  ]
                },
                "description": "Retrieve pethMainPseConsumptionPower from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Q-BRIDGE-MIB",
          "description": "Cisco IOS-XE MIB - Q-BRIDGE-MIB\n\nMIB data from `Q-BRIDGE-MIB` module.\n\n**Root containers:** 1 (Q-BRIDGE-MIB)\n**Paths:** 114 | **Descendants:** 113\n\nAll endpoints are read-only (GET).\n\nEndpoints: 114 | Operations: 114",
          "item": [
            {
              "name": "GET Get Q-BRIDGE-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB"
                  ]
                },
                "description": "Retrieve Q-BRIDGE-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qBase",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qBase",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qBase"
                  ]
                },
                "description": "Retrieve dot1qBase from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanVersionNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qBase/dot1qVlanVersionNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qBase",
                    "dot1qVlanVersionNumber"
                  ]
                },
                "description": "Retrieve dot1qVlanVersionNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qMaxVlanId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qBase/dot1qMaxVlanId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qBase",
                    "dot1qMaxVlanId"
                  ]
                },
                "description": "Retrieve dot1qMaxVlanId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qMaxSupportedVlans",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qBase/dot1qMaxSupportedVlans",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qBase",
                    "dot1qMaxSupportedVlans"
                  ]
                },
                "description": "Retrieve dot1qMaxSupportedVlans from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qNumVlans",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qBase/dot1qNumVlans",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qBase",
                    "dot1qNumVlans"
                  ]
                },
                "description": "Retrieve dot1qNumVlans from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qGvrpStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qBase/dot1qGvrpStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qBase",
                    "dot1qGvrpStatus"
                  ]
                },
                "description": "Retrieve dot1qGvrpStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlan"
                  ]
                },
                "description": "Retrieve dot1qVlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanNumDeletes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlan/dot1qVlanNumDeletes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlan",
                    "dot1qVlanNumDeletes"
                  ]
                },
                "description": "Retrieve dot1qVlanNumDeletes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qNextFreeLocalVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlan/dot1qNextFreeLocalVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlan",
                    "dot1qNextFreeLocalVlanIndex"
                  ]
                },
                "description": "Retrieve dot1qNextFreeLocalVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qConstraintSetDefault",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlan/dot1qConstraintSetDefault",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlan",
                    "dot1qConstraintSetDefault"
                  ]
                },
                "description": "Retrieve dot1qConstraintSetDefault from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qConstraintTypeDefault",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlan/dot1qConstraintTypeDefault",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlan",
                    "dot1qConstraintTypeDefault"
                  ]
                },
                "description": "Retrieve dot1qConstraintTypeDefault from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qFdbTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qFdbTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qFdbTable"
                  ]
                },
                "description": "Retrieve dot1qFdbTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qFdbEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qFdbTable/dot1qFdbEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qFdbTable",
                    "dot1qFdbEntry"
                  ]
                },
                "description": "Retrieve dot1qFdbEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qFdbId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qFdbTable/dot1qFdbEntry/dot1qFdbId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qFdbTable",
                    "dot1qFdbEntry",
                    "dot1qFdbId"
                  ]
                },
                "description": "Retrieve dot1qFdbId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qFdbDynamicCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qFdbTable/dot1qFdbEntry/dot1qFdbDynamicCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qFdbTable",
                    "dot1qFdbEntry",
                    "dot1qFdbDynamicCount"
                  ]
                },
                "description": "Retrieve dot1qFdbDynamicCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpFdbTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qTpFdbTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qTpFdbTable"
                  ]
                },
                "description": "Retrieve dot1qTpFdbTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpFdbEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qTpFdbTable/dot1qTpFdbEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qTpFdbTable",
                    "dot1qTpFdbEntry"
                  ]
                },
                "description": "Retrieve dot1qTpFdbEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qFdbId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qTpFdbTable/dot1qTpFdbEntry/dot1qFdbId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qTpFdbTable",
                    "dot1qTpFdbEntry",
                    "dot1qFdbId"
                  ]
                },
                "description": "Retrieve dot1qFdbId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpFdbAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qTpFdbTable/dot1qTpFdbEntry/dot1qTpFdbAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qTpFdbTable",
                    "dot1qTpFdbEntry",
                    "dot1qTpFdbAddress"
                  ]
                },
                "description": "Retrieve dot1qTpFdbAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpFdbPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qTpFdbTable/dot1qTpFdbEntry/dot1qTpFdbPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qTpFdbTable",
                    "dot1qTpFdbEntry",
                    "dot1qTpFdbPort"
                  ]
                },
                "description": "Retrieve dot1qTpFdbPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpFdbStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qTpFdbTable/dot1qTpFdbEntry/dot1qTpFdbStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qTpFdbTable",
                    "dot1qTpFdbEntry",
                    "dot1qTpFdbStatus"
                  ]
                },
                "description": "Retrieve dot1qTpFdbStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpGroupTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qTpGroupTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qTpGroupTable"
                  ]
                },
                "description": "Retrieve dot1qTpGroupTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpGroupEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qTpGroupTable/dot1qTpGroupEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qTpGroupTable",
                    "dot1qTpGroupEntry"
                  ]
                },
                "description": "Retrieve dot1qTpGroupEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qTpGroupTable/dot1qTpGroupEntry/dot1qVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qTpGroupTable",
                    "dot1qTpGroupEntry",
                    "dot1qVlanIndex"
                  ]
                },
                "description": "Retrieve dot1qVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpGroupAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qTpGroupTable/dot1qTpGroupEntry/dot1qTpGroupAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qTpGroupTable",
                    "dot1qTpGroupEntry",
                    "dot1qTpGroupAddress"
                  ]
                },
                "description": "Retrieve dot1qTpGroupAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpGroupEgressPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qTpGroupTable/dot1qTpGroupEntry/dot1qTpGroupEgressPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qTpGroupTable",
                    "dot1qTpGroupEntry",
                    "dot1qTpGroupEgressPorts"
                  ]
                },
                "description": "Retrieve dot1qTpGroupEgressPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpGroupLearnt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qTpGroupTable/dot1qTpGroupEntry/dot1qTpGroupLearnt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qTpGroupTable",
                    "dot1qTpGroupEntry",
                    "dot1qTpGroupLearnt"
                  ]
                },
                "description": "Retrieve dot1qTpGroupLearnt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qForwardAllTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qForwardAllTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qForwardAllTable"
                  ]
                },
                "description": "Retrieve dot1qForwardAllTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qForwardAllEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qForwardAllTable/dot1qForwardAllEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qForwardAllTable",
                    "dot1qForwardAllEntry"
                  ]
                },
                "description": "Retrieve dot1qForwardAllEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qForwardAllTable/dot1qForwardAllEntry/dot1qVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qForwardAllTable",
                    "dot1qForwardAllEntry",
                    "dot1qVlanIndex"
                  ]
                },
                "description": "Retrieve dot1qVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qForwardAllPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qForwardAllTable/dot1qForwardAllEntry/dot1qForwardAllPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qForwardAllTable",
                    "dot1qForwardAllEntry",
                    "dot1qForwardAllPorts"
                  ]
                },
                "description": "Retrieve dot1qForwardAllPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qForwardAllStaticPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qForwardAllTable/dot1qForwardAllEntry/dot1qForwardAllStaticPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qForwardAllTable",
                    "dot1qForwardAllEntry",
                    "dot1qForwardAllStaticPorts"
                  ]
                },
                "description": "Retrieve dot1qForwardAllStaticPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qForwardAllForbiddenPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qForwardAllTable/dot1qForwardAllEntry/dot1qForwardAllForbiddenPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qForwardAllTable",
                    "dot1qForwardAllEntry",
                    "dot1qForwardAllForbiddenPorts"
                  ]
                },
                "description": "Retrieve dot1qForwardAllForbiddenPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qForwardUnregisteredTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qForwardUnregisteredTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qForwardUnregisteredTable"
                  ]
                },
                "description": "Retrieve dot1qForwardUnregisteredTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qForwardUnregisteredEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qForwardUnregisteredTable/dot1qForwardUnregisteredEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qForwardUnregisteredTable",
                    "dot1qForwardUnregisteredEntry"
                  ]
                },
                "description": "Retrieve dot1qForwardUnregisteredEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qForwardUnregisteredTable/dot1qForwardUnregisteredEntry/dot1qVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qForwardUnregisteredTable",
                    "dot1qForwardUnregisteredEntry",
                    "dot1qVlanIndex"
                  ]
                },
                "description": "Retrieve dot1qVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qForwardUnregisteredPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qForwardUnregisteredTable/dot1qForwardUnregisteredEntry/dot1qForwardUnregisteredPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qForwardUnregisteredTable",
                    "dot1qForwardUnregisteredEntry",
                    "dot1qForwardUnregisteredPorts"
                  ]
                },
                "description": "Retrieve dot1qForwardUnregisteredPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qForwardUnregisteredStaticPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qForwardUnregisteredTable/dot1qForwardUnregisteredEntry/dot1qForwardUnregisteredStaticPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qForwardUnregisteredTable",
                    "dot1qForwardUnregisteredEntry",
                    "dot1qForwardUnregisteredStaticPorts"
                  ]
                },
                "description": "Retrieve dot1qForwardUnregisteredStaticPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qForwardUnregisteredForbiddenPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qForwardUnregisteredTable/dot1qForwardUnregisteredEntry/dot1qForwardUnregisteredForbiddenPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qForwardUnregisteredTable",
                    "dot1qForwardUnregisteredEntry",
                    "dot1qForwardUnregisteredForbiddenPorts"
                  ]
                },
                "description": "Retrieve dot1qForwardUnregisteredForbiddenPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qStaticUnicastTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qStaticUnicastTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qStaticUnicastTable"
                  ]
                },
                "description": "Retrieve dot1qStaticUnicastTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qStaticUnicastEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qStaticUnicastTable/dot1qStaticUnicastEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qStaticUnicastTable",
                    "dot1qStaticUnicastEntry"
                  ]
                },
                "description": "Retrieve dot1qStaticUnicastEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qFdbId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qStaticUnicastTable/dot1qStaticUnicastEntry/dot1qFdbId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qStaticUnicastTable",
                    "dot1qStaticUnicastEntry",
                    "dot1qFdbId"
                  ]
                },
                "description": "Retrieve dot1qFdbId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qStaticUnicastAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qStaticUnicastTable/dot1qStaticUnicastEntry/dot1qStaticUnicastAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qStaticUnicastTable",
                    "dot1qStaticUnicastEntry",
                    "dot1qStaticUnicastAddress"
                  ]
                },
                "description": "Retrieve dot1qStaticUnicastAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qStaticUnicastReceivePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qStaticUnicastTable/dot1qStaticUnicastEntry/dot1qStaticUnicastReceivePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qStaticUnicastTable",
                    "dot1qStaticUnicastEntry",
                    "dot1qStaticUnicastReceivePort"
                  ]
                },
                "description": "Retrieve dot1qStaticUnicastReceivePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qStaticUnicastAllowedToGoTo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qStaticUnicastTable/dot1qStaticUnicastEntry/dot1qStaticUnicastAllowedToGoTo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qStaticUnicastTable",
                    "dot1qStaticUnicastEntry",
                    "dot1qStaticUnicastAllowedToGoTo"
                  ]
                },
                "description": "Retrieve dot1qStaticUnicastAllowedToGoTo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qStaticUnicastStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qStaticUnicastTable/dot1qStaticUnicastEntry/dot1qStaticUnicastStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qStaticUnicastTable",
                    "dot1qStaticUnicastEntry",
                    "dot1qStaticUnicastStatus"
                  ]
                },
                "description": "Retrieve dot1qStaticUnicastStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qStaticMulticastTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qStaticMulticastTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qStaticMulticastTable"
                  ]
                },
                "description": "Retrieve dot1qStaticMulticastTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qStaticMulticastEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qStaticMulticastTable/dot1qStaticMulticastEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qStaticMulticastTable",
                    "dot1qStaticMulticastEntry"
                  ]
                },
                "description": "Retrieve dot1qStaticMulticastEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qStaticMulticastTable/dot1qStaticMulticastEntry/dot1qVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qStaticMulticastTable",
                    "dot1qStaticMulticastEntry",
                    "dot1qVlanIndex"
                  ]
                },
                "description": "Retrieve dot1qVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qStaticMulticastAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qStaticMulticastTable/dot1qStaticMulticastEntry/dot1qStaticMulticastAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qStaticMulticastTable",
                    "dot1qStaticMulticastEntry",
                    "dot1qStaticMulticastAddress"
                  ]
                },
                "description": "Retrieve dot1qStaticMulticastAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qStaticMulticastReceivePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qStaticMulticastTable/dot1qStaticMulticastEntry/dot1qStaticMulticastReceivePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qStaticMulticastTable",
                    "dot1qStaticMulticastEntry",
                    "dot1qStaticMulticastReceivePort"
                  ]
                },
                "description": "Retrieve dot1qStaticMulticastReceivePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qStaticMulticastStaticEgressPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qStaticMulticastTable/dot1qStaticMulticastEntry/dot1qStaticMulticastStaticEgressPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qStaticMulticastTable",
                    "dot1qStaticMulticastEntry",
                    "dot1qStaticMulticastStaticEgressPorts"
                  ]
                },
                "description": "Retrieve dot1qStaticMulticastStaticEgressPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qStaticMulticastForbiddenEgressPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qStaticMulticastTable/dot1qStaticMulticastEntry/dot1qStaticMulticastForbiddenEgressPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qStaticMulticastTable",
                    "dot1qStaticMulticastEntry",
                    "dot1qStaticMulticastForbiddenEgressPorts"
                  ]
                },
                "description": "Retrieve dot1qStaticMulticastForbiddenEgressPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qStaticMulticastStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qStaticMulticastTable/dot1qStaticMulticastEntry/dot1qStaticMulticastStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qStaticMulticastTable",
                    "dot1qStaticMulticastEntry",
                    "dot1qStaticMulticastStatus"
                  ]
                },
                "description": "Retrieve dot1qStaticMulticastStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanCurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanCurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanCurrentTable"
                  ]
                },
                "description": "Retrieve dot1qVlanCurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanCurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanCurrentTable/dot1qVlanCurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanCurrentTable",
                    "dot1qVlanCurrentEntry"
                  ]
                },
                "description": "Retrieve dot1qVlanCurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanTimeMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanCurrentTable/dot1qVlanCurrentEntry/dot1qVlanTimeMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanCurrentTable",
                    "dot1qVlanCurrentEntry",
                    "dot1qVlanTimeMark"
                  ]
                },
                "description": "Retrieve dot1qVlanTimeMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanCurrentTable/dot1qVlanCurrentEntry/dot1qVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanCurrentTable",
                    "dot1qVlanCurrentEntry",
                    "dot1qVlanIndex"
                  ]
                },
                "description": "Retrieve dot1qVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanFdbId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanCurrentTable/dot1qVlanCurrentEntry/dot1qVlanFdbId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanCurrentTable",
                    "dot1qVlanCurrentEntry",
                    "dot1qVlanFdbId"
                  ]
                },
                "description": "Retrieve dot1qVlanFdbId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanCurrentEgressPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanCurrentTable/dot1qVlanCurrentEntry/dot1qVlanCurrentEgressPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanCurrentTable",
                    "dot1qVlanCurrentEntry",
                    "dot1qVlanCurrentEgressPorts"
                  ]
                },
                "description": "Retrieve dot1qVlanCurrentEgressPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanCurrentUntaggedPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanCurrentTable/dot1qVlanCurrentEntry/dot1qVlanCurrentUntaggedPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanCurrentTable",
                    "dot1qVlanCurrentEntry",
                    "dot1qVlanCurrentUntaggedPorts"
                  ]
                },
                "description": "Retrieve dot1qVlanCurrentUntaggedPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanCurrentTable/dot1qVlanCurrentEntry/dot1qVlanStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanCurrentTable",
                    "dot1qVlanCurrentEntry",
                    "dot1qVlanStatus"
                  ]
                },
                "description": "Retrieve dot1qVlanStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanCreationTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanCurrentTable/dot1qVlanCurrentEntry/dot1qVlanCreationTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanCurrentTable",
                    "dot1qVlanCurrentEntry",
                    "dot1qVlanCreationTime"
                  ]
                },
                "description": "Retrieve dot1qVlanCreationTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanStaticTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanStaticTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanStaticTable"
                  ]
                },
                "description": "Retrieve dot1qVlanStaticTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanStaticEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanStaticTable/dot1qVlanStaticEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanStaticTable",
                    "dot1qVlanStaticEntry"
                  ]
                },
                "description": "Retrieve dot1qVlanStaticEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanStaticTable/dot1qVlanStaticEntry/dot1qVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanStaticTable",
                    "dot1qVlanStaticEntry",
                    "dot1qVlanIndex"
                  ]
                },
                "description": "Retrieve dot1qVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanStaticName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanStaticTable/dot1qVlanStaticEntry/dot1qVlanStaticName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanStaticTable",
                    "dot1qVlanStaticEntry",
                    "dot1qVlanStaticName"
                  ]
                },
                "description": "Retrieve dot1qVlanStaticName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanStaticEgressPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanStaticTable/dot1qVlanStaticEntry/dot1qVlanStaticEgressPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanStaticTable",
                    "dot1qVlanStaticEntry",
                    "dot1qVlanStaticEgressPorts"
                  ]
                },
                "description": "Retrieve dot1qVlanStaticEgressPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanForbiddenEgressPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanStaticTable/dot1qVlanStaticEntry/dot1qVlanForbiddenEgressPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanStaticTable",
                    "dot1qVlanStaticEntry",
                    "dot1qVlanForbiddenEgressPorts"
                  ]
                },
                "description": "Retrieve dot1qVlanForbiddenEgressPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanStaticUntaggedPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanStaticTable/dot1qVlanStaticEntry/dot1qVlanStaticUntaggedPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanStaticTable",
                    "dot1qVlanStaticEntry",
                    "dot1qVlanStaticUntaggedPorts"
                  ]
                },
                "description": "Retrieve dot1qVlanStaticUntaggedPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanStaticRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qVlanStaticTable/dot1qVlanStaticEntry/dot1qVlanStaticRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qVlanStaticTable",
                    "dot1qVlanStaticEntry",
                    "dot1qVlanStaticRowStatus"
                  ]
                },
                "description": "Retrieve dot1qVlanStaticRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qPortVlanStatisticsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanStatisticsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanStatisticsTable"
                  ]
                },
                "description": "Retrieve dot1qPortVlanStatisticsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qPortVlanStatisticsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanStatisticsTable/dot1qPortVlanStatisticsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanStatisticsTable",
                    "dot1qPortVlanStatisticsEntry"
                  ]
                },
                "description": "Retrieve dot1qPortVlanStatisticsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBasePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanStatisticsTable/dot1qPortVlanStatisticsEntry/dot1dBasePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanStatisticsTable",
                    "dot1qPortVlanStatisticsEntry",
                    "dot1dBasePort"
                  ]
                },
                "description": "Retrieve dot1dBasePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanStatisticsTable/dot1qPortVlanStatisticsEntry/dot1qVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanStatisticsTable",
                    "dot1qPortVlanStatisticsEntry",
                    "dot1qVlanIndex"
                  ]
                },
                "description": "Retrieve dot1qVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpVlanPortInFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanStatisticsTable/dot1qPortVlanStatisticsEntry/dot1qTpVlanPortInFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanStatisticsTable",
                    "dot1qPortVlanStatisticsEntry",
                    "dot1qTpVlanPortInFrames"
                  ]
                },
                "description": "Retrieve dot1qTpVlanPortInFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpVlanPortOutFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanStatisticsTable/dot1qPortVlanStatisticsEntry/dot1qTpVlanPortOutFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanStatisticsTable",
                    "dot1qPortVlanStatisticsEntry",
                    "dot1qTpVlanPortOutFrames"
                  ]
                },
                "description": "Retrieve dot1qTpVlanPortOutFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpVlanPortInDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanStatisticsTable/dot1qPortVlanStatisticsEntry/dot1qTpVlanPortInDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanStatisticsTable",
                    "dot1qPortVlanStatisticsEntry",
                    "dot1qTpVlanPortInDiscards"
                  ]
                },
                "description": "Retrieve dot1qTpVlanPortInDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpVlanPortInOverflowFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanStatisticsTable/dot1qPortVlanStatisticsEntry/dot1qTpVlanPortInOverflowFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanStatisticsTable",
                    "dot1qPortVlanStatisticsEntry",
                    "dot1qTpVlanPortInOverflowFrames"
                  ]
                },
                "description": "Retrieve dot1qTpVlanPortInOverflowFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpVlanPortOutOverflowFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanStatisticsTable/dot1qPortVlanStatisticsEntry/dot1qTpVlanPortOutOverflowFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanStatisticsTable",
                    "dot1qPortVlanStatisticsEntry",
                    "dot1qTpVlanPortOutOverflowFrames"
                  ]
                },
                "description": "Retrieve dot1qTpVlanPortOutOverflowFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpVlanPortInOverflowDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanStatisticsTable/dot1qPortVlanStatisticsEntry/dot1qTpVlanPortInOverflowDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanStatisticsTable",
                    "dot1qPortVlanStatisticsEntry",
                    "dot1qTpVlanPortInOverflowDiscards"
                  ]
                },
                "description": "Retrieve dot1qTpVlanPortInOverflowDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qPortVlanHCStatisticsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanHCStatisticsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanHCStatisticsTable"
                  ]
                },
                "description": "Retrieve dot1qPortVlanHCStatisticsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qPortVlanHCStatisticsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanHCStatisticsTable/dot1qPortVlanHCStatisticsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanHCStatisticsTable",
                    "dot1qPortVlanHCStatisticsEntry"
                  ]
                },
                "description": "Retrieve dot1qPortVlanHCStatisticsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBasePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanHCStatisticsTable/dot1qPortVlanHCStatisticsEntry/dot1dBasePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanHCStatisticsTable",
                    "dot1qPortVlanHCStatisticsEntry",
                    "dot1dBasePort"
                  ]
                },
                "description": "Retrieve dot1dBasePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qVlanIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanHCStatisticsTable/dot1qPortVlanHCStatisticsEntry/dot1qVlanIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanHCStatisticsTable",
                    "dot1qPortVlanHCStatisticsEntry",
                    "dot1qVlanIndex"
                  ]
                },
                "description": "Retrieve dot1qVlanIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpVlanPortHCInFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanHCStatisticsTable/dot1qPortVlanHCStatisticsEntry/dot1qTpVlanPortHCInFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanHCStatisticsTable",
                    "dot1qPortVlanHCStatisticsEntry",
                    "dot1qTpVlanPortHCInFrames"
                  ]
                },
                "description": "Retrieve dot1qTpVlanPortHCInFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpVlanPortHCOutFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanHCStatisticsTable/dot1qPortVlanHCStatisticsEntry/dot1qTpVlanPortHCOutFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanHCStatisticsTable",
                    "dot1qPortVlanHCStatisticsEntry",
                    "dot1qTpVlanPortHCOutFrames"
                  ]
                },
                "description": "Retrieve dot1qTpVlanPortHCOutFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qTpVlanPortHCInDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortVlanHCStatisticsTable/dot1qPortVlanHCStatisticsEntry/dot1qTpVlanPortHCInDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortVlanHCStatisticsTable",
                    "dot1qPortVlanHCStatisticsEntry",
                    "dot1qTpVlanPortHCInDiscards"
                  ]
                },
                "description": "Retrieve dot1qTpVlanPortHCInDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qLearningConstraintsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qLearningConstraintsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qLearningConstraintsTable"
                  ]
                },
                "description": "Retrieve dot1qLearningConstraintsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qLearningConstraintsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qLearningConstraintsTable/dot1qLearningConstraintsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qLearningConstraintsTable",
                    "dot1qLearningConstraintsEntry"
                  ]
                },
                "description": "Retrieve dot1qLearningConstraintsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qConstraintVlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qLearningConstraintsTable/dot1qLearningConstraintsEntry/dot1qConstraintVlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qLearningConstraintsTable",
                    "dot1qLearningConstraintsEntry",
                    "dot1qConstraintVlan"
                  ]
                },
                "description": "Retrieve dot1qConstraintVlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qConstraintSet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qLearningConstraintsTable/dot1qLearningConstraintsEntry/dot1qConstraintSet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qLearningConstraintsTable",
                    "dot1qLearningConstraintsEntry",
                    "dot1qConstraintSet"
                  ]
                },
                "description": "Retrieve dot1qConstraintSet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qConstraintType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qLearningConstraintsTable/dot1qLearningConstraintsEntry/dot1qConstraintType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qLearningConstraintsTable",
                    "dot1qLearningConstraintsEntry",
                    "dot1qConstraintType"
                  ]
                },
                "description": "Retrieve dot1qConstraintType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qConstraintStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qLearningConstraintsTable/dot1qLearningConstraintsEntry/dot1qConstraintStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qLearningConstraintsTable",
                    "dot1qLearningConstraintsEntry",
                    "dot1qConstraintStatus"
                  ]
                },
                "description": "Retrieve dot1qConstraintStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1vProtocolGroupTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1vProtocolGroupTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1vProtocolGroupTable"
                  ]
                },
                "description": "Retrieve dot1vProtocolGroupTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1vProtocolGroupEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1vProtocolGroupTable/dot1vProtocolGroupEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1vProtocolGroupTable",
                    "dot1vProtocolGroupEntry"
                  ]
                },
                "description": "Retrieve dot1vProtocolGroupEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1vProtocolTemplateFrameType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1vProtocolGroupTable/dot1vProtocolGroupEntry/dot1vProtocolTemplateFrameType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1vProtocolGroupTable",
                    "dot1vProtocolGroupEntry",
                    "dot1vProtocolTemplateFrameType"
                  ]
                },
                "description": "Retrieve dot1vProtocolTemplateFrameType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1vProtocolTemplateProtocolValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1vProtocolGroupTable/dot1vProtocolGroupEntry/dot1vProtocolTemplateProtocolValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1vProtocolGroupTable",
                    "dot1vProtocolGroupEntry",
                    "dot1vProtocolTemplateProtocolValue"
                  ]
                },
                "description": "Retrieve dot1vProtocolTemplateProtocolValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1vProtocolGroupId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1vProtocolGroupTable/dot1vProtocolGroupEntry/dot1vProtocolGroupId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1vProtocolGroupTable",
                    "dot1vProtocolGroupEntry",
                    "dot1vProtocolGroupId"
                  ]
                },
                "description": "Retrieve dot1vProtocolGroupId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1vProtocolGroupRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1vProtocolGroupTable/dot1vProtocolGroupEntry/dot1vProtocolGroupRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1vProtocolGroupTable",
                    "dot1vProtocolGroupEntry",
                    "dot1vProtocolGroupRowStatus"
                  ]
                },
                "description": "Retrieve dot1vProtocolGroupRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1vProtocolPortTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1vProtocolPortTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1vProtocolPortTable"
                  ]
                },
                "description": "Retrieve dot1vProtocolPortTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1vProtocolPortEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1vProtocolPortTable/dot1vProtocolPortEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1vProtocolPortTable",
                    "dot1vProtocolPortEntry"
                  ]
                },
                "description": "Retrieve dot1vProtocolPortEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1dBasePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1vProtocolPortTable/dot1vProtocolPortEntry/dot1dBasePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1vProtocolPortTable",
                    "dot1vProtocolPortEntry",
                    "dot1dBasePort"
                  ]
                },
                "description": "Retrieve dot1dBasePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1vProtocolPortGroupId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1vProtocolPortTable/dot1vProtocolPortEntry/dot1vProtocolPortGroupId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1vProtocolPortTable",
                    "dot1vProtocolPortEntry",
                    "dot1vProtocolPortGroupId"
                  ]
                },
                "description": "Retrieve dot1vProtocolPortGroupId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1vProtocolPortGroupVid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1vProtocolPortTable/dot1vProtocolPortEntry/dot1vProtocolPortGroupVid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1vProtocolPortTable",
                    "dot1vProtocolPortEntry",
                    "dot1vProtocolPortGroupVid"
                  ]
                },
                "description": "Retrieve dot1vProtocolPortGroupVid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1vProtocolPortRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1vProtocolPortTable/dot1vProtocolPortEntry/dot1vProtocolPortRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1vProtocolPortTable",
                    "dot1vProtocolPortEntry",
                    "dot1vProtocolPortRowStatus"
                  ]
                },
                "description": "Retrieve dot1vProtocolPortRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qPvid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPvid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPvid"
                  ]
                },
                "description": "Retrieve dot1qPvid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qPortAcceptableFrameTypes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortAcceptableFrameTypes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortAcceptableFrameTypes"
                  ]
                },
                "description": "Retrieve dot1qPortAcceptableFrameTypes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qPortIngressFiltering",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortIngressFiltering",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortIngressFiltering"
                  ]
                },
                "description": "Retrieve dot1qPortIngressFiltering from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qPortGvrpStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortGvrpStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortGvrpStatus"
                  ]
                },
                "description": "Retrieve dot1qPortGvrpStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qPortGvrpFailedRegistrations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortGvrpFailedRegistrations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortGvrpFailedRegistrations"
                  ]
                },
                "description": "Retrieve dot1qPortGvrpFailedRegistrations from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qPortGvrpLastPduOrigin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortGvrpLastPduOrigin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortGvrpLastPduOrigin"
                  ]
                },
                "description": "Retrieve dot1qPortGvrpLastPduOrigin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1qPortRestrictedVlanRegistration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/Q-BRIDGE-MIB:Q-BRIDGE-MIB/dot1qPortRestrictedVlanRegistration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "Q-BRIDGE-MIB:Q-BRIDGE-MIB",
                    "dot1qPortRestrictedVlanRegistration"
                  ]
                },
                "description": "Retrieve dot1qPortRestrictedVlanRegistration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "RFC1213-MIB",
          "description": "Cisco IOS-XE MIB - RFC1213-MIB\n\nMIB data from `RFC1213-MIB` module.\n\n**Root containers:** 1 (RFC1213-MIB)\n**Paths:** 200 | **Descendants:** 199\n\nAll endpoints are read-only (GET).\n\nEndpoints: 200 | Operations: 200",
          "item": [
            {
              "name": "GET Get RFC1213-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB"
                  ]
                },
                "description": "Retrieve RFC1213-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get system",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/system",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "system"
                  ]
                },
                "description": "Retrieve system from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/system/sysDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "system",
                    "sysDescr"
                  ]
                },
                "description": "Retrieve sysDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysObjectID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/system/sysObjectID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "system",
                    "sysObjectID"
                  ]
                },
                "description": "Retrieve sysObjectID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/system/sysUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "system",
                    "sysUpTime"
                  ]
                },
                "description": "Retrieve sysUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysContact",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/system/sysContact",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "system",
                    "sysContact"
                  ]
                },
                "description": "Retrieve sysContact from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/system/sysName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "system",
                    "sysName"
                  ]
                },
                "description": "Retrieve sysName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysLocation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/system/sysLocation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "system",
                    "sysLocation"
                  ]
                },
                "description": "Retrieve sysLocation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysServices",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/system/sysServices",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "system",
                    "sysServices"
                  ]
                },
                "description": "Retrieve sysServices from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interfaces",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "interfaces"
                  ]
                },
                "description": "Retrieve interfaces from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/interfaces/ifNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "interfaces",
                    "ifNumber"
                  ]
                },
                "description": "Retrieve ifNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip"
                  ]
                },
                "description": "Retrieve ip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwarding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipForwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipForwarding"
                  ]
                },
                "description": "Retrieve ipForwarding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipDefaultTTL",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipDefaultTTL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipDefaultTTL"
                  ]
                },
                "description": "Retrieve ipDefaultTTL from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipInReceives",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipInReceives",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipInReceives"
                  ]
                },
                "description": "Retrieve ipInReceives from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipInHdrErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipInHdrErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipInHdrErrors"
                  ]
                },
                "description": "Retrieve ipInHdrErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipInAddrErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipInAddrErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipInAddrErrors"
                  ]
                },
                "description": "Retrieve ipInAddrErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipForwDatagrams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipForwDatagrams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipForwDatagrams"
                  ]
                },
                "description": "Retrieve ipForwDatagrams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipInUnknownProtos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipInUnknownProtos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipInUnknownProtos"
                  ]
                },
                "description": "Retrieve ipInUnknownProtos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipInDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipInDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipInDiscards"
                  ]
                },
                "description": "Retrieve ipInDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipInDelivers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipInDelivers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipInDelivers"
                  ]
                },
                "description": "Retrieve ipInDelivers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipOutRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipOutRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipOutRequests"
                  ]
                },
                "description": "Retrieve ipOutRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipOutDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipOutDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipOutDiscards"
                  ]
                },
                "description": "Retrieve ipOutDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipOutNoRoutes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipOutNoRoutes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipOutNoRoutes"
                  ]
                },
                "description": "Retrieve ipOutNoRoutes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipReasmTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipReasmTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipReasmTimeout"
                  ]
                },
                "description": "Retrieve ipReasmTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipReasmReqds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipReasmReqds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipReasmReqds"
                  ]
                },
                "description": "Retrieve ipReasmReqds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipReasmOKs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipReasmOKs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipReasmOKs"
                  ]
                },
                "description": "Retrieve ipReasmOKs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipReasmFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipReasmFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipReasmFails"
                  ]
                },
                "description": "Retrieve ipReasmFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipFragOKs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipFragOKs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipFragOKs"
                  ]
                },
                "description": "Retrieve ipFragOKs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipFragFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipFragFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipFragFails"
                  ]
                },
                "description": "Retrieve ipFragFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipFragCreates",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipFragCreates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipFragCreates"
                  ]
                },
                "description": "Retrieve ipFragCreates from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipRoutingDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ip/ipRoutingDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ip",
                    "ipRoutingDiscards"
                  ]
                },
                "description": "Retrieve ipRoutingDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp"
                  ]
                },
                "description": "Retrieve icmp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpInMsgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpInMsgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpInMsgs"
                  ]
                },
                "description": "Retrieve icmpInMsgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpInErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpInErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpInErrors"
                  ]
                },
                "description": "Retrieve icmpInErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpInDestUnreachs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpInDestUnreachs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpInDestUnreachs"
                  ]
                },
                "description": "Retrieve icmpInDestUnreachs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpInTimeExcds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpInTimeExcds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpInTimeExcds"
                  ]
                },
                "description": "Retrieve icmpInTimeExcds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpInParmProbs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpInParmProbs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpInParmProbs"
                  ]
                },
                "description": "Retrieve icmpInParmProbs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpInSrcQuenchs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpInSrcQuenchs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpInSrcQuenchs"
                  ]
                },
                "description": "Retrieve icmpInSrcQuenchs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpInRedirects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpInRedirects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpInRedirects"
                  ]
                },
                "description": "Retrieve icmpInRedirects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpInEchos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpInEchos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpInEchos"
                  ]
                },
                "description": "Retrieve icmpInEchos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpInEchoReps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpInEchoReps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpInEchoReps"
                  ]
                },
                "description": "Retrieve icmpInEchoReps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpInTimestamps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpInTimestamps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpInTimestamps"
                  ]
                },
                "description": "Retrieve icmpInTimestamps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpInTimestampReps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpInTimestampReps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpInTimestampReps"
                  ]
                },
                "description": "Retrieve icmpInTimestampReps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpInAddrMasks",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpInAddrMasks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpInAddrMasks"
                  ]
                },
                "description": "Retrieve icmpInAddrMasks from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpInAddrMaskReps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpInAddrMaskReps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpInAddrMaskReps"
                  ]
                },
                "description": "Retrieve icmpInAddrMaskReps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpOutMsgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpOutMsgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpOutMsgs"
                  ]
                },
                "description": "Retrieve icmpOutMsgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpOutErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpOutErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpOutErrors"
                  ]
                },
                "description": "Retrieve icmpOutErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpOutDestUnreachs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpOutDestUnreachs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpOutDestUnreachs"
                  ]
                },
                "description": "Retrieve icmpOutDestUnreachs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpOutTimeExcds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpOutTimeExcds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpOutTimeExcds"
                  ]
                },
                "description": "Retrieve icmpOutTimeExcds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpOutParmProbs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpOutParmProbs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpOutParmProbs"
                  ]
                },
                "description": "Retrieve icmpOutParmProbs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpOutSrcQuenchs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpOutSrcQuenchs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpOutSrcQuenchs"
                  ]
                },
                "description": "Retrieve icmpOutSrcQuenchs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpOutRedirects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpOutRedirects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpOutRedirects"
                  ]
                },
                "description": "Retrieve icmpOutRedirects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpOutEchos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpOutEchos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpOutEchos"
                  ]
                },
                "description": "Retrieve icmpOutEchos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpOutEchoReps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpOutEchoReps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpOutEchoReps"
                  ]
                },
                "description": "Retrieve icmpOutEchoReps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpOutTimestamps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpOutTimestamps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpOutTimestamps"
                  ]
                },
                "description": "Retrieve icmpOutTimestamps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpOutTimestampReps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpOutTimestampReps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpOutTimestampReps"
                  ]
                },
                "description": "Retrieve icmpOutTimestampReps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpOutAddrMasks",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpOutAddrMasks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpOutAddrMasks"
                  ]
                },
                "description": "Retrieve icmpOutAddrMasks from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get icmpOutAddrMaskReps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/icmp/icmpOutAddrMaskReps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "icmp",
                    "icmpOutAddrMaskReps"
                  ]
                },
                "description": "Retrieve icmpOutAddrMaskReps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcp"
                  ]
                },
                "description": "Retrieve tcp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpRtoAlgorithm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcp/tcpRtoAlgorithm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcp",
                    "tcpRtoAlgorithm"
                  ]
                },
                "description": "Retrieve tcpRtoAlgorithm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpRtoMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcp/tcpRtoMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcp",
                    "tcpRtoMin"
                  ]
                },
                "description": "Retrieve tcpRtoMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpRtoMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcp/tcpRtoMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcp",
                    "tcpRtoMax"
                  ]
                },
                "description": "Retrieve tcpRtoMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpMaxConn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcp/tcpMaxConn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcp",
                    "tcpMaxConn"
                  ]
                },
                "description": "Retrieve tcpMaxConn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpActiveOpens",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcp/tcpActiveOpens",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcp",
                    "tcpActiveOpens"
                  ]
                },
                "description": "Retrieve tcpActiveOpens from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpPassiveOpens",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcp/tcpPassiveOpens",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcp",
                    "tcpPassiveOpens"
                  ]
                },
                "description": "Retrieve tcpPassiveOpens from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpAttemptFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcp/tcpAttemptFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcp",
                    "tcpAttemptFails"
                  ]
                },
                "description": "Retrieve tcpAttemptFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpEstabResets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcp/tcpEstabResets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcp",
                    "tcpEstabResets"
                  ]
                },
                "description": "Retrieve tcpEstabResets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpCurrEstab",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcp/tcpCurrEstab",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcp",
                    "tcpCurrEstab"
                  ]
                },
                "description": "Retrieve tcpCurrEstab from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpInSegs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcp/tcpInSegs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcp",
                    "tcpInSegs"
                  ]
                },
                "description": "Retrieve tcpInSegs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpOutSegs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcp/tcpOutSegs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcp",
                    "tcpOutSegs"
                  ]
                },
                "description": "Retrieve tcpOutSegs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpRetransSegs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcp/tcpRetransSegs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcp",
                    "tcpRetransSegs"
                  ]
                },
                "description": "Retrieve tcpRetransSegs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpInErrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcp/tcpInErrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcp",
                    "tcpInErrs"
                  ]
                },
                "description": "Retrieve tcpInErrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpOutRsts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcp/tcpOutRsts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcp",
                    "tcpOutRsts"
                  ]
                },
                "description": "Retrieve tcpOutRsts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/udp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "udp"
                  ]
                },
                "description": "Retrieve udp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpInDatagrams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/udp/udpInDatagrams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "udp",
                    "udpInDatagrams"
                  ]
                },
                "description": "Retrieve udpInDatagrams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpNoPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/udp/udpNoPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "udp",
                    "udpNoPorts"
                  ]
                },
                "description": "Retrieve udpNoPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpInErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/udp/udpInErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "udp",
                    "udpInErrors"
                  ]
                },
                "description": "Retrieve udpInErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpOutDatagrams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/udp/udpOutDatagrams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "udp",
                    "udpOutDatagrams"
                  ]
                },
                "description": "Retrieve udpOutDatagrams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egp"
                  ]
                },
                "description": "Retrieve egp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpInMsgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egp/egpInMsgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egp",
                    "egpInMsgs"
                  ]
                },
                "description": "Retrieve egpInMsgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpInErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egp/egpInErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egp",
                    "egpInErrors"
                  ]
                },
                "description": "Retrieve egpInErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpOutMsgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egp/egpOutMsgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egp",
                    "egpOutMsgs"
                  ]
                },
                "description": "Retrieve egpOutMsgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpOutErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egp/egpOutErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egp",
                    "egpOutErrors"
                  ]
                },
                "description": "Retrieve egpOutErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpAs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egp/egpAs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egp",
                    "egpAs"
                  ]
                },
                "description": "Retrieve egpAs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp"
                  ]
                },
                "description": "Retrieve snmp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInPkts"
                  ]
                },
                "description": "Retrieve snmpInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpOutPkts"
                  ]
                },
                "description": "Retrieve snmpOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInBadVersions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInBadVersions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInBadVersions"
                  ]
                },
                "description": "Retrieve snmpInBadVersions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInBadCommunityNames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInBadCommunityNames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInBadCommunityNames"
                  ]
                },
                "description": "Retrieve snmpInBadCommunityNames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInBadCommunityUses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInBadCommunityUses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInBadCommunityUses"
                  ]
                },
                "description": "Retrieve snmpInBadCommunityUses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInASNParseErrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInASNParseErrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInASNParseErrs"
                  ]
                },
                "description": "Retrieve snmpInASNParseErrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInTooBigs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInTooBigs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInTooBigs"
                  ]
                },
                "description": "Retrieve snmpInTooBigs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInNoSuchNames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInNoSuchNames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInNoSuchNames"
                  ]
                },
                "description": "Retrieve snmpInNoSuchNames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInBadValues",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInBadValues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInBadValues"
                  ]
                },
                "description": "Retrieve snmpInBadValues from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInReadOnlys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInReadOnlys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInReadOnlys"
                  ]
                },
                "description": "Retrieve snmpInReadOnlys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInGenErrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInGenErrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInGenErrs"
                  ]
                },
                "description": "Retrieve snmpInGenErrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInTotalReqVars",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInTotalReqVars",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInTotalReqVars"
                  ]
                },
                "description": "Retrieve snmpInTotalReqVars from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInTotalSetVars",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInTotalSetVars",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInTotalSetVars"
                  ]
                },
                "description": "Retrieve snmpInTotalSetVars from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInGetRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInGetRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInGetRequests"
                  ]
                },
                "description": "Retrieve snmpInGetRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInGetNexts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInGetNexts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInGetNexts"
                  ]
                },
                "description": "Retrieve snmpInGetNexts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInSetRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInSetRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInSetRequests"
                  ]
                },
                "description": "Retrieve snmpInSetRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInGetResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInGetResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInGetResponses"
                  ]
                },
                "description": "Retrieve snmpInGetResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInTraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpInTraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpInTraps"
                  ]
                },
                "description": "Retrieve snmpInTraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutTooBigs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpOutTooBigs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpOutTooBigs"
                  ]
                },
                "description": "Retrieve snmpOutTooBigs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutNoSuchNames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpOutNoSuchNames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpOutNoSuchNames"
                  ]
                },
                "description": "Retrieve snmpOutNoSuchNames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutBadValues",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpOutBadValues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpOutBadValues"
                  ]
                },
                "description": "Retrieve snmpOutBadValues from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutGenErrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpOutGenErrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpOutGenErrs"
                  ]
                },
                "description": "Retrieve snmpOutGenErrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutGetRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpOutGetRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpOutGetRequests"
                  ]
                },
                "description": "Retrieve snmpOutGetRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutGetNexts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpOutGetNexts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpOutGetNexts"
                  ]
                },
                "description": "Retrieve snmpOutGetNexts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutSetRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpOutSetRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpOutSetRequests"
                  ]
                },
                "description": "Retrieve snmpOutSetRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutGetResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpOutGetResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpOutGetResponses"
                  ]
                },
                "description": "Retrieve snmpOutGetResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutTraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpOutTraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpOutTraps"
                  ]
                },
                "description": "Retrieve snmpOutTraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpEnableAuthenTraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/snmp/snmpEnableAuthenTraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "snmp",
                    "snmpEnableAuthenTraps"
                  ]
                },
                "description": "Retrieve snmpEnableAuthenTraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable"
                  ]
                },
                "description": "Retrieve ifTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry"
                  ]
                },
                "description": "Retrieve ifEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifDescr"
                  ]
                },
                "description": "Retrieve ifDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifType"
                  ]
                },
                "description": "Retrieve ifType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifMtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifMtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifMtu"
                  ]
                },
                "description": "Retrieve ifMtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifSpeed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifSpeed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifSpeed"
                  ]
                },
                "description": "Retrieve ifSpeed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifPhysAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifPhysAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifPhysAddress"
                  ]
                },
                "description": "Retrieve ifPhysAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifAdminStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifAdminStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifAdminStatus"
                  ]
                },
                "description": "Retrieve ifAdminStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOperStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifOperStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifOperStatus"
                  ]
                },
                "description": "Retrieve ifOperStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifLastChange"
                  ]
                },
                "description": "Retrieve ifLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifInOctets"
                  ]
                },
                "description": "Retrieve ifInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifInUcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifInUcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifInUcastPkts"
                  ]
                },
                "description": "Retrieve ifInUcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifInNUcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifInNUcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifInNUcastPkts"
                  ]
                },
                "description": "Retrieve ifInNUcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifInDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifInDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifInDiscards"
                  ]
                },
                "description": "Retrieve ifInDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifInErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifInErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifInErrors"
                  ]
                },
                "description": "Retrieve ifInErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifInUnknownProtos",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifInUnknownProtos",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifInUnknownProtos"
                  ]
                },
                "description": "Retrieve ifInUnknownProtos from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifOutOctets"
                  ]
                },
                "description": "Retrieve ifOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOutUcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifOutUcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifOutUcastPkts"
                  ]
                },
                "description": "Retrieve ifOutUcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOutNUcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifOutNUcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifOutNUcastPkts"
                  ]
                },
                "description": "Retrieve ifOutNUcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOutDiscards",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifOutDiscards",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifOutDiscards"
                  ]
                },
                "description": "Retrieve ifOutDiscards from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOutErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifOutErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifOutErrors"
                  ]
                },
                "description": "Retrieve ifOutErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifOutQLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifOutQLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifOutQLen"
                  ]
                },
                "description": "Retrieve ifOutQLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifSpecific",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ifTable/ifEntry/ifSpecific",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ifTable",
                    "ifEntry",
                    "ifSpecific"
                  ]
                },
                "description": "Retrieve ifSpecific from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/atTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "atTable"
                  ]
                },
                "description": "Retrieve atTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/atTable/atEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "atTable",
                    "atEntry"
                  ]
                },
                "description": "Retrieve atEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/atTable/atEntry/atIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "atTable",
                    "atEntry",
                    "atIfIndex"
                  ]
                },
                "description": "Retrieve atIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atIfIndex_2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/atTable/atEntry/atIfIndex_2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "atTable",
                    "atEntry",
                    "atIfIndex_2"
                  ]
                },
                "description": "Retrieve atIfIndex_2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atPhysAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/atTable/atEntry/atPhysAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "atTable",
                    "atEntry",
                    "atPhysAddress"
                  ]
                },
                "description": "Retrieve atPhysAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atNetAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/atTable/atEntry/atNetAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "atTable",
                    "atEntry",
                    "atNetAddress"
                  ]
                },
                "description": "Retrieve atNetAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipAddrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipAddrTable"
                  ]
                },
                "description": "Retrieve ipAddrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAddrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipAddrTable/ipAddrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipAddrTable",
                    "ipAddrEntry"
                  ]
                },
                "description": "Retrieve ipAddrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAdEntAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipAddrTable/ipAddrEntry/ipAdEntAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipAddrTable",
                    "ipAddrEntry",
                    "ipAdEntAddr"
                  ]
                },
                "description": "Retrieve ipAdEntAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAdEntIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipAddrTable/ipAddrEntry/ipAdEntIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipAddrTable",
                    "ipAddrEntry",
                    "ipAdEntIfIndex"
                  ]
                },
                "description": "Retrieve ipAdEntIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAdEntNetMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipAddrTable/ipAddrEntry/ipAdEntNetMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipAddrTable",
                    "ipAddrEntry",
                    "ipAdEntNetMask"
                  ]
                },
                "description": "Retrieve ipAdEntNetMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAdEntBcastAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipAddrTable/ipAddrEntry/ipAdEntBcastAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipAddrTable",
                    "ipAddrEntry",
                    "ipAdEntBcastAddr"
                  ]
                },
                "description": "Retrieve ipAdEntBcastAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipAdEntReasmMaxSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipAddrTable/ipAddrEntry/ipAdEntReasmMaxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipAddrTable",
                    "ipAddrEntry",
                    "ipAdEntReasmMaxSize"
                  ]
                },
                "description": "Retrieve ipAdEntReasmMaxSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipRouteTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipRouteTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipRouteTable"
                  ]
                },
                "description": "Retrieve ipRouteTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipRouteEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipRouteTable/ipRouteEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipRouteTable",
                    "ipRouteEntry"
                  ]
                },
                "description": "Retrieve ipRouteEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipRouteDest",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipRouteTable/ipRouteEntry/ipRouteDest",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipRouteTable",
                    "ipRouteEntry",
                    "ipRouteDest"
                  ]
                },
                "description": "Retrieve ipRouteDest from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipRouteIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipRouteTable/ipRouteEntry/ipRouteIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipRouteTable",
                    "ipRouteEntry",
                    "ipRouteIfIndex"
                  ]
                },
                "description": "Retrieve ipRouteIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipRouteMetric1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipRouteTable/ipRouteEntry/ipRouteMetric1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipRouteTable",
                    "ipRouteEntry",
                    "ipRouteMetric1"
                  ]
                },
                "description": "Retrieve ipRouteMetric1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipRouteMetric2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipRouteTable/ipRouteEntry/ipRouteMetric2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipRouteTable",
                    "ipRouteEntry",
                    "ipRouteMetric2"
                  ]
                },
                "description": "Retrieve ipRouteMetric2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipRouteMetric3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipRouteTable/ipRouteEntry/ipRouteMetric3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipRouteTable",
                    "ipRouteEntry",
                    "ipRouteMetric3"
                  ]
                },
                "description": "Retrieve ipRouteMetric3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipRouteMetric4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipRouteTable/ipRouteEntry/ipRouteMetric4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipRouteTable",
                    "ipRouteEntry",
                    "ipRouteMetric4"
                  ]
                },
                "description": "Retrieve ipRouteMetric4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipRouteNextHop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipRouteTable/ipRouteEntry/ipRouteNextHop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipRouteTable",
                    "ipRouteEntry",
                    "ipRouteNextHop"
                  ]
                },
                "description": "Retrieve ipRouteNextHop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipRouteType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipRouteTable/ipRouteEntry/ipRouteType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipRouteTable",
                    "ipRouteEntry",
                    "ipRouteType"
                  ]
                },
                "description": "Retrieve ipRouteType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipRouteProto",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipRouteTable/ipRouteEntry/ipRouteProto",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipRouteTable",
                    "ipRouteEntry",
                    "ipRouteProto"
                  ]
                },
                "description": "Retrieve ipRouteProto from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipRouteAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipRouteTable/ipRouteEntry/ipRouteAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipRouteTable",
                    "ipRouteEntry",
                    "ipRouteAge"
                  ]
                },
                "description": "Retrieve ipRouteAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipRouteMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipRouteTable/ipRouteEntry/ipRouteMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipRouteTable",
                    "ipRouteEntry",
                    "ipRouteMask"
                  ]
                },
                "description": "Retrieve ipRouteMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipRouteMetric5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipRouteTable/ipRouteEntry/ipRouteMetric5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipRouteTable",
                    "ipRouteEntry",
                    "ipRouteMetric5"
                  ]
                },
                "description": "Retrieve ipRouteMetric5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipRouteInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipRouteTable/ipRouteEntry/ipRouteInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipRouteTable",
                    "ipRouteEntry",
                    "ipRouteInfo"
                  ]
                },
                "description": "Retrieve ipRouteInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipNetToMediaTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipNetToMediaTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipNetToMediaTable"
                  ]
                },
                "description": "Retrieve ipNetToMediaTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipNetToMediaEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipNetToMediaTable/ipNetToMediaEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipNetToMediaTable",
                    "ipNetToMediaEntry"
                  ]
                },
                "description": "Retrieve ipNetToMediaEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipNetToMediaIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipNetToMediaTable/ipNetToMediaEntry/ipNetToMediaIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipNetToMediaTable",
                    "ipNetToMediaEntry",
                    "ipNetToMediaIfIndex"
                  ]
                },
                "description": "Retrieve ipNetToMediaIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipNetToMediaPhysAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipNetToMediaTable/ipNetToMediaEntry/ipNetToMediaPhysAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipNetToMediaTable",
                    "ipNetToMediaEntry",
                    "ipNetToMediaPhysAddress"
                  ]
                },
                "description": "Retrieve ipNetToMediaPhysAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipNetToMediaNetAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipNetToMediaTable/ipNetToMediaEntry/ipNetToMediaNetAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipNetToMediaTable",
                    "ipNetToMediaEntry",
                    "ipNetToMediaNetAddress"
                  ]
                },
                "description": "Retrieve ipNetToMediaNetAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipNetToMediaType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/ipNetToMediaTable/ipNetToMediaEntry/ipNetToMediaType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "ipNetToMediaTable",
                    "ipNetToMediaEntry",
                    "ipNetToMediaType"
                  ]
                },
                "description": "Retrieve ipNetToMediaType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcpConnTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcpConnTable"
                  ]
                },
                "description": "Retrieve tcpConnTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcpConnTable/tcpConnEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcpConnTable",
                    "tcpConnEntry"
                  ]
                },
                "description": "Retrieve tcpConnEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcpConnTable/tcpConnEntry/tcpConnState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcpConnTable",
                    "tcpConnEntry",
                    "tcpConnState"
                  ]
                },
                "description": "Retrieve tcpConnState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnLocalAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcpConnTable/tcpConnEntry/tcpConnLocalAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcpConnTable",
                    "tcpConnEntry",
                    "tcpConnLocalAddress"
                  ]
                },
                "description": "Retrieve tcpConnLocalAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnLocalPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcpConnTable/tcpConnEntry/tcpConnLocalPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcpConnTable",
                    "tcpConnEntry",
                    "tcpConnLocalPort"
                  ]
                },
                "description": "Retrieve tcpConnLocalPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnRemAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcpConnTable/tcpConnEntry/tcpConnRemAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcpConnTable",
                    "tcpConnEntry",
                    "tcpConnRemAddress"
                  ]
                },
                "description": "Retrieve tcpConnRemAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnRemPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/tcpConnTable/tcpConnEntry/tcpConnRemPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "tcpConnTable",
                    "tcpConnEntry",
                    "tcpConnRemPort"
                  ]
                },
                "description": "Retrieve tcpConnRemPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/udpTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "udpTable"
                  ]
                },
                "description": "Retrieve udpTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/udpTable/udpEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "udpTable",
                    "udpEntry"
                  ]
                },
                "description": "Retrieve udpEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpLocalAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/udpTable/udpEntry/udpLocalAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "udpTable",
                    "udpEntry",
                    "udpLocalAddress"
                  ]
                },
                "description": "Retrieve udpLocalAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpLocalPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/udpTable/udpEntry/udpLocalPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "udpTable",
                    "udpEntry",
                    "udpLocalPort"
                  ]
                },
                "description": "Retrieve udpLocalPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable"
                  ]
                },
                "description": "Retrieve egpNeighTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable/egpNeighEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable",
                    "egpNeighEntry"
                  ]
                },
                "description": "Retrieve egpNeighEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable/egpNeighEntry/egpNeighState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable",
                    "egpNeighEntry",
                    "egpNeighState"
                  ]
                },
                "description": "Retrieve egpNeighState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable/egpNeighEntry/egpNeighAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable",
                    "egpNeighEntry",
                    "egpNeighAddr"
                  ]
                },
                "description": "Retrieve egpNeighAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighAs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable/egpNeighEntry/egpNeighAs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable",
                    "egpNeighEntry",
                    "egpNeighAs"
                  ]
                },
                "description": "Retrieve egpNeighAs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighInMsgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable/egpNeighEntry/egpNeighInMsgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable",
                    "egpNeighEntry",
                    "egpNeighInMsgs"
                  ]
                },
                "description": "Retrieve egpNeighInMsgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighInErrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable/egpNeighEntry/egpNeighInErrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable",
                    "egpNeighEntry",
                    "egpNeighInErrs"
                  ]
                },
                "description": "Retrieve egpNeighInErrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighOutMsgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable/egpNeighEntry/egpNeighOutMsgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable",
                    "egpNeighEntry",
                    "egpNeighOutMsgs"
                  ]
                },
                "description": "Retrieve egpNeighOutMsgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighOutErrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable/egpNeighEntry/egpNeighOutErrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable",
                    "egpNeighEntry",
                    "egpNeighOutErrs"
                  ]
                },
                "description": "Retrieve egpNeighOutErrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighInErrMsgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable/egpNeighEntry/egpNeighInErrMsgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable",
                    "egpNeighEntry",
                    "egpNeighInErrMsgs"
                  ]
                },
                "description": "Retrieve egpNeighInErrMsgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighOutErrMsgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable/egpNeighEntry/egpNeighOutErrMsgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable",
                    "egpNeighEntry",
                    "egpNeighOutErrMsgs"
                  ]
                },
                "description": "Retrieve egpNeighOutErrMsgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighStateUps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable/egpNeighEntry/egpNeighStateUps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable",
                    "egpNeighEntry",
                    "egpNeighStateUps"
                  ]
                },
                "description": "Retrieve egpNeighStateUps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighStateDowns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable/egpNeighEntry/egpNeighStateDowns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable",
                    "egpNeighEntry",
                    "egpNeighStateDowns"
                  ]
                },
                "description": "Retrieve egpNeighStateDowns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighIntervalHello",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable/egpNeighEntry/egpNeighIntervalHello",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable",
                    "egpNeighEntry",
                    "egpNeighIntervalHello"
                  ]
                },
                "description": "Retrieve egpNeighIntervalHello from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighIntervalPoll",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable/egpNeighEntry/egpNeighIntervalPoll",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable",
                    "egpNeighEntry",
                    "egpNeighIntervalPoll"
                  ]
                },
                "description": "Retrieve egpNeighIntervalPoll from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable/egpNeighEntry/egpNeighMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable",
                    "egpNeighEntry",
                    "egpNeighMode"
                  ]
                },
                "description": "Retrieve egpNeighMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egpNeighEventTrigger",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1213-MIB:RFC1213-MIB/egpNeighTable/egpNeighEntry/egpNeighEventTrigger",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1213-MIB:RFC1213-MIB",
                    "egpNeighTable",
                    "egpNeighEntry",
                    "egpNeighEventTrigger"
                  ]
                },
                "description": "Retrieve egpNeighEventTrigger from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "RFC1315-MIB",
          "description": "Cisco IOS-XE MIB - RFC1315-MIB\n\nMIB data from `RFC1315-MIB` module.\n\n**Root containers:** 1 (RFC1315-MIB)\n**Paths:** 47 | **Descendants:** 46\n\nAll endpoints are read-only (GET).\n\nEndpoints: 47 | Operations: 47",
          "item": [
            {
              "name": "GET Get RFC1315-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB"
                  ]
                },
                "description": "Retrieve RFC1315-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frame-relay-globals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frame-relay-globals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frame-relay-globals"
                  ]
                },
                "description": "Retrieve frame-relay-globals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frTrapState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frame-relay-globals/frTrapState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frame-relay-globals",
                    "frTrapState"
                  ]
                },
                "description": "Retrieve frTrapState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frDlcmiTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frDlcmiTable"
                  ]
                },
                "description": "Retrieve frDlcmiTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frDlcmiTable/frDlcmiEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry"
                  ]
                },
                "description": "Retrieve frDlcmiEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiIfIndex"
                  ]
                },
                "description": "Retrieve frDlcmiIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiState"
                  ]
                },
                "description": "Retrieve frDlcmiState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiAddress"
                  ]
                },
                "description": "Retrieve frDlcmiAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiAddressLen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiAddressLen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiAddressLen"
                  ]
                },
                "description": "Retrieve frDlcmiAddressLen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiPollingInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiPollingInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiPollingInterval"
                  ]
                },
                "description": "Retrieve frDlcmiPollingInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiFullEnquiryInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiFullEnquiryInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiFullEnquiryInterval"
                  ]
                },
                "description": "Retrieve frDlcmiFullEnquiryInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiErrorThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiErrorThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiErrorThreshold"
                  ]
                },
                "description": "Retrieve frDlcmiErrorThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiMonitoredEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiMonitoredEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiMonitoredEvents"
                  ]
                },
                "description": "Retrieve frDlcmiMonitoredEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiMaxSupportedVCs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiMaxSupportedVCs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiMaxSupportedVCs"
                  ]
                },
                "description": "Retrieve frDlcmiMaxSupportedVCs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frDlcmiMulticast",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frDlcmiTable/frDlcmiEntry/frDlcmiMulticast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frDlcmiTable",
                    "frDlcmiEntry",
                    "frDlcmiMulticast"
                  ]
                },
                "description": "Retrieve frDlcmiMulticast from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frCircuitTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frCircuitTable"
                  ]
                },
                "description": "Retrieve frCircuitTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frCircuitTable/frCircuitEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frCircuitTable",
                    "frCircuitEntry"
                  ]
                },
                "description": "Retrieve frCircuitEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frCircuitTable/frCircuitEntry/frCircuitIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitIfIndex"
                  ]
                },
                "description": "Retrieve frCircuitIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitDlci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frCircuitTable/frCircuitEntry/frCircuitDlci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitDlci"
                  ]
                },
                "description": "Retrieve frCircuitDlci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frCircuitTable/frCircuitEntry/frCircuitState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitState"
                  ]
                },
                "description": "Retrieve frCircuitState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitReceivedFECNs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frCircuitTable/frCircuitEntry/frCircuitReceivedFECNs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitReceivedFECNs"
                  ]
                },
                "description": "Retrieve frCircuitReceivedFECNs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitReceivedBECNs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frCircuitTable/frCircuitEntry/frCircuitReceivedBECNs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitReceivedBECNs"
                  ]
                },
                "description": "Retrieve frCircuitReceivedBECNs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitSentFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frCircuitTable/frCircuitEntry/frCircuitSentFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitSentFrames"
                  ]
                },
                "description": "Retrieve frCircuitSentFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitSentOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frCircuitTable/frCircuitEntry/frCircuitSentOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitSentOctets"
                  ]
                },
                "description": "Retrieve frCircuitSentOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitReceivedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frCircuitTable/frCircuitEntry/frCircuitReceivedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitReceivedFrames"
                  ]
                },
                "description": "Retrieve frCircuitReceivedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitReceivedOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frCircuitTable/frCircuitEntry/frCircuitReceivedOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitReceivedOctets"
                  ]
                },
                "description": "Retrieve frCircuitReceivedOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitCreationTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frCircuitTable/frCircuitEntry/frCircuitCreationTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitCreationTime"
                  ]
                },
                "description": "Retrieve frCircuitCreationTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitLastTimeChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frCircuitTable/frCircuitEntry/frCircuitLastTimeChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitLastTimeChange"
                  ]
                },
                "description": "Retrieve frCircuitLastTimeChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitCommittedBurst",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frCircuitTable/frCircuitEntry/frCircuitCommittedBurst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitCommittedBurst"
                  ]
                },
                "description": "Retrieve frCircuitCommittedBurst from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitExcessBurst",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frCircuitTable/frCircuitEntry/frCircuitExcessBurst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitExcessBurst"
                  ]
                },
                "description": "Retrieve frCircuitExcessBurst from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitThroughput",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frCircuitTable/frCircuitEntry/frCircuitThroughput",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frCircuitTable",
                    "frCircuitEntry",
                    "frCircuitThroughput"
                  ]
                },
                "description": "Retrieve frCircuitThroughput from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frErrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frErrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frErrTable"
                  ]
                },
                "description": "Retrieve frErrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frErrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frErrTable/frErrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frErrTable",
                    "frErrEntry"
                  ]
                },
                "description": "Retrieve frErrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frErrIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frErrTable/frErrEntry/frErrIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frErrTable",
                    "frErrEntry",
                    "frErrIfIndex"
                  ]
                },
                "description": "Retrieve frErrIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frErrType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frErrTable/frErrEntry/frErrType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frErrTable",
                    "frErrEntry",
                    "frErrType"
                  ]
                },
                "description": "Retrieve frErrType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frErrData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frErrTable/frErrEntry/frErrData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frErrTable",
                    "frErrEntry",
                    "frErrData"
                  ]
                },
                "description": "Retrieve frErrData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frErrTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frErrTable/frErrEntry/frErrTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frErrTable",
                    "frErrEntry",
                    "frErrTime"
                  ]
                },
                "description": "Retrieve frErrTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frErrTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frErrTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitDlci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frErrTable/object-1/frCircuitDlci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frErrTable",
                    "object-1",
                    "frCircuitDlci"
                  ]
                },
                "description": "Retrieve frCircuitDlci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frErrTable/object-1/frCircuitIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frErrTable",
                    "object-1",
                    "frCircuitIfIndex"
                  ]
                },
                "description": "Retrieve frCircuitIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frErrTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frErrTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frErrTable/object-2/frCircuitIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frErrTable",
                    "object-2",
                    "frCircuitIfIndex"
                  ]
                },
                "description": "Retrieve frCircuitIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitDlci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frErrTable/object-2/frCircuitDlci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frErrTable",
                    "object-2",
                    "frCircuitDlci"
                  ]
                },
                "description": "Retrieve frCircuitDlci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frErrTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frErrTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frErrTable/object-3/frCircuitIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frErrTable",
                    "object-3",
                    "frCircuitIfIndex"
                  ]
                },
                "description": "Retrieve frCircuitIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitDlci",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frErrTable/object-3/frCircuitDlci",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frErrTable",
                    "object-3",
                    "frCircuitDlci"
                  ]
                },
                "description": "Retrieve frCircuitDlci from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get frCircuitState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RFC1315-MIB:RFC1315-MIB/frErrTable/object-3/frCircuitState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RFC1315-MIB:RFC1315-MIB",
                    "frErrTable",
                    "object-3",
                    "frCircuitState"
                  ]
                },
                "description": "Retrieve frCircuitState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "RMON-MIB",
          "description": "Cisco IOS-XE MIB - RMON-MIB\n\nMIB data from `RMON-MIB` module.\n\n**Root containers:** 1 (RMON-MIB)\n**Paths:** 219 | **Descendants:** 231\n\nAll endpoints are read-only (GET).\n\nEndpoints: 219 | Operations: 219",
          "item": [
            {
              "name": "GET Get RMON-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB"
                  ]
                },
                "description": "Retrieve RMON-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable"
                  ]
                },
                "description": "Retrieve etherStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry"
                  ]
                },
                "description": "Retrieve etherStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsIndex"
                  ]
                },
                "description": "Retrieve etherStatsIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsDataSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsDataSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsDataSource"
                  ]
                },
                "description": "Retrieve etherStatsDataSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsDropEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsDropEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsDropEvents"
                  ]
                },
                "description": "Retrieve etherStatsDropEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsOctets"
                  ]
                },
                "description": "Retrieve etherStatsOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsPkts"
                  ]
                },
                "description": "Retrieve etherStatsPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsBroadcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsBroadcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsBroadcastPkts"
                  ]
                },
                "description": "Retrieve etherStatsBroadcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsMulticastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsMulticastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsMulticastPkts"
                  ]
                },
                "description": "Retrieve etherStatsMulticastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsCRCAlignErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsCRCAlignErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsCRCAlignErrors"
                  ]
                },
                "description": "Retrieve etherStatsCRCAlignErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsUndersizePkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsUndersizePkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsUndersizePkts"
                  ]
                },
                "description": "Retrieve etherStatsUndersizePkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsOversizePkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsOversizePkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsOversizePkts"
                  ]
                },
                "description": "Retrieve etherStatsOversizePkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsFragments",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsFragments",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsFragments"
                  ]
                },
                "description": "Retrieve etherStatsFragments from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsJabbers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsJabbers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsJabbers"
                  ]
                },
                "description": "Retrieve etherStatsJabbers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsCollisions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsCollisions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsCollisions"
                  ]
                },
                "description": "Retrieve etherStatsCollisions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsPkts64Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsPkts64Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsPkts64Octets"
                  ]
                },
                "description": "Retrieve etherStatsPkts64Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsPkts65to127Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsPkts65to127Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsPkts65to127Octets"
                  ]
                },
                "description": "Retrieve etherStatsPkts65to127Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsPkts128to255Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsPkts128to255Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsPkts128to255Octets"
                  ]
                },
                "description": "Retrieve etherStatsPkts128to255Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsPkts256to511Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsPkts256to511Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsPkts256to511Octets"
                  ]
                },
                "description": "Retrieve etherStatsPkts256to511Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsPkts512to1023Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsPkts512to1023Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsPkts512to1023Octets"
                  ]
                },
                "description": "Retrieve etherStatsPkts512to1023Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsPkts1024to1518Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsPkts1024to1518Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsPkts1024to1518Octets"
                  ]
                },
                "description": "Retrieve etherStatsPkts1024to1518Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsOwner"
                  ]
                },
                "description": "Retrieve etherStatsOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherStatsTable/etherStatsEntry/etherStatsStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherStatsTable",
                    "etherStatsEntry",
                    "etherStatsStatus"
                  ]
                },
                "description": "Retrieve etherStatsStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get historyControlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/historyControlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "historyControlTable"
                  ]
                },
                "description": "Retrieve historyControlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get historyControlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/historyControlTable/historyControlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "historyControlTable",
                    "historyControlEntry"
                  ]
                },
                "description": "Retrieve historyControlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get historyControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/historyControlTable/historyControlEntry/historyControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "historyControlTable",
                    "historyControlEntry",
                    "historyControlIndex"
                  ]
                },
                "description": "Retrieve historyControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get historyControlDataSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/historyControlTable/historyControlEntry/historyControlDataSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "historyControlTable",
                    "historyControlEntry",
                    "historyControlDataSource"
                  ]
                },
                "description": "Retrieve historyControlDataSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get historyControlBucketsRequested",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/historyControlTable/historyControlEntry/historyControlBucketsRequested",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "historyControlTable",
                    "historyControlEntry",
                    "historyControlBucketsRequested"
                  ]
                },
                "description": "Retrieve historyControlBucketsRequested from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get historyControlBucketsGranted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/historyControlTable/historyControlEntry/historyControlBucketsGranted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "historyControlTable",
                    "historyControlEntry",
                    "historyControlBucketsGranted"
                  ]
                },
                "description": "Retrieve historyControlBucketsGranted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get historyControlInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/historyControlTable/historyControlEntry/historyControlInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "historyControlTable",
                    "historyControlEntry",
                    "historyControlInterval"
                  ]
                },
                "description": "Retrieve historyControlInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get historyControlOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/historyControlTable/historyControlEntry/historyControlOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "historyControlTable",
                    "historyControlEntry",
                    "historyControlOwner"
                  ]
                },
                "description": "Retrieve historyControlOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get historyControlStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/historyControlTable/historyControlEntry/historyControlStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "historyControlTable",
                    "historyControlEntry",
                    "historyControlStatus"
                  ]
                },
                "description": "Retrieve historyControlStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistoryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable"
                  ]
                },
                "description": "Retrieve etherHistoryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistoryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable/etherHistoryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable",
                    "etherHistoryEntry"
                  ]
                },
                "description": "Retrieve etherHistoryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable/etherHistoryEntry/etherHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable",
                    "etherHistoryEntry",
                    "etherHistoryIndex"
                  ]
                },
                "description": "Retrieve etherHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistorySampleIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable/etherHistoryEntry/etherHistorySampleIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable",
                    "etherHistoryEntry",
                    "etherHistorySampleIndex"
                  ]
                },
                "description": "Retrieve etherHistorySampleIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistoryIntervalStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable/etherHistoryEntry/etherHistoryIntervalStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable",
                    "etherHistoryEntry",
                    "etherHistoryIntervalStart"
                  ]
                },
                "description": "Retrieve etherHistoryIntervalStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistoryDropEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable/etherHistoryEntry/etherHistoryDropEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable",
                    "etherHistoryEntry",
                    "etherHistoryDropEvents"
                  ]
                },
                "description": "Retrieve etherHistoryDropEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistoryOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable/etherHistoryEntry/etherHistoryOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable",
                    "etherHistoryEntry",
                    "etherHistoryOctets"
                  ]
                },
                "description": "Retrieve etherHistoryOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistoryPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable/etherHistoryEntry/etherHistoryPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable",
                    "etherHistoryEntry",
                    "etherHistoryPkts"
                  ]
                },
                "description": "Retrieve etherHistoryPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistoryBroadcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable/etherHistoryEntry/etherHistoryBroadcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable",
                    "etherHistoryEntry",
                    "etherHistoryBroadcastPkts"
                  ]
                },
                "description": "Retrieve etherHistoryBroadcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistoryMulticastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable/etherHistoryEntry/etherHistoryMulticastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable",
                    "etherHistoryEntry",
                    "etherHistoryMulticastPkts"
                  ]
                },
                "description": "Retrieve etherHistoryMulticastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistoryCRCAlignErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable/etherHistoryEntry/etherHistoryCRCAlignErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable",
                    "etherHistoryEntry",
                    "etherHistoryCRCAlignErrors"
                  ]
                },
                "description": "Retrieve etherHistoryCRCAlignErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistoryUndersizePkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable/etherHistoryEntry/etherHistoryUndersizePkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable",
                    "etherHistoryEntry",
                    "etherHistoryUndersizePkts"
                  ]
                },
                "description": "Retrieve etherHistoryUndersizePkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistoryOversizePkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable/etherHistoryEntry/etherHistoryOversizePkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable",
                    "etherHistoryEntry",
                    "etherHistoryOversizePkts"
                  ]
                },
                "description": "Retrieve etherHistoryOversizePkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistoryFragments",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable/etherHistoryEntry/etherHistoryFragments",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable",
                    "etherHistoryEntry",
                    "etherHistoryFragments"
                  ]
                },
                "description": "Retrieve etherHistoryFragments from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistoryJabbers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable/etherHistoryEntry/etherHistoryJabbers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable",
                    "etherHistoryEntry",
                    "etherHistoryJabbers"
                  ]
                },
                "description": "Retrieve etherHistoryJabbers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistoryCollisions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable/etherHistoryEntry/etherHistoryCollisions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable",
                    "etherHistoryEntry",
                    "etherHistoryCollisions"
                  ]
                },
                "description": "Retrieve etherHistoryCollisions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherHistoryUtilization",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/etherHistoryTable/etherHistoryEntry/etherHistoryUtilization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "etherHistoryTable",
                    "etherHistoryEntry",
                    "etherHistoryUtilization"
                  ]
                },
                "description": "Retrieve etherHistoryUtilization from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/alarmTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "alarmTable"
                  ]
                },
                "description": "Retrieve alarmTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/alarmTable/alarmEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "alarmTable",
                    "alarmEntry"
                  ]
                },
                "description": "Retrieve alarmEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/alarmTable/alarmEntry/alarmIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "alarmTable",
                    "alarmEntry",
                    "alarmIndex"
                  ]
                },
                "description": "Retrieve alarmIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/alarmTable/alarmEntry/alarmInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "alarmTable",
                    "alarmEntry",
                    "alarmInterval"
                  ]
                },
                "description": "Retrieve alarmInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmVariable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/alarmTable/alarmEntry/alarmVariable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "alarmTable",
                    "alarmEntry",
                    "alarmVariable"
                  ]
                },
                "description": "Retrieve alarmVariable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmSampleType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/alarmTable/alarmEntry/alarmSampleType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "alarmTable",
                    "alarmEntry",
                    "alarmSampleType"
                  ]
                },
                "description": "Retrieve alarmSampleType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/alarmTable/alarmEntry/alarmValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "alarmTable",
                    "alarmEntry",
                    "alarmValue"
                  ]
                },
                "description": "Retrieve alarmValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmStartupAlarm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/alarmTable/alarmEntry/alarmStartupAlarm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "alarmTable",
                    "alarmEntry",
                    "alarmStartupAlarm"
                  ]
                },
                "description": "Retrieve alarmStartupAlarm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmRisingThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/alarmTable/alarmEntry/alarmRisingThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "alarmTable",
                    "alarmEntry",
                    "alarmRisingThreshold"
                  ]
                },
                "description": "Retrieve alarmRisingThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmFallingThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/alarmTable/alarmEntry/alarmFallingThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "alarmTable",
                    "alarmEntry",
                    "alarmFallingThreshold"
                  ]
                },
                "description": "Retrieve alarmFallingThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmRisingEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/alarmTable/alarmEntry/alarmRisingEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "alarmTable",
                    "alarmEntry",
                    "alarmRisingEventIndex"
                  ]
                },
                "description": "Retrieve alarmRisingEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmFallingEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/alarmTable/alarmEntry/alarmFallingEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "alarmTable",
                    "alarmEntry",
                    "alarmFallingEventIndex"
                  ]
                },
                "description": "Retrieve alarmFallingEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/alarmTable/alarmEntry/alarmOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "alarmTable",
                    "alarmEntry",
                    "alarmOwner"
                  ]
                },
                "description": "Retrieve alarmOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/alarmTable/alarmEntry/alarmStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "alarmTable",
                    "alarmEntry",
                    "alarmStatus"
                  ]
                },
                "description": "Retrieve alarmStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostControlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostControlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostControlTable"
                  ]
                },
                "description": "Retrieve hostControlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostControlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostControlTable/hostControlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostControlTable",
                    "hostControlEntry"
                  ]
                },
                "description": "Retrieve hostControlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostControlTable/hostControlEntry/hostControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostControlTable",
                    "hostControlEntry",
                    "hostControlIndex"
                  ]
                },
                "description": "Retrieve hostControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostControlDataSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostControlTable/hostControlEntry/hostControlDataSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostControlTable",
                    "hostControlEntry",
                    "hostControlDataSource"
                  ]
                },
                "description": "Retrieve hostControlDataSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostControlTableSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostControlTable/hostControlEntry/hostControlTableSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostControlTable",
                    "hostControlEntry",
                    "hostControlTableSize"
                  ]
                },
                "description": "Retrieve hostControlTableSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostControlLastDeleteTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostControlTable/hostControlEntry/hostControlLastDeleteTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostControlTable",
                    "hostControlEntry",
                    "hostControlLastDeleteTime"
                  ]
                },
                "description": "Retrieve hostControlLastDeleteTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostControlOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostControlTable/hostControlEntry/hostControlOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostControlTable",
                    "hostControlEntry",
                    "hostControlOwner"
                  ]
                },
                "description": "Retrieve hostControlOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostControlStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostControlTable/hostControlEntry/hostControlStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostControlTable",
                    "hostControlEntry",
                    "hostControlStatus"
                  ]
                },
                "description": "Retrieve hostControlStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTable"
                  ]
                },
                "description": "Retrieve hostTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTable/hostEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTable",
                    "hostEntry"
                  ]
                },
                "description": "Retrieve hostEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTable/hostEntry/hostAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTable",
                    "hostEntry",
                    "hostAddress"
                  ]
                },
                "description": "Retrieve hostAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostCreationOrder",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTable/hostEntry/hostCreationOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTable",
                    "hostEntry",
                    "hostCreationOrder"
                  ]
                },
                "description": "Retrieve hostCreationOrder from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTable/hostEntry/hostIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTable",
                    "hostEntry",
                    "hostIndex"
                  ]
                },
                "description": "Retrieve hostIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTable/hostEntry/hostInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTable",
                    "hostEntry",
                    "hostInPkts"
                  ]
                },
                "description": "Retrieve hostInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTable/hostEntry/hostOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTable",
                    "hostEntry",
                    "hostOutPkts"
                  ]
                },
                "description": "Retrieve hostOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTable/hostEntry/hostInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTable",
                    "hostEntry",
                    "hostInOctets"
                  ]
                },
                "description": "Retrieve hostInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTable/hostEntry/hostOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTable",
                    "hostEntry",
                    "hostOutOctets"
                  ]
                },
                "description": "Retrieve hostOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostOutErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTable/hostEntry/hostOutErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTable",
                    "hostEntry",
                    "hostOutErrors"
                  ]
                },
                "description": "Retrieve hostOutErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostOutBroadcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTable/hostEntry/hostOutBroadcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTable",
                    "hostEntry",
                    "hostOutBroadcastPkts"
                  ]
                },
                "description": "Retrieve hostOutBroadcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostOutMulticastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTable/hostEntry/hostOutMulticastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTable",
                    "hostEntry",
                    "hostOutMulticastPkts"
                  ]
                },
                "description": "Retrieve hostOutMulticastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTimeTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTimeTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTimeTable"
                  ]
                },
                "description": "Retrieve hostTimeTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTimeEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTimeTable/hostTimeEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTimeTable",
                    "hostTimeEntry"
                  ]
                },
                "description": "Retrieve hostTimeEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTimeAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTimeTable/hostTimeEntry/hostTimeAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTimeTable",
                    "hostTimeEntry",
                    "hostTimeAddress"
                  ]
                },
                "description": "Retrieve hostTimeAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTimeCreationOrder",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTimeTable/hostTimeEntry/hostTimeCreationOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTimeTable",
                    "hostTimeEntry",
                    "hostTimeCreationOrder"
                  ]
                },
                "description": "Retrieve hostTimeCreationOrder from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTimeIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTimeTable/hostTimeEntry/hostTimeIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTimeTable",
                    "hostTimeEntry",
                    "hostTimeIndex"
                  ]
                },
                "description": "Retrieve hostTimeIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTimeInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTimeTable/hostTimeEntry/hostTimeInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTimeTable",
                    "hostTimeEntry",
                    "hostTimeInPkts"
                  ]
                },
                "description": "Retrieve hostTimeInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTimeOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTimeTable/hostTimeEntry/hostTimeOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTimeTable",
                    "hostTimeEntry",
                    "hostTimeOutPkts"
                  ]
                },
                "description": "Retrieve hostTimeOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTimeInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTimeTable/hostTimeEntry/hostTimeInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTimeTable",
                    "hostTimeEntry",
                    "hostTimeInOctets"
                  ]
                },
                "description": "Retrieve hostTimeInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTimeOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTimeTable/hostTimeEntry/hostTimeOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTimeTable",
                    "hostTimeEntry",
                    "hostTimeOutOctets"
                  ]
                },
                "description": "Retrieve hostTimeOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTimeOutErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTimeTable/hostTimeEntry/hostTimeOutErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTimeTable",
                    "hostTimeEntry",
                    "hostTimeOutErrors"
                  ]
                },
                "description": "Retrieve hostTimeOutErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTimeOutBroadcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTimeTable/hostTimeEntry/hostTimeOutBroadcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTimeTable",
                    "hostTimeEntry",
                    "hostTimeOutBroadcastPkts"
                  ]
                },
                "description": "Retrieve hostTimeOutBroadcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTimeOutMulticastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTimeTable/hostTimeEntry/hostTimeOutMulticastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTimeTable",
                    "hostTimeEntry",
                    "hostTimeOutMulticastPkts"
                  ]
                },
                "description": "Retrieve hostTimeOutMulticastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNControlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNControlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNControlTable"
                  ]
                },
                "description": "Retrieve hostTopNControlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNControlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNControlTable/hostTopNControlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNControlTable",
                    "hostTopNControlEntry"
                  ]
                },
                "description": "Retrieve hostTopNControlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNControlTable/hostTopNControlEntry/hostTopNControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNControlTable",
                    "hostTopNControlEntry",
                    "hostTopNControlIndex"
                  ]
                },
                "description": "Retrieve hostTopNControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNHostIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNControlTable/hostTopNControlEntry/hostTopNHostIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNControlTable",
                    "hostTopNControlEntry",
                    "hostTopNHostIndex"
                  ]
                },
                "description": "Retrieve hostTopNHostIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNRateBase",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNControlTable/hostTopNControlEntry/hostTopNRateBase",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNControlTable",
                    "hostTopNControlEntry",
                    "hostTopNRateBase"
                  ]
                },
                "description": "Retrieve hostTopNRateBase from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNTimeRemaining",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNControlTable/hostTopNControlEntry/hostTopNTimeRemaining",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNControlTable",
                    "hostTopNControlEntry",
                    "hostTopNTimeRemaining"
                  ]
                },
                "description": "Retrieve hostTopNTimeRemaining from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNControlTable/hostTopNControlEntry/hostTopNDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNControlTable",
                    "hostTopNControlEntry",
                    "hostTopNDuration"
                  ]
                },
                "description": "Retrieve hostTopNDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNRequestedSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNControlTable/hostTopNControlEntry/hostTopNRequestedSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNControlTable",
                    "hostTopNControlEntry",
                    "hostTopNRequestedSize"
                  ]
                },
                "description": "Retrieve hostTopNRequestedSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNGrantedSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNControlTable/hostTopNControlEntry/hostTopNGrantedSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNControlTable",
                    "hostTopNControlEntry",
                    "hostTopNGrantedSize"
                  ]
                },
                "description": "Retrieve hostTopNGrantedSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNStartTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNControlTable/hostTopNControlEntry/hostTopNStartTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNControlTable",
                    "hostTopNControlEntry",
                    "hostTopNStartTime"
                  ]
                },
                "description": "Retrieve hostTopNStartTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNControlTable/hostTopNControlEntry/hostTopNOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNControlTable",
                    "hostTopNControlEntry",
                    "hostTopNOwner"
                  ]
                },
                "description": "Retrieve hostTopNOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNControlTable/hostTopNControlEntry/hostTopNStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNControlTable",
                    "hostTopNControlEntry",
                    "hostTopNStatus"
                  ]
                },
                "description": "Retrieve hostTopNStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNTable"
                  ]
                },
                "description": "Retrieve hostTopNTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNTable/hostTopNEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNTable",
                    "hostTopNEntry"
                  ]
                },
                "description": "Retrieve hostTopNEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNReport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNTable/hostTopNEntry/hostTopNReport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNTable",
                    "hostTopNEntry",
                    "hostTopNReport"
                  ]
                },
                "description": "Retrieve hostTopNReport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNTable/hostTopNEntry/hostTopNIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNTable",
                    "hostTopNEntry",
                    "hostTopNIndex"
                  ]
                },
                "description": "Retrieve hostTopNIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNTable/hostTopNEntry/hostTopNAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNTable",
                    "hostTopNEntry",
                    "hostTopNAddress"
                  ]
                },
                "description": "Retrieve hostTopNAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostTopNRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/hostTopNTable/hostTopNEntry/hostTopNRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "hostTopNTable",
                    "hostTopNEntry",
                    "hostTopNRate"
                  ]
                },
                "description": "Retrieve hostTopNRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixControlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixControlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixControlTable"
                  ]
                },
                "description": "Retrieve matrixControlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixControlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixControlTable/matrixControlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixControlTable",
                    "matrixControlEntry"
                  ]
                },
                "description": "Retrieve matrixControlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixControlTable/matrixControlEntry/matrixControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixControlTable",
                    "matrixControlEntry",
                    "matrixControlIndex"
                  ]
                },
                "description": "Retrieve matrixControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixControlDataSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixControlTable/matrixControlEntry/matrixControlDataSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixControlTable",
                    "matrixControlEntry",
                    "matrixControlDataSource"
                  ]
                },
                "description": "Retrieve matrixControlDataSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixControlTableSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixControlTable/matrixControlEntry/matrixControlTableSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixControlTable",
                    "matrixControlEntry",
                    "matrixControlTableSize"
                  ]
                },
                "description": "Retrieve matrixControlTableSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixControlLastDeleteTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixControlTable/matrixControlEntry/matrixControlLastDeleteTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixControlTable",
                    "matrixControlEntry",
                    "matrixControlLastDeleteTime"
                  ]
                },
                "description": "Retrieve matrixControlLastDeleteTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixControlOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixControlTable/matrixControlEntry/matrixControlOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixControlTable",
                    "matrixControlEntry",
                    "matrixControlOwner"
                  ]
                },
                "description": "Retrieve matrixControlOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixControlStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixControlTable/matrixControlEntry/matrixControlStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixControlTable",
                    "matrixControlEntry",
                    "matrixControlStatus"
                  ]
                },
                "description": "Retrieve matrixControlStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixSDTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixSDTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixSDTable"
                  ]
                },
                "description": "Retrieve matrixSDTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixSDEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixSDTable/matrixSDEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixSDTable",
                    "matrixSDEntry"
                  ]
                },
                "description": "Retrieve matrixSDEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixSDSourceAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixSDTable/matrixSDEntry/matrixSDSourceAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixSDTable",
                    "matrixSDEntry",
                    "matrixSDSourceAddress"
                  ]
                },
                "description": "Retrieve matrixSDSourceAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixSDDestAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixSDTable/matrixSDEntry/matrixSDDestAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixSDTable",
                    "matrixSDEntry",
                    "matrixSDDestAddress"
                  ]
                },
                "description": "Retrieve matrixSDDestAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixSDIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixSDTable/matrixSDEntry/matrixSDIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixSDTable",
                    "matrixSDEntry",
                    "matrixSDIndex"
                  ]
                },
                "description": "Retrieve matrixSDIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixSDPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixSDTable/matrixSDEntry/matrixSDPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixSDTable",
                    "matrixSDEntry",
                    "matrixSDPkts"
                  ]
                },
                "description": "Retrieve matrixSDPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixSDOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixSDTable/matrixSDEntry/matrixSDOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixSDTable",
                    "matrixSDEntry",
                    "matrixSDOctets"
                  ]
                },
                "description": "Retrieve matrixSDOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixSDErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixSDTable/matrixSDEntry/matrixSDErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixSDTable",
                    "matrixSDEntry",
                    "matrixSDErrors"
                  ]
                },
                "description": "Retrieve matrixSDErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixDSTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixDSTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixDSTable"
                  ]
                },
                "description": "Retrieve matrixDSTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixDSEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixDSTable/matrixDSEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixDSTable",
                    "matrixDSEntry"
                  ]
                },
                "description": "Retrieve matrixDSEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixDSSourceAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixDSTable/matrixDSEntry/matrixDSSourceAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixDSTable",
                    "matrixDSEntry",
                    "matrixDSSourceAddress"
                  ]
                },
                "description": "Retrieve matrixDSSourceAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixDSDestAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixDSTable/matrixDSEntry/matrixDSDestAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixDSTable",
                    "matrixDSEntry",
                    "matrixDSDestAddress"
                  ]
                },
                "description": "Retrieve matrixDSDestAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixDSIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixDSTable/matrixDSEntry/matrixDSIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixDSTable",
                    "matrixDSEntry",
                    "matrixDSIndex"
                  ]
                },
                "description": "Retrieve matrixDSIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixDSPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixDSTable/matrixDSEntry/matrixDSPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixDSTable",
                    "matrixDSEntry",
                    "matrixDSPkts"
                  ]
                },
                "description": "Retrieve matrixDSPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixDSOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixDSTable/matrixDSEntry/matrixDSOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixDSTable",
                    "matrixDSEntry",
                    "matrixDSOctets"
                  ]
                },
                "description": "Retrieve matrixDSOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixDSErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/matrixDSTable/matrixDSEntry/matrixDSErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "matrixDSTable",
                    "matrixDSEntry",
                    "matrixDSErrors"
                  ]
                },
                "description": "Retrieve matrixDSErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filterTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/filterTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "filterTable"
                  ]
                },
                "description": "Retrieve filterTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filterEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/filterTable/filterEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "filterTable",
                    "filterEntry"
                  ]
                },
                "description": "Retrieve filterEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filterIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/filterTable/filterEntry/filterIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "filterTable",
                    "filterEntry",
                    "filterIndex"
                  ]
                },
                "description": "Retrieve filterIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filterChannelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/filterTable/filterEntry/filterChannelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "filterTable",
                    "filterEntry",
                    "filterChannelIndex"
                  ]
                },
                "description": "Retrieve filterChannelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filterPktDataOffset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/filterTable/filterEntry/filterPktDataOffset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "filterTable",
                    "filterEntry",
                    "filterPktDataOffset"
                  ]
                },
                "description": "Retrieve filterPktDataOffset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filterPktData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/filterTable/filterEntry/filterPktData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "filterTable",
                    "filterEntry",
                    "filterPktData"
                  ]
                },
                "description": "Retrieve filterPktData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filterPktDataMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/filterTable/filterEntry/filterPktDataMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "filterTable",
                    "filterEntry",
                    "filterPktDataMask"
                  ]
                },
                "description": "Retrieve filterPktDataMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filterPktDataNotMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/filterTable/filterEntry/filterPktDataNotMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "filterTable",
                    "filterEntry",
                    "filterPktDataNotMask"
                  ]
                },
                "description": "Retrieve filterPktDataNotMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filterPktStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/filterTable/filterEntry/filterPktStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "filterTable",
                    "filterEntry",
                    "filterPktStatus"
                  ]
                },
                "description": "Retrieve filterPktStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filterPktStatusMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/filterTable/filterEntry/filterPktStatusMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "filterTable",
                    "filterEntry",
                    "filterPktStatusMask"
                  ]
                },
                "description": "Retrieve filterPktStatusMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filterPktStatusNotMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/filterTable/filterEntry/filterPktStatusNotMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "filterTable",
                    "filterEntry",
                    "filterPktStatusNotMask"
                  ]
                },
                "description": "Retrieve filterPktStatusNotMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filterOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/filterTable/filterEntry/filterOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "filterTable",
                    "filterEntry",
                    "filterOwner"
                  ]
                },
                "description": "Retrieve filterOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filterStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/filterTable/filterEntry/filterStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "filterTable",
                    "filterEntry",
                    "filterStatus"
                  ]
                },
                "description": "Retrieve filterStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get channelTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/channelTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "channelTable"
                  ]
                },
                "description": "Retrieve channelTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get channelEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/channelTable/channelEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "channelTable",
                    "channelEntry"
                  ]
                },
                "description": "Retrieve channelEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get channelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/channelTable/channelEntry/channelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "channelTable",
                    "channelEntry",
                    "channelIndex"
                  ]
                },
                "description": "Retrieve channelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get channelIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/channelTable/channelEntry/channelIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "channelTable",
                    "channelEntry",
                    "channelIfIndex"
                  ]
                },
                "description": "Retrieve channelIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get channelAcceptType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/channelTable/channelEntry/channelAcceptType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "channelTable",
                    "channelEntry",
                    "channelAcceptType"
                  ]
                },
                "description": "Retrieve channelAcceptType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get channelDataControl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/channelTable/channelEntry/channelDataControl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "channelTable",
                    "channelEntry",
                    "channelDataControl"
                  ]
                },
                "description": "Retrieve channelDataControl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get channelTurnOnEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/channelTable/channelEntry/channelTurnOnEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "channelTable",
                    "channelEntry",
                    "channelTurnOnEventIndex"
                  ]
                },
                "description": "Retrieve channelTurnOnEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get channelTurnOffEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/channelTable/channelEntry/channelTurnOffEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "channelTable",
                    "channelEntry",
                    "channelTurnOffEventIndex"
                  ]
                },
                "description": "Retrieve channelTurnOffEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get channelEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/channelTable/channelEntry/channelEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "channelTable",
                    "channelEntry",
                    "channelEventIndex"
                  ]
                },
                "description": "Retrieve channelEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get channelEventStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/channelTable/channelEntry/channelEventStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "channelTable",
                    "channelEntry",
                    "channelEventStatus"
                  ]
                },
                "description": "Retrieve channelEventStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get channelMatches",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/channelTable/channelEntry/channelMatches",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "channelTable",
                    "channelEntry",
                    "channelMatches"
                  ]
                },
                "description": "Retrieve channelMatches from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get channelDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/channelTable/channelEntry/channelDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "channelTable",
                    "channelEntry",
                    "channelDescription"
                  ]
                },
                "description": "Retrieve channelDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get channelOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/channelTable/channelEntry/channelOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "channelTable",
                    "channelEntry",
                    "channelOwner"
                  ]
                },
                "description": "Retrieve channelOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get channelStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/channelTable/channelEntry/channelStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "channelTable",
                    "channelEntry",
                    "channelStatus"
                  ]
                },
                "description": "Retrieve channelStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bufferControlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/bufferControlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "bufferControlTable"
                  ]
                },
                "description": "Retrieve bufferControlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bufferControlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/bufferControlTable/bufferControlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "bufferControlTable",
                    "bufferControlEntry"
                  ]
                },
                "description": "Retrieve bufferControlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bufferControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/bufferControlTable/bufferControlEntry/bufferControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "bufferControlTable",
                    "bufferControlEntry",
                    "bufferControlIndex"
                  ]
                },
                "description": "Retrieve bufferControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bufferControlChannelIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/bufferControlTable/bufferControlEntry/bufferControlChannelIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "bufferControlTable",
                    "bufferControlEntry",
                    "bufferControlChannelIndex"
                  ]
                },
                "description": "Retrieve bufferControlChannelIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bufferControlFullStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/bufferControlTable/bufferControlEntry/bufferControlFullStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "bufferControlTable",
                    "bufferControlEntry",
                    "bufferControlFullStatus"
                  ]
                },
                "description": "Retrieve bufferControlFullStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bufferControlFullAction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/bufferControlTable/bufferControlEntry/bufferControlFullAction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "bufferControlTable",
                    "bufferControlEntry",
                    "bufferControlFullAction"
                  ]
                },
                "description": "Retrieve bufferControlFullAction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bufferControlCaptureSliceSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/bufferControlTable/bufferControlEntry/bufferControlCaptureSliceSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "bufferControlTable",
                    "bufferControlEntry",
                    "bufferControlCaptureSliceSize"
                  ]
                },
                "description": "Retrieve bufferControlCaptureSliceSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bufferControlDownloadSliceSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/bufferControlTable/bufferControlEntry/bufferControlDownloadSliceSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "bufferControlTable",
                    "bufferControlEntry",
                    "bufferControlDownloadSliceSize"
                  ]
                },
                "description": "Retrieve bufferControlDownloadSliceSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bufferControlDownloadOffset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/bufferControlTable/bufferControlEntry/bufferControlDownloadOffset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "bufferControlTable",
                    "bufferControlEntry",
                    "bufferControlDownloadOffset"
                  ]
                },
                "description": "Retrieve bufferControlDownloadOffset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bufferControlMaxOctetsRequested",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/bufferControlTable/bufferControlEntry/bufferControlMaxOctetsRequested",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "bufferControlTable",
                    "bufferControlEntry",
                    "bufferControlMaxOctetsRequested"
                  ]
                },
                "description": "Retrieve bufferControlMaxOctetsRequested from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bufferControlMaxOctetsGranted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/bufferControlTable/bufferControlEntry/bufferControlMaxOctetsGranted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "bufferControlTable",
                    "bufferControlEntry",
                    "bufferControlMaxOctetsGranted"
                  ]
                },
                "description": "Retrieve bufferControlMaxOctetsGranted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bufferControlCapturedPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/bufferControlTable/bufferControlEntry/bufferControlCapturedPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "bufferControlTable",
                    "bufferControlEntry",
                    "bufferControlCapturedPackets"
                  ]
                },
                "description": "Retrieve bufferControlCapturedPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bufferControlTurnOnTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/bufferControlTable/bufferControlEntry/bufferControlTurnOnTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "bufferControlTable",
                    "bufferControlEntry",
                    "bufferControlTurnOnTime"
                  ]
                },
                "description": "Retrieve bufferControlTurnOnTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bufferControlOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/bufferControlTable/bufferControlEntry/bufferControlOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "bufferControlTable",
                    "bufferControlEntry",
                    "bufferControlOwner"
                  ]
                },
                "description": "Retrieve bufferControlOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bufferControlStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/bufferControlTable/bufferControlEntry/bufferControlStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "bufferControlTable",
                    "bufferControlEntry",
                    "bufferControlStatus"
                  ]
                },
                "description": "Retrieve bufferControlStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get captureBufferTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/captureBufferTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "captureBufferTable"
                  ]
                },
                "description": "Retrieve captureBufferTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get captureBufferEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/captureBufferTable/captureBufferEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "captureBufferTable",
                    "captureBufferEntry"
                  ]
                },
                "description": "Retrieve captureBufferEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get captureBufferControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/captureBufferTable/captureBufferEntry/captureBufferControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "captureBufferTable",
                    "captureBufferEntry",
                    "captureBufferControlIndex"
                  ]
                },
                "description": "Retrieve captureBufferControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get captureBufferIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/captureBufferTable/captureBufferEntry/captureBufferIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "captureBufferTable",
                    "captureBufferEntry",
                    "captureBufferIndex"
                  ]
                },
                "description": "Retrieve captureBufferIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get captureBufferPacketID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/captureBufferTable/captureBufferEntry/captureBufferPacketID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "captureBufferTable",
                    "captureBufferEntry",
                    "captureBufferPacketID"
                  ]
                },
                "description": "Retrieve captureBufferPacketID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get captureBufferPacketData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/captureBufferTable/captureBufferEntry/captureBufferPacketData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "captureBufferTable",
                    "captureBufferEntry",
                    "captureBufferPacketData"
                  ]
                },
                "description": "Retrieve captureBufferPacketData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get captureBufferPacketLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/captureBufferTable/captureBufferEntry/captureBufferPacketLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "captureBufferTable",
                    "captureBufferEntry",
                    "captureBufferPacketLength"
                  ]
                },
                "description": "Retrieve captureBufferPacketLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get captureBufferPacketTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/captureBufferTable/captureBufferEntry/captureBufferPacketTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "captureBufferTable",
                    "captureBufferEntry",
                    "captureBufferPacketTime"
                  ]
                },
                "description": "Retrieve captureBufferPacketTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get captureBufferPacketStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/captureBufferTable/captureBufferEntry/captureBufferPacketStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "captureBufferTable",
                    "captureBufferEntry",
                    "captureBufferPacketStatus"
                  ]
                },
                "description": "Retrieve captureBufferPacketStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get eventTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/eventTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "eventTable"
                  ]
                },
                "description": "Retrieve eventTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get eventEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/eventTable/eventEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "eventTable",
                    "eventEntry"
                  ]
                },
                "description": "Retrieve eventEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get eventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/eventTable/eventEntry/eventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "eventTable",
                    "eventEntry",
                    "eventIndex"
                  ]
                },
                "description": "Retrieve eventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get eventDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/eventTable/eventEntry/eventDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "eventTable",
                    "eventEntry",
                    "eventDescription"
                  ]
                },
                "description": "Retrieve eventDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get eventType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/eventTable/eventEntry/eventType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "eventTable",
                    "eventEntry",
                    "eventType"
                  ]
                },
                "description": "Retrieve eventType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get eventCommunity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/eventTable/eventEntry/eventCommunity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "eventTable",
                    "eventEntry",
                    "eventCommunity"
                  ]
                },
                "description": "Retrieve eventCommunity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get eventLastTimeSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/eventTable/eventEntry/eventLastTimeSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "eventTable",
                    "eventEntry",
                    "eventLastTimeSent"
                  ]
                },
                "description": "Retrieve eventLastTimeSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get eventOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/eventTable/eventEntry/eventOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "eventTable",
                    "eventEntry",
                    "eventOwner"
                  ]
                },
                "description": "Retrieve eventOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get eventStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/eventTable/eventEntry/eventStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "eventTable",
                    "eventEntry",
                    "eventStatus"
                  ]
                },
                "description": "Retrieve eventStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get logTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable"
                  ]
                },
                "description": "Retrieve logTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get logEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/logEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "logEntry"
                  ]
                },
                "description": "Retrieve logEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get logEventIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/logEntry/logEventIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "logEntry",
                    "logEventIndex"
                  ]
                },
                "description": "Retrieve logEventIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get logIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/logEntry/logIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "logEntry",
                    "logIndex"
                  ]
                },
                "description": "Retrieve logIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get logTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/logEntry/logTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "logEntry",
                    "logTime"
                  ]
                },
                "description": "Retrieve logTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get logDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/logEntry/logDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "logEntry",
                    "logDescription"
                  ]
                },
                "description": "Retrieve logDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/object-1/alarmIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "object-1",
                    "alarmIndex"
                  ]
                },
                "description": "Retrieve alarmIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/object-2/alarmIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "object-2",
                    "alarmIndex"
                  ]
                },
                "description": "Retrieve alarmIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmVariable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/object-2/alarmVariable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "object-2",
                    "alarmVariable"
                  ]
                },
                "description": "Retrieve alarmVariable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/object-3/alarmIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "object-3",
                    "alarmIndex"
                  ]
                },
                "description": "Retrieve alarmIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmSampleType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/object-3/alarmSampleType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "object-3",
                    "alarmSampleType"
                  ]
                },
                "description": "Retrieve alarmSampleType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/object-4/alarmIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "object-4",
                    "alarmIndex"
                  ]
                },
                "description": "Retrieve alarmIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/object-4/alarmValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "object-4",
                    "alarmValue"
                  ]
                },
                "description": "Retrieve alarmValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/object-5/alarmIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "object-5",
                    "alarmIndex"
                  ]
                },
                "description": "Retrieve alarmIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmRisingThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/object-5/alarmRisingThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "object-5",
                    "alarmRisingThreshold"
                  ]
                },
                "description": "Retrieve alarmRisingThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alarmFallingThreshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON-MIB:RMON-MIB/logTable/object-5/alarmFallingThreshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON-MIB:RMON-MIB",
                    "logTable",
                    "object-5",
                    "alarmFallingThreshold"
                  ]
                },
                "description": "Retrieve alarmFallingThreshold from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "RMON2-MIB",
          "description": "Cisco IOS-XE MIB - RMON2-MIB\n\nMIB data from `RMON2-MIB` module.\n\n**Root containers:** 1 (RMON2-MIB)\n**Paths:** 282 | **Descendants:** 281\n\nAll endpoints are read-only (GET).\n\nEndpoints: 282 | Operations: 282",
          "item": [
            {
              "name": "GET Get RMON2-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB"
                  ]
                },
                "description": "Retrieve RMON2-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDir",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDir"
                  ]
                },
                "description": "Retrieve protocolDir from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDir/protocolDirLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDir",
                    "protocolDirLastChange"
                  ]
                },
                "description": "Retrieve protocolDirLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMap"
                  ]
                },
                "description": "Retrieve addressMap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapInserts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMap/addressMapInserts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMap",
                    "addressMapInserts"
                  ]
                },
                "description": "Retrieve addressMapInserts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapDeletes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMap/addressMapDeletes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMap",
                    "addressMapDeletes"
                  ]
                },
                "description": "Retrieve addressMapDeletes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapMaxDesiredEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMap/addressMapMaxDesiredEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMap",
                    "addressMapMaxDesiredEntries"
                  ]
                },
                "description": "Retrieve addressMapMaxDesiredEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get probeConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/probeConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "probeConfig"
                  ]
                },
                "description": "Retrieve probeConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get probeCapabilities",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/probeConfig/probeCapabilities",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "probeConfig",
                    "probeCapabilities"
                  ]
                },
                "description": "Retrieve probeCapabilities from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get probeSoftwareRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/probeConfig/probeSoftwareRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "probeConfig",
                    "probeSoftwareRev"
                  ]
                },
                "description": "Retrieve probeSoftwareRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get probeHardwareRev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/probeConfig/probeHardwareRev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "probeConfig",
                    "probeHardwareRev"
                  ]
                },
                "description": "Retrieve probeHardwareRev from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get probeDateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/probeConfig/probeDateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "probeConfig",
                    "probeDateTime"
                  ]
                },
                "description": "Retrieve probeDateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get probeResetControl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/probeConfig/probeResetControl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "probeConfig",
                    "probeResetControl"
                  ]
                },
                "description": "Retrieve probeResetControl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get probeDownloadFile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/probeConfig/probeDownloadFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "probeConfig",
                    "probeDownloadFile"
                  ]
                },
                "description": "Retrieve probeDownloadFile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get probeDownloadTFTPServer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/probeConfig/probeDownloadTFTPServer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "probeConfig",
                    "probeDownloadTFTPServer"
                  ]
                },
                "description": "Retrieve probeDownloadTFTPServer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get probeDownloadAction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/probeConfig/probeDownloadAction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "probeConfig",
                    "probeDownloadAction"
                  ]
                },
                "description": "Retrieve probeDownloadAction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get probeDownloadStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/probeConfig/probeDownloadStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "probeConfig",
                    "probeDownloadStatus"
                  ]
                },
                "description": "Retrieve probeDownloadStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get netDefaultGateway",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/probeConfig/netDefaultGateway",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "probeConfig",
                    "netDefaultGateway"
                  ]
                },
                "description": "Retrieve netDefaultGateway from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDirTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDirTable"
                  ]
                },
                "description": "Retrieve protocolDirTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDirTable/protocolDirEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDirTable",
                    "protocolDirEntry"
                  ]
                },
                "description": "Retrieve protocolDirEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDirTable/protocolDirEntry/protocolDirID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDirTable",
                    "protocolDirEntry",
                    "protocolDirID"
                  ]
                },
                "description": "Retrieve protocolDirID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirParameters",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDirTable/protocolDirEntry/protocolDirParameters",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDirTable",
                    "protocolDirEntry",
                    "protocolDirParameters"
                  ]
                },
                "description": "Retrieve protocolDirParameters from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirLocalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDirTable/protocolDirEntry/protocolDirLocalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDirTable",
                    "protocolDirEntry",
                    "protocolDirLocalIndex"
                  ]
                },
                "description": "Retrieve protocolDirLocalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDirTable/protocolDirEntry/protocolDirDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDirTable",
                    "protocolDirEntry",
                    "protocolDirDescr"
                  ]
                },
                "description": "Retrieve protocolDirDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDirTable/protocolDirEntry/protocolDirType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDirTable",
                    "protocolDirEntry",
                    "protocolDirType"
                  ]
                },
                "description": "Retrieve protocolDirType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirAddressMapConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDirTable/protocolDirEntry/protocolDirAddressMapConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDirTable",
                    "protocolDirEntry",
                    "protocolDirAddressMapConfig"
                  ]
                },
                "description": "Retrieve protocolDirAddressMapConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirHostConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDirTable/protocolDirEntry/protocolDirHostConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDirTable",
                    "protocolDirEntry",
                    "protocolDirHostConfig"
                  ]
                },
                "description": "Retrieve protocolDirHostConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirMatrixConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDirTable/protocolDirEntry/protocolDirMatrixConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDirTable",
                    "protocolDirEntry",
                    "protocolDirMatrixConfig"
                  ]
                },
                "description": "Retrieve protocolDirMatrixConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDirTable/protocolDirEntry/protocolDirOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDirTable",
                    "protocolDirEntry",
                    "protocolDirOwner"
                  ]
                },
                "description": "Retrieve protocolDirOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDirTable/protocolDirEntry/protocolDirStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDirTable",
                    "protocolDirEntry",
                    "protocolDirStatus"
                  ]
                },
                "description": "Retrieve protocolDirStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDistControlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDistControlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDistControlTable"
                  ]
                },
                "description": "Retrieve protocolDistControlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDistControlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDistControlTable/protocolDistControlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDistControlTable",
                    "protocolDistControlEntry"
                  ]
                },
                "description": "Retrieve protocolDistControlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDistControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDistControlTable/protocolDistControlEntry/protocolDistControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDistControlTable",
                    "protocolDistControlEntry",
                    "protocolDistControlIndex"
                  ]
                },
                "description": "Retrieve protocolDistControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDistControlDataSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDistControlTable/protocolDistControlEntry/protocolDistControlDataSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDistControlTable",
                    "protocolDistControlEntry",
                    "protocolDistControlDataSource"
                  ]
                },
                "description": "Retrieve protocolDistControlDataSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDistControlDroppedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDistControlTable/protocolDistControlEntry/protocolDistControlDroppedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDistControlTable",
                    "protocolDistControlEntry",
                    "protocolDistControlDroppedFrames"
                  ]
                },
                "description": "Retrieve protocolDistControlDroppedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDistControlCreateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDistControlTable/protocolDistControlEntry/protocolDistControlCreateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDistControlTable",
                    "protocolDistControlEntry",
                    "protocolDistControlCreateTime"
                  ]
                },
                "description": "Retrieve protocolDistControlCreateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDistControlOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDistControlTable/protocolDistControlEntry/protocolDistControlOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDistControlTable",
                    "protocolDistControlEntry",
                    "protocolDistControlOwner"
                  ]
                },
                "description": "Retrieve protocolDistControlOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDistControlStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDistControlTable/protocolDistControlEntry/protocolDistControlStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDistControlTable",
                    "protocolDistControlEntry",
                    "protocolDistControlStatus"
                  ]
                },
                "description": "Retrieve protocolDistControlStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDistStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDistStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDistStatsTable"
                  ]
                },
                "description": "Retrieve protocolDistStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDistStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDistStatsTable/protocolDistStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDistStatsTable",
                    "protocolDistStatsEntry"
                  ]
                },
                "description": "Retrieve protocolDistStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDistControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDistStatsTable/protocolDistStatsEntry/protocolDistControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDistStatsTable",
                    "protocolDistStatsEntry",
                    "protocolDistControlIndex"
                  ]
                },
                "description": "Retrieve protocolDistControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirLocalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDistStatsTable/protocolDistStatsEntry/protocolDirLocalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDistStatsTable",
                    "protocolDistStatsEntry",
                    "protocolDirLocalIndex"
                  ]
                },
                "description": "Retrieve protocolDirLocalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDistStatsPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDistStatsTable/protocolDistStatsEntry/protocolDistStatsPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDistStatsTable",
                    "protocolDistStatsEntry",
                    "protocolDistStatsPkts"
                  ]
                },
                "description": "Retrieve protocolDistStatsPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDistStatsOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/protocolDistStatsTable/protocolDistStatsEntry/protocolDistStatsOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "protocolDistStatsTable",
                    "protocolDistStatsEntry",
                    "protocolDistStatsOctets"
                  ]
                },
                "description": "Retrieve protocolDistStatsOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapControlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMapControlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMapControlTable"
                  ]
                },
                "description": "Retrieve addressMapControlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapControlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMapControlTable/addressMapControlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMapControlTable",
                    "addressMapControlEntry"
                  ]
                },
                "description": "Retrieve addressMapControlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMapControlTable/addressMapControlEntry/addressMapControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMapControlTable",
                    "addressMapControlEntry",
                    "addressMapControlIndex"
                  ]
                },
                "description": "Retrieve addressMapControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapControlDataSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMapControlTable/addressMapControlEntry/addressMapControlDataSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMapControlTable",
                    "addressMapControlEntry",
                    "addressMapControlDataSource"
                  ]
                },
                "description": "Retrieve addressMapControlDataSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapControlDroppedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMapControlTable/addressMapControlEntry/addressMapControlDroppedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMapControlTable",
                    "addressMapControlEntry",
                    "addressMapControlDroppedFrames"
                  ]
                },
                "description": "Retrieve addressMapControlDroppedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapControlOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMapControlTable/addressMapControlEntry/addressMapControlOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMapControlTable",
                    "addressMapControlEntry",
                    "addressMapControlOwner"
                  ]
                },
                "description": "Retrieve addressMapControlOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapControlStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMapControlTable/addressMapControlEntry/addressMapControlStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMapControlTable",
                    "addressMapControlEntry",
                    "addressMapControlStatus"
                  ]
                },
                "description": "Retrieve addressMapControlStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMapTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMapTable"
                  ]
                },
                "description": "Retrieve addressMapTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMapTable/addressMapEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMapTable",
                    "addressMapEntry"
                  ]
                },
                "description": "Retrieve addressMapEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirLocalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMapTable/addressMapEntry/protocolDirLocalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMapTable",
                    "addressMapEntry",
                    "protocolDirLocalIndex"
                  ]
                },
                "description": "Retrieve protocolDirLocalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapTimeMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMapTable/addressMapEntry/addressMapTimeMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMapTable",
                    "addressMapEntry",
                    "addressMapTimeMark"
                  ]
                },
                "description": "Retrieve addressMapTimeMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapNetworkAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMapTable/addressMapEntry/addressMapNetworkAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMapTable",
                    "addressMapEntry",
                    "addressMapNetworkAddress"
                  ]
                },
                "description": "Retrieve addressMapNetworkAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMapTable/addressMapEntry/addressMapSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMapTable",
                    "addressMapEntry",
                    "addressMapSource"
                  ]
                },
                "description": "Retrieve addressMapSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapPhysicalAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMapTable/addressMapEntry/addressMapPhysicalAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMapTable",
                    "addressMapEntry",
                    "addressMapPhysicalAddress"
                  ]
                },
                "description": "Retrieve addressMapPhysicalAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addressMapLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/addressMapTable/addressMapEntry/addressMapLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "addressMapTable",
                    "addressMapEntry",
                    "addressMapLastChange"
                  ]
                },
                "description": "Retrieve addressMapLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlHostControlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlHostControlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlHostControlTable"
                  ]
                },
                "description": "Retrieve hlHostControlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlHostControlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlHostControlTable/hlHostControlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlHostControlTable",
                    "hlHostControlEntry"
                  ]
                },
                "description": "Retrieve hlHostControlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlHostControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlHostControlTable/hlHostControlEntry/hlHostControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlHostControlTable",
                    "hlHostControlEntry",
                    "hlHostControlIndex"
                  ]
                },
                "description": "Retrieve hlHostControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlHostControlDataSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlHostControlTable/hlHostControlEntry/hlHostControlDataSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlHostControlTable",
                    "hlHostControlEntry",
                    "hlHostControlDataSource"
                  ]
                },
                "description": "Retrieve hlHostControlDataSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlHostControlNlDroppedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlHostControlTable/hlHostControlEntry/hlHostControlNlDroppedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlHostControlTable",
                    "hlHostControlEntry",
                    "hlHostControlNlDroppedFrames"
                  ]
                },
                "description": "Retrieve hlHostControlNlDroppedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlHostControlNlInserts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlHostControlTable/hlHostControlEntry/hlHostControlNlInserts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlHostControlTable",
                    "hlHostControlEntry",
                    "hlHostControlNlInserts"
                  ]
                },
                "description": "Retrieve hlHostControlNlInserts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlHostControlNlDeletes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlHostControlTable/hlHostControlEntry/hlHostControlNlDeletes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlHostControlTable",
                    "hlHostControlEntry",
                    "hlHostControlNlDeletes"
                  ]
                },
                "description": "Retrieve hlHostControlNlDeletes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlHostControlNlMaxDesiredEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlHostControlTable/hlHostControlEntry/hlHostControlNlMaxDesiredEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlHostControlTable",
                    "hlHostControlEntry",
                    "hlHostControlNlMaxDesiredEntries"
                  ]
                },
                "description": "Retrieve hlHostControlNlMaxDesiredEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlHostControlAlDroppedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlHostControlTable/hlHostControlEntry/hlHostControlAlDroppedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlHostControlTable",
                    "hlHostControlEntry",
                    "hlHostControlAlDroppedFrames"
                  ]
                },
                "description": "Retrieve hlHostControlAlDroppedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlHostControlAlInserts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlHostControlTable/hlHostControlEntry/hlHostControlAlInserts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlHostControlTable",
                    "hlHostControlEntry",
                    "hlHostControlAlInserts"
                  ]
                },
                "description": "Retrieve hlHostControlAlInserts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlHostControlAlDeletes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlHostControlTable/hlHostControlEntry/hlHostControlAlDeletes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlHostControlTable",
                    "hlHostControlEntry",
                    "hlHostControlAlDeletes"
                  ]
                },
                "description": "Retrieve hlHostControlAlDeletes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlHostControlAlMaxDesiredEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlHostControlTable/hlHostControlEntry/hlHostControlAlMaxDesiredEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlHostControlTable",
                    "hlHostControlEntry",
                    "hlHostControlAlMaxDesiredEntries"
                  ]
                },
                "description": "Retrieve hlHostControlAlMaxDesiredEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlHostControlOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlHostControlTable/hlHostControlEntry/hlHostControlOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlHostControlTable",
                    "hlHostControlEntry",
                    "hlHostControlOwner"
                  ]
                },
                "description": "Retrieve hlHostControlOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlHostControlStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlHostControlTable/hlHostControlEntry/hlHostControlStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlHostControlTable",
                    "hlHostControlEntry",
                    "hlHostControlStatus"
                  ]
                },
                "description": "Retrieve hlHostControlStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlHostTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlHostTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlHostTable"
                  ]
                },
                "description": "Retrieve nlHostTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlHostEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlHostTable/nlHostEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlHostTable",
                    "nlHostEntry"
                  ]
                },
                "description": "Retrieve nlHostEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlHostControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlHostTable/nlHostEntry/hlHostControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlHostTable",
                    "nlHostEntry",
                    "hlHostControlIndex"
                  ]
                },
                "description": "Retrieve hlHostControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirLocalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlHostTable/nlHostEntry/protocolDirLocalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlHostTable",
                    "nlHostEntry",
                    "protocolDirLocalIndex"
                  ]
                },
                "description": "Retrieve protocolDirLocalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlHostTimeMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlHostTable/nlHostEntry/nlHostTimeMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlHostTable",
                    "nlHostEntry",
                    "nlHostTimeMark"
                  ]
                },
                "description": "Retrieve nlHostTimeMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlHostAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlHostTable/nlHostEntry/nlHostAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlHostTable",
                    "nlHostEntry",
                    "nlHostAddress"
                  ]
                },
                "description": "Retrieve nlHostAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlHostInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlHostTable/nlHostEntry/nlHostInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlHostTable",
                    "nlHostEntry",
                    "nlHostInPkts"
                  ]
                },
                "description": "Retrieve nlHostInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlHostOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlHostTable/nlHostEntry/nlHostOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlHostTable",
                    "nlHostEntry",
                    "nlHostOutPkts"
                  ]
                },
                "description": "Retrieve nlHostOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlHostInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlHostTable/nlHostEntry/nlHostInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlHostTable",
                    "nlHostEntry",
                    "nlHostInOctets"
                  ]
                },
                "description": "Retrieve nlHostInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlHostOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlHostTable/nlHostEntry/nlHostOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlHostTable",
                    "nlHostEntry",
                    "nlHostOutOctets"
                  ]
                },
                "description": "Retrieve nlHostOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlHostOutMacNonUnicastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlHostTable/nlHostEntry/nlHostOutMacNonUnicastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlHostTable",
                    "nlHostEntry",
                    "nlHostOutMacNonUnicastPkts"
                  ]
                },
                "description": "Retrieve nlHostOutMacNonUnicastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlHostCreateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlHostTable/nlHostEntry/nlHostCreateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlHostTable",
                    "nlHostEntry",
                    "nlHostCreateTime"
                  ]
                },
                "description": "Retrieve nlHostCreateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlMatrixControlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlMatrixControlTable"
                  ]
                },
                "description": "Retrieve hlMatrixControlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlMatrixControlTable/hlMatrixControlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlMatrixControlTable",
                    "hlMatrixControlEntry"
                  ]
                },
                "description": "Retrieve hlMatrixControlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlMatrixControlTable/hlMatrixControlEntry/hlMatrixControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlMatrixControlTable",
                    "hlMatrixControlEntry",
                    "hlMatrixControlIndex"
                  ]
                },
                "description": "Retrieve hlMatrixControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlDataSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlMatrixControlTable/hlMatrixControlEntry/hlMatrixControlDataSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlMatrixControlTable",
                    "hlMatrixControlEntry",
                    "hlMatrixControlDataSource"
                  ]
                },
                "description": "Retrieve hlMatrixControlDataSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlNlDroppedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlMatrixControlTable/hlMatrixControlEntry/hlMatrixControlNlDroppedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlMatrixControlTable",
                    "hlMatrixControlEntry",
                    "hlMatrixControlNlDroppedFrames"
                  ]
                },
                "description": "Retrieve hlMatrixControlNlDroppedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlNlInserts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlMatrixControlTable/hlMatrixControlEntry/hlMatrixControlNlInserts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlMatrixControlTable",
                    "hlMatrixControlEntry",
                    "hlMatrixControlNlInserts"
                  ]
                },
                "description": "Retrieve hlMatrixControlNlInserts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlNlDeletes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlMatrixControlTable/hlMatrixControlEntry/hlMatrixControlNlDeletes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlMatrixControlTable",
                    "hlMatrixControlEntry",
                    "hlMatrixControlNlDeletes"
                  ]
                },
                "description": "Retrieve hlMatrixControlNlDeletes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlNlMaxDesiredEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlMatrixControlTable/hlMatrixControlEntry/hlMatrixControlNlMaxDesiredEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlMatrixControlTable",
                    "hlMatrixControlEntry",
                    "hlMatrixControlNlMaxDesiredEntries"
                  ]
                },
                "description": "Retrieve hlMatrixControlNlMaxDesiredEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlAlDroppedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlMatrixControlTable/hlMatrixControlEntry/hlMatrixControlAlDroppedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlMatrixControlTable",
                    "hlMatrixControlEntry",
                    "hlMatrixControlAlDroppedFrames"
                  ]
                },
                "description": "Retrieve hlMatrixControlAlDroppedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlAlInserts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlMatrixControlTable/hlMatrixControlEntry/hlMatrixControlAlInserts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlMatrixControlTable",
                    "hlMatrixControlEntry",
                    "hlMatrixControlAlInserts"
                  ]
                },
                "description": "Retrieve hlMatrixControlAlInserts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlAlDeletes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlMatrixControlTable/hlMatrixControlEntry/hlMatrixControlAlDeletes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlMatrixControlTable",
                    "hlMatrixControlEntry",
                    "hlMatrixControlAlDeletes"
                  ]
                },
                "description": "Retrieve hlMatrixControlAlDeletes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlAlMaxDesiredEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlMatrixControlTable/hlMatrixControlEntry/hlMatrixControlAlMaxDesiredEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlMatrixControlTable",
                    "hlMatrixControlEntry",
                    "hlMatrixControlAlMaxDesiredEntries"
                  ]
                },
                "description": "Retrieve hlMatrixControlAlMaxDesiredEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlMatrixControlTable/hlMatrixControlEntry/hlMatrixControlOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlMatrixControlTable",
                    "hlMatrixControlEntry",
                    "hlMatrixControlOwner"
                  ]
                },
                "description": "Retrieve hlMatrixControlOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hlMatrixControlTable/hlMatrixControlEntry/hlMatrixControlStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hlMatrixControlTable",
                    "hlMatrixControlEntry",
                    "hlMatrixControlStatus"
                  ]
                },
                "description": "Retrieve hlMatrixControlStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixSDTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixSDTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixSDTable"
                  ]
                },
                "description": "Retrieve nlMatrixSDTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixSDEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixSDTable/nlMatrixSDEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixSDTable",
                    "nlMatrixSDEntry"
                  ]
                },
                "description": "Retrieve nlMatrixSDEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixSDTable/nlMatrixSDEntry/hlMatrixControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixSDTable",
                    "nlMatrixSDEntry",
                    "hlMatrixControlIndex"
                  ]
                },
                "description": "Retrieve hlMatrixControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirLocalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixSDTable/nlMatrixSDEntry/protocolDirLocalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixSDTable",
                    "nlMatrixSDEntry",
                    "protocolDirLocalIndex"
                  ]
                },
                "description": "Retrieve protocolDirLocalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixSDTimeMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixSDTable/nlMatrixSDEntry/nlMatrixSDTimeMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixSDTable",
                    "nlMatrixSDEntry",
                    "nlMatrixSDTimeMark"
                  ]
                },
                "description": "Retrieve nlMatrixSDTimeMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixSDSourceAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixSDTable/nlMatrixSDEntry/nlMatrixSDSourceAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixSDTable",
                    "nlMatrixSDEntry",
                    "nlMatrixSDSourceAddress"
                  ]
                },
                "description": "Retrieve nlMatrixSDSourceAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixSDDestAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixSDTable/nlMatrixSDEntry/nlMatrixSDDestAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixSDTable",
                    "nlMatrixSDEntry",
                    "nlMatrixSDDestAddress"
                  ]
                },
                "description": "Retrieve nlMatrixSDDestAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixSDPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixSDTable/nlMatrixSDEntry/nlMatrixSDPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixSDTable",
                    "nlMatrixSDEntry",
                    "nlMatrixSDPkts"
                  ]
                },
                "description": "Retrieve nlMatrixSDPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixSDOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixSDTable/nlMatrixSDEntry/nlMatrixSDOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixSDTable",
                    "nlMatrixSDEntry",
                    "nlMatrixSDOctets"
                  ]
                },
                "description": "Retrieve nlMatrixSDOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixSDCreateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixSDTable/nlMatrixSDEntry/nlMatrixSDCreateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixSDTable",
                    "nlMatrixSDEntry",
                    "nlMatrixSDCreateTime"
                  ]
                },
                "description": "Retrieve nlMatrixSDCreateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixDSTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixDSTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixDSTable"
                  ]
                },
                "description": "Retrieve nlMatrixDSTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixDSEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixDSTable/nlMatrixDSEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixDSTable",
                    "nlMatrixDSEntry"
                  ]
                },
                "description": "Retrieve nlMatrixDSEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixDSTable/nlMatrixDSEntry/hlMatrixControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixDSTable",
                    "nlMatrixDSEntry",
                    "hlMatrixControlIndex"
                  ]
                },
                "description": "Retrieve hlMatrixControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirLocalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixDSTable/nlMatrixDSEntry/protocolDirLocalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixDSTable",
                    "nlMatrixDSEntry",
                    "protocolDirLocalIndex"
                  ]
                },
                "description": "Retrieve protocolDirLocalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixDSTimeMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixDSTable/nlMatrixDSEntry/nlMatrixDSTimeMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixDSTable",
                    "nlMatrixDSEntry",
                    "nlMatrixDSTimeMark"
                  ]
                },
                "description": "Retrieve nlMatrixDSTimeMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixDSSourceAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixDSTable/nlMatrixDSEntry/nlMatrixDSSourceAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixDSTable",
                    "nlMatrixDSEntry",
                    "nlMatrixDSSourceAddress"
                  ]
                },
                "description": "Retrieve nlMatrixDSSourceAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixDSDestAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixDSTable/nlMatrixDSEntry/nlMatrixDSDestAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixDSTable",
                    "nlMatrixDSEntry",
                    "nlMatrixDSDestAddress"
                  ]
                },
                "description": "Retrieve nlMatrixDSDestAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixDSPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixDSTable/nlMatrixDSEntry/nlMatrixDSPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixDSTable",
                    "nlMatrixDSEntry",
                    "nlMatrixDSPkts"
                  ]
                },
                "description": "Retrieve nlMatrixDSPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixDSOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixDSTable/nlMatrixDSEntry/nlMatrixDSOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixDSTable",
                    "nlMatrixDSEntry",
                    "nlMatrixDSOctets"
                  ]
                },
                "description": "Retrieve nlMatrixDSOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixDSCreateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixDSTable/nlMatrixDSEntry/nlMatrixDSCreateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixDSTable",
                    "nlMatrixDSEntry",
                    "nlMatrixDSCreateTime"
                  ]
                },
                "description": "Retrieve nlMatrixDSCreateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNControlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNControlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNControlTable"
                  ]
                },
                "description": "Retrieve nlMatrixTopNControlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNControlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNControlTable/nlMatrixTopNControlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNControlTable",
                    "nlMatrixTopNControlEntry"
                  ]
                },
                "description": "Retrieve nlMatrixTopNControlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNControlTable/nlMatrixTopNControlEntry/nlMatrixTopNControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNControlTable",
                    "nlMatrixTopNControlEntry",
                    "nlMatrixTopNControlIndex"
                  ]
                },
                "description": "Retrieve nlMatrixTopNControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNControlMatrixIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNControlTable/nlMatrixTopNControlEntry/nlMatrixTopNControlMatrixIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNControlTable",
                    "nlMatrixTopNControlEntry",
                    "nlMatrixTopNControlMatrixIndex"
                  ]
                },
                "description": "Retrieve nlMatrixTopNControlMatrixIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNControlRateBase",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNControlTable/nlMatrixTopNControlEntry/nlMatrixTopNControlRateBase",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNControlTable",
                    "nlMatrixTopNControlEntry",
                    "nlMatrixTopNControlRateBase"
                  ]
                },
                "description": "Retrieve nlMatrixTopNControlRateBase from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNControlTimeRemaining",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNControlTable/nlMatrixTopNControlEntry/nlMatrixTopNControlTimeRemaining",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNControlTable",
                    "nlMatrixTopNControlEntry",
                    "nlMatrixTopNControlTimeRemaining"
                  ]
                },
                "description": "Retrieve nlMatrixTopNControlTimeRemaining from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNControlGeneratedReports",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNControlTable/nlMatrixTopNControlEntry/nlMatrixTopNControlGeneratedReports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNControlTable",
                    "nlMatrixTopNControlEntry",
                    "nlMatrixTopNControlGeneratedReports"
                  ]
                },
                "description": "Retrieve nlMatrixTopNControlGeneratedReports from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNControlDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNControlTable/nlMatrixTopNControlEntry/nlMatrixTopNControlDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNControlTable",
                    "nlMatrixTopNControlEntry",
                    "nlMatrixTopNControlDuration"
                  ]
                },
                "description": "Retrieve nlMatrixTopNControlDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNControlRequestedSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNControlTable/nlMatrixTopNControlEntry/nlMatrixTopNControlRequestedSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNControlTable",
                    "nlMatrixTopNControlEntry",
                    "nlMatrixTopNControlRequestedSize"
                  ]
                },
                "description": "Retrieve nlMatrixTopNControlRequestedSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNControlGrantedSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNControlTable/nlMatrixTopNControlEntry/nlMatrixTopNControlGrantedSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNControlTable",
                    "nlMatrixTopNControlEntry",
                    "nlMatrixTopNControlGrantedSize"
                  ]
                },
                "description": "Retrieve nlMatrixTopNControlGrantedSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNControlStartTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNControlTable/nlMatrixTopNControlEntry/nlMatrixTopNControlStartTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNControlTable",
                    "nlMatrixTopNControlEntry",
                    "nlMatrixTopNControlStartTime"
                  ]
                },
                "description": "Retrieve nlMatrixTopNControlStartTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNControlOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNControlTable/nlMatrixTopNControlEntry/nlMatrixTopNControlOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNControlTable",
                    "nlMatrixTopNControlEntry",
                    "nlMatrixTopNControlOwner"
                  ]
                },
                "description": "Retrieve nlMatrixTopNControlOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNControlStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNControlTable/nlMatrixTopNControlEntry/nlMatrixTopNControlStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNControlTable",
                    "nlMatrixTopNControlEntry",
                    "nlMatrixTopNControlStatus"
                  ]
                },
                "description": "Retrieve nlMatrixTopNControlStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNTable"
                  ]
                },
                "description": "Retrieve nlMatrixTopNTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNTable/nlMatrixTopNEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNTable",
                    "nlMatrixTopNEntry"
                  ]
                },
                "description": "Retrieve nlMatrixTopNEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNTable/nlMatrixTopNEntry/nlMatrixTopNControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNTable",
                    "nlMatrixTopNEntry",
                    "nlMatrixTopNControlIndex"
                  ]
                },
                "description": "Retrieve nlMatrixTopNControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNTable/nlMatrixTopNEntry/nlMatrixTopNIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNTable",
                    "nlMatrixTopNEntry",
                    "nlMatrixTopNIndex"
                  ]
                },
                "description": "Retrieve nlMatrixTopNIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNProtocolDirLocalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNTable/nlMatrixTopNEntry/nlMatrixTopNProtocolDirLocalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNTable",
                    "nlMatrixTopNEntry",
                    "nlMatrixTopNProtocolDirLocalIndex"
                  ]
                },
                "description": "Retrieve nlMatrixTopNProtocolDirLocalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNSourceAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNTable/nlMatrixTopNEntry/nlMatrixTopNSourceAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNTable",
                    "nlMatrixTopNEntry",
                    "nlMatrixTopNSourceAddress"
                  ]
                },
                "description": "Retrieve nlMatrixTopNSourceAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNDestAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNTable/nlMatrixTopNEntry/nlMatrixTopNDestAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNTable",
                    "nlMatrixTopNEntry",
                    "nlMatrixTopNDestAddress"
                  ]
                },
                "description": "Retrieve nlMatrixTopNDestAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNPktRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNTable/nlMatrixTopNEntry/nlMatrixTopNPktRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNTable",
                    "nlMatrixTopNEntry",
                    "nlMatrixTopNPktRate"
                  ]
                },
                "description": "Retrieve nlMatrixTopNPktRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNReversePktRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNTable/nlMatrixTopNEntry/nlMatrixTopNReversePktRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNTable",
                    "nlMatrixTopNEntry",
                    "nlMatrixTopNReversePktRate"
                  ]
                },
                "description": "Retrieve nlMatrixTopNReversePktRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNOctetRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNTable/nlMatrixTopNEntry/nlMatrixTopNOctetRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNTable",
                    "nlMatrixTopNEntry",
                    "nlMatrixTopNOctetRate"
                  ]
                },
                "description": "Retrieve nlMatrixTopNOctetRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixTopNReverseOctetRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/nlMatrixTopNTable/nlMatrixTopNEntry/nlMatrixTopNReverseOctetRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "nlMatrixTopNTable",
                    "nlMatrixTopNEntry",
                    "nlMatrixTopNReverseOctetRate"
                  ]
                },
                "description": "Retrieve nlMatrixTopNReverseOctetRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alHostTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alHostTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alHostTable"
                  ]
                },
                "description": "Retrieve alHostTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alHostEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alHostTable/alHostEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alHostTable",
                    "alHostEntry"
                  ]
                },
                "description": "Retrieve alHostEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlHostControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alHostTable/alHostEntry/hlHostControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alHostTable",
                    "alHostEntry",
                    "hlHostControlIndex"
                  ]
                },
                "description": "Retrieve hlHostControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirLocalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alHostTable/alHostEntry/protocolDirLocalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alHostTable",
                    "alHostEntry",
                    "protocolDirLocalIndex"
                  ]
                },
                "description": "Retrieve protocolDirLocalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlHostAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alHostTable/alHostEntry/nlHostAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alHostTable",
                    "alHostEntry",
                    "nlHostAddress"
                  ]
                },
                "description": "Retrieve nlHostAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirLocalIndex_2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alHostTable/alHostEntry/protocolDirLocalIndex_2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alHostTable",
                    "alHostEntry",
                    "protocolDirLocalIndex_2"
                  ]
                },
                "description": "Retrieve protocolDirLocalIndex_2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alHostTimeMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alHostTable/alHostEntry/alHostTimeMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alHostTable",
                    "alHostEntry",
                    "alHostTimeMark"
                  ]
                },
                "description": "Retrieve alHostTimeMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alHostInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alHostTable/alHostEntry/alHostInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alHostTable",
                    "alHostEntry",
                    "alHostInPkts"
                  ]
                },
                "description": "Retrieve alHostInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alHostOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alHostTable/alHostEntry/alHostOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alHostTable",
                    "alHostEntry",
                    "alHostOutPkts"
                  ]
                },
                "description": "Retrieve alHostOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alHostInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alHostTable/alHostEntry/alHostInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alHostTable",
                    "alHostEntry",
                    "alHostInOctets"
                  ]
                },
                "description": "Retrieve alHostInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alHostOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alHostTable/alHostEntry/alHostOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alHostTable",
                    "alHostEntry",
                    "alHostOutOctets"
                  ]
                },
                "description": "Retrieve alHostOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alHostCreateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alHostTable/alHostEntry/alHostCreateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alHostTable",
                    "alHostEntry",
                    "alHostCreateTime"
                  ]
                },
                "description": "Retrieve alHostCreateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixSDTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixSDTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixSDTable"
                  ]
                },
                "description": "Retrieve alMatrixSDTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixSDEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixSDTable/alMatrixSDEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixSDTable",
                    "alMatrixSDEntry"
                  ]
                },
                "description": "Retrieve alMatrixSDEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixSDTable/alMatrixSDEntry/hlMatrixControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixSDTable",
                    "alMatrixSDEntry",
                    "hlMatrixControlIndex"
                  ]
                },
                "description": "Retrieve hlMatrixControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirLocalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixSDTable/alMatrixSDEntry/protocolDirLocalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixSDTable",
                    "alMatrixSDEntry",
                    "protocolDirLocalIndex"
                  ]
                },
                "description": "Retrieve protocolDirLocalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixSDSourceAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixSDTable/alMatrixSDEntry/nlMatrixSDSourceAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixSDTable",
                    "alMatrixSDEntry",
                    "nlMatrixSDSourceAddress"
                  ]
                },
                "description": "Retrieve nlMatrixSDSourceAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixSDDestAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixSDTable/alMatrixSDEntry/nlMatrixSDDestAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixSDTable",
                    "alMatrixSDEntry",
                    "nlMatrixSDDestAddress"
                  ]
                },
                "description": "Retrieve nlMatrixSDDestAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirLocalIndex_2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixSDTable/alMatrixSDEntry/protocolDirLocalIndex_2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixSDTable",
                    "alMatrixSDEntry",
                    "protocolDirLocalIndex_2"
                  ]
                },
                "description": "Retrieve protocolDirLocalIndex_2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixSDTimeMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixSDTable/alMatrixSDEntry/alMatrixSDTimeMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixSDTable",
                    "alMatrixSDEntry",
                    "alMatrixSDTimeMark"
                  ]
                },
                "description": "Retrieve alMatrixSDTimeMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixSDPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixSDTable/alMatrixSDEntry/alMatrixSDPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixSDTable",
                    "alMatrixSDEntry",
                    "alMatrixSDPkts"
                  ]
                },
                "description": "Retrieve alMatrixSDPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixSDOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixSDTable/alMatrixSDEntry/alMatrixSDOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixSDTable",
                    "alMatrixSDEntry",
                    "alMatrixSDOctets"
                  ]
                },
                "description": "Retrieve alMatrixSDOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixSDCreateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixSDTable/alMatrixSDEntry/alMatrixSDCreateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixSDTable",
                    "alMatrixSDEntry",
                    "alMatrixSDCreateTime"
                  ]
                },
                "description": "Retrieve alMatrixSDCreateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixDSTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixDSTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixDSTable"
                  ]
                },
                "description": "Retrieve alMatrixDSTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixDSEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixDSTable/alMatrixDSEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixDSTable",
                    "alMatrixDSEntry"
                  ]
                },
                "description": "Retrieve alMatrixDSEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hlMatrixControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixDSTable/alMatrixDSEntry/hlMatrixControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixDSTable",
                    "alMatrixDSEntry",
                    "hlMatrixControlIndex"
                  ]
                },
                "description": "Retrieve hlMatrixControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirLocalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixDSTable/alMatrixDSEntry/protocolDirLocalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixDSTable",
                    "alMatrixDSEntry",
                    "protocolDirLocalIndex"
                  ]
                },
                "description": "Retrieve protocolDirLocalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixDSDestAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixDSTable/alMatrixDSEntry/nlMatrixDSDestAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixDSTable",
                    "alMatrixDSEntry",
                    "nlMatrixDSDestAddress"
                  ]
                },
                "description": "Retrieve nlMatrixDSDestAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nlMatrixDSSourceAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixDSTable/alMatrixDSEntry/nlMatrixDSSourceAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixDSTable",
                    "alMatrixDSEntry",
                    "nlMatrixDSSourceAddress"
                  ]
                },
                "description": "Retrieve nlMatrixDSSourceAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocolDirLocalIndex_2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixDSTable/alMatrixDSEntry/protocolDirLocalIndex_2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixDSTable",
                    "alMatrixDSEntry",
                    "protocolDirLocalIndex_2"
                  ]
                },
                "description": "Retrieve protocolDirLocalIndex_2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixDSTimeMark",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixDSTable/alMatrixDSEntry/alMatrixDSTimeMark",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixDSTable",
                    "alMatrixDSEntry",
                    "alMatrixDSTimeMark"
                  ]
                },
                "description": "Retrieve alMatrixDSTimeMark from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixDSPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixDSTable/alMatrixDSEntry/alMatrixDSPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixDSTable",
                    "alMatrixDSEntry",
                    "alMatrixDSPkts"
                  ]
                },
                "description": "Retrieve alMatrixDSPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixDSOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixDSTable/alMatrixDSEntry/alMatrixDSOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixDSTable",
                    "alMatrixDSEntry",
                    "alMatrixDSOctets"
                  ]
                },
                "description": "Retrieve alMatrixDSOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixDSCreateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixDSTable/alMatrixDSEntry/alMatrixDSCreateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixDSTable",
                    "alMatrixDSEntry",
                    "alMatrixDSCreateTime"
                  ]
                },
                "description": "Retrieve alMatrixDSCreateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNControlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNControlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNControlTable"
                  ]
                },
                "description": "Retrieve alMatrixTopNControlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNControlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNControlTable/alMatrixTopNControlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNControlTable",
                    "alMatrixTopNControlEntry"
                  ]
                },
                "description": "Retrieve alMatrixTopNControlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNControlTable/alMatrixTopNControlEntry/alMatrixTopNControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNControlTable",
                    "alMatrixTopNControlEntry",
                    "alMatrixTopNControlIndex"
                  ]
                },
                "description": "Retrieve alMatrixTopNControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNControlMatrixIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNControlTable/alMatrixTopNControlEntry/alMatrixTopNControlMatrixIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNControlTable",
                    "alMatrixTopNControlEntry",
                    "alMatrixTopNControlMatrixIndex"
                  ]
                },
                "description": "Retrieve alMatrixTopNControlMatrixIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNControlRateBase",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNControlTable/alMatrixTopNControlEntry/alMatrixTopNControlRateBase",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNControlTable",
                    "alMatrixTopNControlEntry",
                    "alMatrixTopNControlRateBase"
                  ]
                },
                "description": "Retrieve alMatrixTopNControlRateBase from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNControlTimeRemaining",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNControlTable/alMatrixTopNControlEntry/alMatrixTopNControlTimeRemaining",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNControlTable",
                    "alMatrixTopNControlEntry",
                    "alMatrixTopNControlTimeRemaining"
                  ]
                },
                "description": "Retrieve alMatrixTopNControlTimeRemaining from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNControlGeneratedReports",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNControlTable/alMatrixTopNControlEntry/alMatrixTopNControlGeneratedReports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNControlTable",
                    "alMatrixTopNControlEntry",
                    "alMatrixTopNControlGeneratedReports"
                  ]
                },
                "description": "Retrieve alMatrixTopNControlGeneratedReports from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNControlDuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNControlTable/alMatrixTopNControlEntry/alMatrixTopNControlDuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNControlTable",
                    "alMatrixTopNControlEntry",
                    "alMatrixTopNControlDuration"
                  ]
                },
                "description": "Retrieve alMatrixTopNControlDuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNControlRequestedSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNControlTable/alMatrixTopNControlEntry/alMatrixTopNControlRequestedSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNControlTable",
                    "alMatrixTopNControlEntry",
                    "alMatrixTopNControlRequestedSize"
                  ]
                },
                "description": "Retrieve alMatrixTopNControlRequestedSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNControlGrantedSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNControlTable/alMatrixTopNControlEntry/alMatrixTopNControlGrantedSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNControlTable",
                    "alMatrixTopNControlEntry",
                    "alMatrixTopNControlGrantedSize"
                  ]
                },
                "description": "Retrieve alMatrixTopNControlGrantedSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNControlStartTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNControlTable/alMatrixTopNControlEntry/alMatrixTopNControlStartTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNControlTable",
                    "alMatrixTopNControlEntry",
                    "alMatrixTopNControlStartTime"
                  ]
                },
                "description": "Retrieve alMatrixTopNControlStartTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNControlOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNControlTable/alMatrixTopNControlEntry/alMatrixTopNControlOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNControlTable",
                    "alMatrixTopNControlEntry",
                    "alMatrixTopNControlOwner"
                  ]
                },
                "description": "Retrieve alMatrixTopNControlOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNControlStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNControlTable/alMatrixTopNControlEntry/alMatrixTopNControlStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNControlTable",
                    "alMatrixTopNControlEntry",
                    "alMatrixTopNControlStatus"
                  ]
                },
                "description": "Retrieve alMatrixTopNControlStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNTable"
                  ]
                },
                "description": "Retrieve alMatrixTopNTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNTable/alMatrixTopNEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNTable",
                    "alMatrixTopNEntry"
                  ]
                },
                "description": "Retrieve alMatrixTopNEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNTable/alMatrixTopNEntry/alMatrixTopNControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNTable",
                    "alMatrixTopNEntry",
                    "alMatrixTopNControlIndex"
                  ]
                },
                "description": "Retrieve alMatrixTopNControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNTable/alMatrixTopNEntry/alMatrixTopNIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNTable",
                    "alMatrixTopNEntry",
                    "alMatrixTopNIndex"
                  ]
                },
                "description": "Retrieve alMatrixTopNIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNProtocolDirLocalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNTable/alMatrixTopNEntry/alMatrixTopNProtocolDirLocalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNTable",
                    "alMatrixTopNEntry",
                    "alMatrixTopNProtocolDirLocalIndex"
                  ]
                },
                "description": "Retrieve alMatrixTopNProtocolDirLocalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNSourceAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNTable/alMatrixTopNEntry/alMatrixTopNSourceAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNTable",
                    "alMatrixTopNEntry",
                    "alMatrixTopNSourceAddress"
                  ]
                },
                "description": "Retrieve alMatrixTopNSourceAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNDestAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNTable/alMatrixTopNEntry/alMatrixTopNDestAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNTable",
                    "alMatrixTopNEntry",
                    "alMatrixTopNDestAddress"
                  ]
                },
                "description": "Retrieve alMatrixTopNDestAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNAppProtocolDirLocalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNTable/alMatrixTopNEntry/alMatrixTopNAppProtocolDirLocalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNTable",
                    "alMatrixTopNEntry",
                    "alMatrixTopNAppProtocolDirLocalIndex"
                  ]
                },
                "description": "Retrieve alMatrixTopNAppProtocolDirLocalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNPktRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNTable/alMatrixTopNEntry/alMatrixTopNPktRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNTable",
                    "alMatrixTopNEntry",
                    "alMatrixTopNPktRate"
                  ]
                },
                "description": "Retrieve alMatrixTopNPktRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNReversePktRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNTable/alMatrixTopNEntry/alMatrixTopNReversePktRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNTable",
                    "alMatrixTopNEntry",
                    "alMatrixTopNReversePktRate"
                  ]
                },
                "description": "Retrieve alMatrixTopNReversePktRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNOctetRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNTable/alMatrixTopNEntry/alMatrixTopNOctetRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNTable",
                    "alMatrixTopNEntry",
                    "alMatrixTopNOctetRate"
                  ]
                },
                "description": "Retrieve alMatrixTopNOctetRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get alMatrixTopNReverseOctetRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/alMatrixTopNTable/alMatrixTopNEntry/alMatrixTopNReverseOctetRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "alMatrixTopNTable",
                    "alMatrixTopNEntry",
                    "alMatrixTopNReverseOctetRate"
                  ]
                },
                "description": "Retrieve alMatrixTopNReverseOctetRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryControlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryControlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryControlTable"
                  ]
                },
                "description": "Retrieve usrHistoryControlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryControlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryControlTable/usrHistoryControlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryControlTable",
                    "usrHistoryControlEntry"
                  ]
                },
                "description": "Retrieve usrHistoryControlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryControlTable/usrHistoryControlEntry/usrHistoryControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryControlTable",
                    "usrHistoryControlEntry",
                    "usrHistoryControlIndex"
                  ]
                },
                "description": "Retrieve usrHistoryControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryControlObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryControlTable/usrHistoryControlEntry/usrHistoryControlObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryControlTable",
                    "usrHistoryControlEntry",
                    "usrHistoryControlObjects"
                  ]
                },
                "description": "Retrieve usrHistoryControlObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryControlBucketsRequested",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryControlTable/usrHistoryControlEntry/usrHistoryControlBucketsRequested",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryControlTable",
                    "usrHistoryControlEntry",
                    "usrHistoryControlBucketsRequested"
                  ]
                },
                "description": "Retrieve usrHistoryControlBucketsRequested from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryControlBucketsGranted",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryControlTable/usrHistoryControlEntry/usrHistoryControlBucketsGranted",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryControlTable",
                    "usrHistoryControlEntry",
                    "usrHistoryControlBucketsGranted"
                  ]
                },
                "description": "Retrieve usrHistoryControlBucketsGranted from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryControlInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryControlTable/usrHistoryControlEntry/usrHistoryControlInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryControlTable",
                    "usrHistoryControlEntry",
                    "usrHistoryControlInterval"
                  ]
                },
                "description": "Retrieve usrHistoryControlInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryControlOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryControlTable/usrHistoryControlEntry/usrHistoryControlOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryControlTable",
                    "usrHistoryControlEntry",
                    "usrHistoryControlOwner"
                  ]
                },
                "description": "Retrieve usrHistoryControlOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryControlStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryControlTable/usrHistoryControlEntry/usrHistoryControlStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryControlTable",
                    "usrHistoryControlEntry",
                    "usrHistoryControlStatus"
                  ]
                },
                "description": "Retrieve usrHistoryControlStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryObjectTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryObjectTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryObjectTable"
                  ]
                },
                "description": "Retrieve usrHistoryObjectTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryObjectEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryObjectTable/usrHistoryObjectEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryObjectTable",
                    "usrHistoryObjectEntry"
                  ]
                },
                "description": "Retrieve usrHistoryObjectEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryObjectTable/usrHistoryObjectEntry/usrHistoryControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryObjectTable",
                    "usrHistoryObjectEntry",
                    "usrHistoryControlIndex"
                  ]
                },
                "description": "Retrieve usrHistoryControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryObjectIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryObjectTable/usrHistoryObjectEntry/usrHistoryObjectIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryObjectTable",
                    "usrHistoryObjectEntry",
                    "usrHistoryObjectIndex"
                  ]
                },
                "description": "Retrieve usrHistoryObjectIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryObjectVariable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryObjectTable/usrHistoryObjectEntry/usrHistoryObjectVariable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryObjectTable",
                    "usrHistoryObjectEntry",
                    "usrHistoryObjectVariable"
                  ]
                },
                "description": "Retrieve usrHistoryObjectVariable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryObjectSampleType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryObjectTable/usrHistoryObjectEntry/usrHistoryObjectSampleType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryObjectTable",
                    "usrHistoryObjectEntry",
                    "usrHistoryObjectSampleType"
                  ]
                },
                "description": "Retrieve usrHistoryObjectSampleType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryTable"
                  ]
                },
                "description": "Retrieve usrHistoryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryTable/usrHistoryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryTable",
                    "usrHistoryEntry"
                  ]
                },
                "description": "Retrieve usrHistoryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryControlIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryTable/usrHistoryEntry/usrHistoryControlIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryTable",
                    "usrHistoryEntry",
                    "usrHistoryControlIndex"
                  ]
                },
                "description": "Retrieve usrHistoryControlIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryObjectIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryTable/usrHistoryEntry/usrHistoryObjectIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryTable",
                    "usrHistoryEntry",
                    "usrHistoryObjectIndex"
                  ]
                },
                "description": "Retrieve usrHistoryObjectIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistorySampleIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryTable/usrHistoryEntry/usrHistorySampleIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryTable",
                    "usrHistoryEntry",
                    "usrHistorySampleIndex"
                  ]
                },
                "description": "Retrieve usrHistorySampleIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryIntervalStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryTable/usrHistoryEntry/usrHistoryIntervalStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryTable",
                    "usrHistoryEntry",
                    "usrHistoryIntervalStart"
                  ]
                },
                "description": "Retrieve usrHistoryIntervalStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryIntervalEnd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryTable/usrHistoryEntry/usrHistoryIntervalEnd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryTable",
                    "usrHistoryEntry",
                    "usrHistoryIntervalEnd"
                  ]
                },
                "description": "Retrieve usrHistoryIntervalEnd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryAbsValue",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryTable/usrHistoryEntry/usrHistoryAbsValue",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryTable",
                    "usrHistoryEntry",
                    "usrHistoryAbsValue"
                  ]
                },
                "description": "Retrieve usrHistoryAbsValue from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usrHistoryValStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/usrHistoryTable/usrHistoryEntry/usrHistoryValStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "usrHistoryTable",
                    "usrHistoryEntry",
                    "usrHistoryValStatus"
                  ]
                },
                "description": "Retrieve usrHistoryValStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConfigTable"
                  ]
                },
                "description": "Retrieve serialConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConfigTable/serialConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConfigTable",
                    "serialConfigEntry"
                  ]
                },
                "description": "Retrieve serialConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConfigTable/serialConfigEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConfigTable",
                    "serialConfigEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConfigTable/serialConfigEntry/serialMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConfigTable",
                    "serialConfigEntry",
                    "serialMode"
                  ]
                },
                "description": "Retrieve serialMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConfigTable/serialConfigEntry/serialProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConfigTable",
                    "serialConfigEntry",
                    "serialProtocol"
                  ]
                },
                "description": "Retrieve serialProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConfigTable/serialConfigEntry/serialTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConfigTable",
                    "serialConfigEntry",
                    "serialTimeout"
                  ]
                },
                "description": "Retrieve serialTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialModemInitString",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConfigTable/serialConfigEntry/serialModemInitString",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConfigTable",
                    "serialConfigEntry",
                    "serialModemInitString"
                  ]
                },
                "description": "Retrieve serialModemInitString from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialModemHangUpString",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConfigTable/serialConfigEntry/serialModemHangUpString",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConfigTable",
                    "serialConfigEntry",
                    "serialModemHangUpString"
                  ]
                },
                "description": "Retrieve serialModemHangUpString from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialModemConnectResp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConfigTable/serialConfigEntry/serialModemConnectResp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConfigTable",
                    "serialConfigEntry",
                    "serialModemConnectResp"
                  ]
                },
                "description": "Retrieve serialModemConnectResp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialModemNoConnectResp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConfigTable/serialConfigEntry/serialModemNoConnectResp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConfigTable",
                    "serialConfigEntry",
                    "serialModemNoConnectResp"
                  ]
                },
                "description": "Retrieve serialModemNoConnectResp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialDialoutTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConfigTable/serialConfigEntry/serialDialoutTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConfigTable",
                    "serialConfigEntry",
                    "serialDialoutTimeout"
                  ]
                },
                "description": "Retrieve serialDialoutTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConfigTable/serialConfigEntry/serialStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConfigTable",
                    "serialConfigEntry",
                    "serialStatus"
                  ]
                },
                "description": "Retrieve serialStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get netConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/netConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "netConfigTable"
                  ]
                },
                "description": "Retrieve netConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get netConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/netConfigTable/netConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "netConfigTable",
                    "netConfigEntry"
                  ]
                },
                "description": "Retrieve netConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/netConfigTable/netConfigEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "netConfigTable",
                    "netConfigEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get netConfigIPAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/netConfigTable/netConfigEntry/netConfigIPAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "netConfigTable",
                    "netConfigEntry",
                    "netConfigIPAddress"
                  ]
                },
                "description": "Retrieve netConfigIPAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get netConfigSubnetMask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/netConfigTable/netConfigEntry/netConfigSubnetMask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "netConfigTable",
                    "netConfigEntry",
                    "netConfigSubnetMask"
                  ]
                },
                "description": "Retrieve netConfigSubnetMask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get netConfigStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/netConfigTable/netConfigEntry/netConfigStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "netConfigTable",
                    "netConfigEntry",
                    "netConfigStatus"
                  ]
                },
                "description": "Retrieve netConfigStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get trapDestTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/trapDestTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "trapDestTable"
                  ]
                },
                "description": "Retrieve trapDestTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get trapDestEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/trapDestTable/trapDestEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "trapDestTable",
                    "trapDestEntry"
                  ]
                },
                "description": "Retrieve trapDestEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get trapDestIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/trapDestTable/trapDestEntry/trapDestIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "trapDestTable",
                    "trapDestEntry",
                    "trapDestIndex"
                  ]
                },
                "description": "Retrieve trapDestIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get trapDestCommunity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/trapDestTable/trapDestEntry/trapDestCommunity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "trapDestTable",
                    "trapDestEntry",
                    "trapDestCommunity"
                  ]
                },
                "description": "Retrieve trapDestCommunity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get trapDestProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/trapDestTable/trapDestEntry/trapDestProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "trapDestTable",
                    "trapDestEntry",
                    "trapDestProtocol"
                  ]
                },
                "description": "Retrieve trapDestProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get trapDestAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/trapDestTable/trapDestEntry/trapDestAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "trapDestTable",
                    "trapDestEntry",
                    "trapDestAddress"
                  ]
                },
                "description": "Retrieve trapDestAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get trapDestOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/trapDestTable/trapDestEntry/trapDestOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "trapDestTable",
                    "trapDestEntry",
                    "trapDestOwner"
                  ]
                },
                "description": "Retrieve trapDestOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get trapDestStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/trapDestTable/trapDestEntry/trapDestStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "trapDestTable",
                    "trapDestEntry",
                    "trapDestStatus"
                  ]
                },
                "description": "Retrieve trapDestStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialConnectionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConnectionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConnectionTable"
                  ]
                },
                "description": "Retrieve serialConnectionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialConnectionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConnectionTable/serialConnectionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConnectionTable",
                    "serialConnectionEntry"
                  ]
                },
                "description": "Retrieve serialConnectionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialConnectIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConnectionTable/serialConnectionEntry/serialConnectIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConnectionTable",
                    "serialConnectionEntry",
                    "serialConnectIndex"
                  ]
                },
                "description": "Retrieve serialConnectIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialConnectDestIpAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConnectionTable/serialConnectionEntry/serialConnectDestIpAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConnectionTable",
                    "serialConnectionEntry",
                    "serialConnectDestIpAddress"
                  ]
                },
                "description": "Retrieve serialConnectDestIpAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialConnectType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConnectionTable/serialConnectionEntry/serialConnectType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConnectionTable",
                    "serialConnectionEntry",
                    "serialConnectType"
                  ]
                },
                "description": "Retrieve serialConnectType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialConnectDialString",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConnectionTable/serialConnectionEntry/serialConnectDialString",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConnectionTable",
                    "serialConnectionEntry",
                    "serialConnectDialString"
                  ]
                },
                "description": "Retrieve serialConnectDialString from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialConnectSwitchConnectSeq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConnectionTable/serialConnectionEntry/serialConnectSwitchConnectSeq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConnectionTable",
                    "serialConnectionEntry",
                    "serialConnectSwitchConnectSeq"
                  ]
                },
                "description": "Retrieve serialConnectSwitchConnectSeq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialConnectSwitchDisconnectSeq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConnectionTable/serialConnectionEntry/serialConnectSwitchDisconnectSeq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConnectionTable",
                    "serialConnectionEntry",
                    "serialConnectSwitchDisconnectSeq"
                  ]
                },
                "description": "Retrieve serialConnectSwitchDisconnectSeq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialConnectSwitchResetSeq",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConnectionTable/serialConnectionEntry/serialConnectSwitchResetSeq",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConnectionTable",
                    "serialConnectionEntry",
                    "serialConnectSwitchResetSeq"
                  ]
                },
                "description": "Retrieve serialConnectSwitchResetSeq from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialConnectOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConnectionTable/serialConnectionEntry/serialConnectOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConnectionTable",
                    "serialConnectionEntry",
                    "serialConnectOwner"
                  ]
                },
                "description": "Retrieve serialConnectOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serialConnectStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/serialConnectionTable/serialConnectionEntry/serialConnectStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "serialConnectionTable",
                    "serialConnectionEntry",
                    "serialConnectStatus"
                  ]
                },
                "description": "Retrieve serialConnectStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsDroppedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/etherStatsDroppedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "etherStatsDroppedFrames"
                  ]
                },
                "description": "Retrieve etherStatsDroppedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get etherStatsCreateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/etherStatsCreateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "etherStatsCreateTime"
                  ]
                },
                "description": "Retrieve etherStatsCreateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsDroppedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/tokenRingMLStatsDroppedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "tokenRingMLStatsDroppedFrames"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsDroppedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsCreateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/tokenRingMLStatsCreateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "tokenRingMLStatsCreateTime"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsCreateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDroppedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/tokenRingPStatsDroppedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "tokenRingPStatsDroppedFrames"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDroppedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsCreateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/tokenRingPStatsCreateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "tokenRingPStatsCreateTime"
                  ]
                },
                "description": "Retrieve tokenRingPStatsCreateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get historyControlDroppedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/historyControlDroppedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "historyControlDroppedFrames"
                  ]
                },
                "description": "Retrieve historyControlDroppedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostControlDroppedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hostControlDroppedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hostControlDroppedFrames"
                  ]
                },
                "description": "Retrieve hostControlDroppedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostControlCreateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/hostControlCreateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "hostControlCreateTime"
                  ]
                },
                "description": "Retrieve hostControlCreateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixControlDroppedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/matrixControlDroppedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "matrixControlDroppedFrames"
                  ]
                },
                "description": "Retrieve matrixControlDroppedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matrixControlCreateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/matrixControlCreateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "matrixControlCreateTime"
                  ]
                },
                "description": "Retrieve matrixControlCreateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get channelDroppedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/channelDroppedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "channelDroppedFrames"
                  ]
                },
                "description": "Retrieve channelDroppedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get channelCreateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/channelCreateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "channelCreateTime"
                  ]
                },
                "description": "Retrieve channelCreateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filterProtocolDirDataLocalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/filterProtocolDirDataLocalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "filterProtocolDirDataLocalIndex"
                  ]
                },
                "description": "Retrieve filterProtocolDirDataLocalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filterProtocolDirLocalIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/filterProtocolDirLocalIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "filterProtocolDirLocalIndex"
                  ]
                },
                "description": "Retrieve filterProtocolDirLocalIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationControlDroppedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/ringStationControlDroppedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "ringStationControlDroppedFrames"
                  ]
                },
                "description": "Retrieve ringStationControlDroppedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationControlCreateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/ringStationControlCreateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "ringStationControlCreateTime"
                  ]
                },
                "description": "Retrieve ringStationControlCreateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsDroppedFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/sourceRoutingStatsDroppedFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "sourceRoutingStatsDroppedFrames"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsDroppedFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsCreateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RMON2-MIB:RMON2-MIB/sourceRoutingStatsCreateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RMON2-MIB:RMON2-MIB",
                    "sourceRoutingStatsCreateTime"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsCreateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "RSVP-MIB",
          "description": "Cisco IOS-XE MIB - RSVP-MIB\n\nMIB data from `RSVP-MIB` module.\n\n**Root containers:** 1 (RSVP-MIB)\n**Paths:** 176 | **Descendants:** 193\n\nAll endpoints are read-only (GET).\n\nEndpoints: 176 | Operations: 176",
          "item": [
            {
              "name": "GET Get RSVP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB"
                  ]
                },
                "description": "Retrieve RSVP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpGenObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpGenObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpGenObjects"
                  ]
                },
                "description": "Retrieve rsvpGenObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpBadPackets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpGenObjects/rsvpBadPackets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpGenObjects",
                    "rsvpBadPackets"
                  ]
                },
                "description": "Retrieve rsvpBadPackets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderNewIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpGenObjects/rsvpSenderNewIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpGenObjects",
                    "rsvpSenderNewIndex"
                  ]
                },
                "description": "Retrieve rsvpSenderNewIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvNewIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpGenObjects/rsvpResvNewIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpGenObjects",
                    "rsvpResvNewIndex"
                  ]
                },
                "description": "Retrieve rsvpResvNewIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdNewIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpGenObjects/rsvpResvFwdNewIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpGenObjects",
                    "rsvpResvFwdNewIndex"
                  ]
                },
                "description": "Retrieve rsvpResvFwdNewIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionNewIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpGenObjects/rsvpSessionNewIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpGenObjects",
                    "rsvpSessionNewIndex"
                  ]
                },
                "description": "Retrieve rsvpSessionNewIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSessionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSessionTable"
                  ]
                },
                "description": "Retrieve rsvpSessionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSessionTable/rsvpSessionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSessionTable",
                    "rsvpSessionEntry"
                  ]
                },
                "description": "Retrieve rsvpSessionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSessionTable/rsvpSessionEntry/rsvpSessionNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSessionTable",
                    "rsvpSessionEntry",
                    "rsvpSessionNumber"
                  ]
                },
                "description": "Retrieve rsvpSessionNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSessionTable/rsvpSessionEntry/rsvpSessionType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSessionTable",
                    "rsvpSessionEntry",
                    "rsvpSessionType"
                  ]
                },
                "description": "Retrieve rsvpSessionType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionDestAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSessionTable/rsvpSessionEntry/rsvpSessionDestAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSessionTable",
                    "rsvpSessionEntry",
                    "rsvpSessionDestAddr"
                  ]
                },
                "description": "Retrieve rsvpSessionDestAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionDestAddrLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSessionTable/rsvpSessionEntry/rsvpSessionDestAddrLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSessionTable",
                    "rsvpSessionEntry",
                    "rsvpSessionDestAddrLength"
                  ]
                },
                "description": "Retrieve rsvpSessionDestAddrLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSessionTable/rsvpSessionEntry/rsvpSessionProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSessionTable",
                    "rsvpSessionEntry",
                    "rsvpSessionProtocol"
                  ]
                },
                "description": "Retrieve rsvpSessionProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSessionTable/rsvpSessionEntry/rsvpSessionPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSessionTable",
                    "rsvpSessionEntry",
                    "rsvpSessionPort"
                  ]
                },
                "description": "Retrieve rsvpSessionPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionSenders",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSessionTable/rsvpSessionEntry/rsvpSessionSenders",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSessionTable",
                    "rsvpSessionEntry",
                    "rsvpSessionSenders"
                  ]
                },
                "description": "Retrieve rsvpSessionSenders from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionReceivers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSessionTable/rsvpSessionEntry/rsvpSessionReceivers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSessionTable",
                    "rsvpSessionEntry",
                    "rsvpSessionReceivers"
                  ]
                },
                "description": "Retrieve rsvpSessionReceivers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSessionTable/rsvpSessionEntry/rsvpSessionRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSessionTable",
                    "rsvpSessionEntry",
                    "rsvpSessionRequests"
                  ]
                },
                "description": "Retrieve rsvpSessionRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable"
                  ]
                },
                "description": "Retrieve rsvpSenderTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry"
                  ]
                },
                "description": "Retrieve rsvpSenderEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSessionNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSessionNumber"
                  ]
                },
                "description": "Retrieve rsvpSessionNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderNumber"
                  ]
                },
                "description": "Retrieve rsvpSenderNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderType"
                  ]
                },
                "description": "Retrieve rsvpSenderType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderDestAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderDestAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderDestAddr"
                  ]
                },
                "description": "Retrieve rsvpSenderDestAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAddr"
                  ]
                },
                "description": "Retrieve rsvpSenderAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderDestAddrLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderDestAddrLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderDestAddrLength"
                  ]
                },
                "description": "Retrieve rsvpSenderDestAddrLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAddrLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAddrLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAddrLength"
                  ]
                },
                "description": "Retrieve rsvpSenderAddrLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderProtocol"
                  ]
                },
                "description": "Retrieve rsvpSenderProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderDestPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderDestPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderDestPort"
                  ]
                },
                "description": "Retrieve rsvpSenderDestPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderPort"
                  ]
                },
                "description": "Retrieve rsvpSenderPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderFlowId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderFlowId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderFlowId"
                  ]
                },
                "description": "Retrieve rsvpSenderFlowId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderHopAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderHopAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderHopAddr"
                  ]
                },
                "description": "Retrieve rsvpSenderHopAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderHopLih",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderHopLih",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderHopLih"
                  ]
                },
                "description": "Retrieve rsvpSenderHopLih from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderInterface"
                  ]
                },
                "description": "Retrieve rsvpSenderInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderTSpecRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderTSpecRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderTSpecRate"
                  ]
                },
                "description": "Retrieve rsvpSenderTSpecRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderTSpecPeakRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderTSpecPeakRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderTSpecPeakRate"
                  ]
                },
                "description": "Retrieve rsvpSenderTSpecPeakRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderTSpecBurst",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderTSpecBurst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderTSpecBurst"
                  ]
                },
                "description": "Retrieve rsvpSenderTSpecBurst from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderTSpecMinTU",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderTSpecMinTU",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderTSpecMinTU"
                  ]
                },
                "description": "Retrieve rsvpSenderTSpecMinTU from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderTSpecMaxTU",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderTSpecMaxTU",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderTSpecMaxTU"
                  ]
                },
                "description": "Retrieve rsvpSenderTSpecMaxTU from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderInterval"
                  ]
                },
                "description": "Retrieve rsvpSenderInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderRSVPHop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderRSVPHop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderRSVPHop"
                  ]
                },
                "description": "Retrieve rsvpSenderRSVPHop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderLastChange"
                  ]
                },
                "description": "Retrieve rsvpSenderLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderPolicy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderPolicy"
                  ]
                },
                "description": "Retrieve rsvpSenderPolicy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecBreak",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecBreak",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecBreak"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecBreak from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecHopCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecHopCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecHopCount"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecHopCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecPathBw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecPathBw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecPathBw"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecPathBw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecMinLatency",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecMinLatency",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecMinLatency"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecMinLatency from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecMtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecMtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecMtu"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecMtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecGuaranteedSvc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecGuaranteedSvc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecGuaranteedSvc"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecGuaranteedSvc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecGuaranteedBreak",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecGuaranteedBreak",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecGuaranteedBreak"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecGuaranteedBreak from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecGuaranteedCtot",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecGuaranteedCtot",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecGuaranteedCtot"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecGuaranteedCtot from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecGuaranteedDtot",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecGuaranteedDtot",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecGuaranteedDtot"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecGuaranteedDtot from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecGuaranteedCsum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecGuaranteedCsum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecGuaranteedCsum"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecGuaranteedCsum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecGuaranteedDsum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecGuaranteedDsum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecGuaranteedDsum"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecGuaranteedDsum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecGuaranteedHopCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecGuaranteedHopCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecGuaranteedHopCount"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecGuaranteedHopCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecGuaranteedPathBw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecGuaranteedPathBw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecGuaranteedPathBw"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecGuaranteedPathBw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecGuaranteedMinLatency",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecGuaranteedMinLatency",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecGuaranteedMinLatency"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecGuaranteedMinLatency from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecGuaranteedMtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecGuaranteedMtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecGuaranteedMtu"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecGuaranteedMtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecCtrlLoadSvc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecCtrlLoadSvc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecCtrlLoadSvc"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecCtrlLoadSvc from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecCtrlLoadBreak",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecCtrlLoadBreak",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecCtrlLoadBreak"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecCtrlLoadBreak from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecCtrlLoadHopCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecCtrlLoadHopCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecCtrlLoadHopCount"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecCtrlLoadHopCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecCtrlLoadPathBw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecCtrlLoadPathBw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecCtrlLoadPathBw"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecCtrlLoadPathBw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecCtrlLoadMinLatency",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecCtrlLoadMinLatency",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecCtrlLoadMinLatency"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecCtrlLoadMinLatency from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderAdspecCtrlLoadMtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderAdspecCtrlLoadMtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderAdspecCtrlLoadMtu"
                  ]
                },
                "description": "Retrieve rsvpSenderAdspecCtrlLoadMtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderStatus"
                  ]
                },
                "description": "Retrieve rsvpSenderStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderTTL",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderTable/rsvpSenderEntry/rsvpSenderTTL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderTable",
                    "rsvpSenderEntry",
                    "rsvpSenderTTL"
                  ]
                },
                "description": "Retrieve rsvpSenderTTL from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderOutInterfaceTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderOutInterfaceTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderOutInterfaceTable"
                  ]
                },
                "description": "Retrieve rsvpSenderOutInterfaceTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderOutInterfaceEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderOutInterfaceTable/rsvpSenderOutInterfaceEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderOutInterfaceTable",
                    "rsvpSenderOutInterfaceEntry"
                  ]
                },
                "description": "Retrieve rsvpSenderOutInterfaceEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderOutInterfaceTable/rsvpSenderOutInterfaceEntry/rsvpSessionNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderOutInterfaceTable",
                    "rsvpSenderOutInterfaceEntry",
                    "rsvpSessionNumber"
                  ]
                },
                "description": "Retrieve rsvpSessionNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderOutInterfaceTable/rsvpSenderOutInterfaceEntry/rsvpSenderNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderOutInterfaceTable",
                    "rsvpSenderOutInterfaceEntry",
                    "rsvpSenderNumber"
                  ]
                },
                "description": "Retrieve rsvpSenderNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderOutInterfaceTable/rsvpSenderOutInterfaceEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderOutInterfaceTable",
                    "rsvpSenderOutInterfaceEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderOutInterfaceStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpSenderOutInterfaceTable/rsvpSenderOutInterfaceEntry/rsvpSenderOutInterfaceStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpSenderOutInterfaceTable",
                    "rsvpSenderOutInterfaceEntry",
                    "rsvpSenderOutInterfaceStatus"
                  ]
                },
                "description": "Retrieve rsvpSenderOutInterfaceStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable"
                  ]
                },
                "description": "Retrieve rsvpResvTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry"
                  ]
                },
                "description": "Retrieve rsvpResvEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpSessionNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpSessionNumber"
                  ]
                },
                "description": "Retrieve rsvpSessionNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvNumber"
                  ]
                },
                "description": "Retrieve rsvpResvNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvType"
                  ]
                },
                "description": "Retrieve rsvpResvType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvDestAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvDestAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvDestAddr"
                  ]
                },
                "description": "Retrieve rsvpResvDestAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvSenderAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvSenderAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvSenderAddr"
                  ]
                },
                "description": "Retrieve rsvpResvSenderAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvDestAddrLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvDestAddrLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvDestAddrLength"
                  ]
                },
                "description": "Retrieve rsvpResvDestAddrLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvSenderAddrLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvSenderAddrLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvSenderAddrLength"
                  ]
                },
                "description": "Retrieve rsvpResvSenderAddrLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvProtocol"
                  ]
                },
                "description": "Retrieve rsvpResvProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvDestPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvDestPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvDestPort"
                  ]
                },
                "description": "Retrieve rsvpResvDestPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvPort"
                  ]
                },
                "description": "Retrieve rsvpResvPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvHopAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvHopAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvHopAddr"
                  ]
                },
                "description": "Retrieve rsvpResvHopAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvHopLih",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvHopLih",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvHopLih"
                  ]
                },
                "description": "Retrieve rsvpResvHopLih from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvInterface"
                  ]
                },
                "description": "Retrieve rsvpResvInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvService",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvService",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvService"
                  ]
                },
                "description": "Retrieve rsvpResvService from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvTSpecRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvTSpecRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvTSpecRate"
                  ]
                },
                "description": "Retrieve rsvpResvTSpecRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvTSpecPeakRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvTSpecPeakRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvTSpecPeakRate"
                  ]
                },
                "description": "Retrieve rsvpResvTSpecPeakRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvTSpecBurst",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvTSpecBurst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvTSpecBurst"
                  ]
                },
                "description": "Retrieve rsvpResvTSpecBurst from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvTSpecMinTU",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvTSpecMinTU",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvTSpecMinTU"
                  ]
                },
                "description": "Retrieve rsvpResvTSpecMinTU from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvTSpecMaxTU",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvTSpecMaxTU",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvTSpecMaxTU"
                  ]
                },
                "description": "Retrieve rsvpResvTSpecMaxTU from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvRSpecRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvRSpecRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvRSpecRate"
                  ]
                },
                "description": "Retrieve rsvpResvRSpecRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvRSpecSlack",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvRSpecSlack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvRSpecSlack"
                  ]
                },
                "description": "Retrieve rsvpResvRSpecSlack from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvInterval"
                  ]
                },
                "description": "Retrieve rsvpResvInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvScope",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvScope",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvScope"
                  ]
                },
                "description": "Retrieve rsvpResvScope from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvShared",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvShared",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvShared"
                  ]
                },
                "description": "Retrieve rsvpResvShared from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvExplicit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvExplicit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvExplicit"
                  ]
                },
                "description": "Retrieve rsvpResvExplicit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvRSVPHop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvRSVPHop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvRSVPHop"
                  ]
                },
                "description": "Retrieve rsvpResvRSVPHop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvLastChange"
                  ]
                },
                "description": "Retrieve rsvpResvLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvPolicy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvPolicy"
                  ]
                },
                "description": "Retrieve rsvpResvPolicy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvStatus"
                  ]
                },
                "description": "Retrieve rsvpResvStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvTTL",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvTTL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvTTL"
                  ]
                },
                "description": "Retrieve rsvpResvTTL from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFlowId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvTable/rsvpResvEntry/rsvpResvFlowId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvTable",
                    "rsvpResvEntry",
                    "rsvpResvFlowId"
                  ]
                },
                "description": "Retrieve rsvpResvFlowId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable"
                  ]
                },
                "description": "Retrieve rsvpResvFwdTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry"
                  ]
                },
                "description": "Retrieve rsvpResvFwdEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpSessionNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpSessionNumber"
                  ]
                },
                "description": "Retrieve rsvpSessionNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdNumber"
                  ]
                },
                "description": "Retrieve rsvpResvFwdNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdType"
                  ]
                },
                "description": "Retrieve rsvpResvFwdType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdDestAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdDestAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdDestAddr"
                  ]
                },
                "description": "Retrieve rsvpResvFwdDestAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdSenderAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdSenderAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdSenderAddr"
                  ]
                },
                "description": "Retrieve rsvpResvFwdSenderAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdDestAddrLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdDestAddrLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdDestAddrLength"
                  ]
                },
                "description": "Retrieve rsvpResvFwdDestAddrLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdSenderAddrLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdSenderAddrLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdSenderAddrLength"
                  ]
                },
                "description": "Retrieve rsvpResvFwdSenderAddrLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdProtocol"
                  ]
                },
                "description": "Retrieve rsvpResvFwdProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdDestPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdDestPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdDestPort"
                  ]
                },
                "description": "Retrieve rsvpResvFwdDestPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdPort"
                  ]
                },
                "description": "Retrieve rsvpResvFwdPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdHopAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdHopAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdHopAddr"
                  ]
                },
                "description": "Retrieve rsvpResvFwdHopAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdHopLih",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdHopLih",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdHopLih"
                  ]
                },
                "description": "Retrieve rsvpResvFwdHopLih from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdInterface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdInterface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdInterface"
                  ]
                },
                "description": "Retrieve rsvpResvFwdInterface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdService",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdService",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdService"
                  ]
                },
                "description": "Retrieve rsvpResvFwdService from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdTSpecRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdTSpecRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdTSpecRate"
                  ]
                },
                "description": "Retrieve rsvpResvFwdTSpecRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdTSpecPeakRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdTSpecPeakRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdTSpecPeakRate"
                  ]
                },
                "description": "Retrieve rsvpResvFwdTSpecPeakRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdTSpecBurst",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdTSpecBurst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdTSpecBurst"
                  ]
                },
                "description": "Retrieve rsvpResvFwdTSpecBurst from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdTSpecMinTU",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdTSpecMinTU",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdTSpecMinTU"
                  ]
                },
                "description": "Retrieve rsvpResvFwdTSpecMinTU from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdTSpecMaxTU",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdTSpecMaxTU",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdTSpecMaxTU"
                  ]
                },
                "description": "Retrieve rsvpResvFwdTSpecMaxTU from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdRSpecRate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdRSpecRate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdRSpecRate"
                  ]
                },
                "description": "Retrieve rsvpResvFwdRSpecRate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdRSpecSlack",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdRSpecSlack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdRSpecSlack"
                  ]
                },
                "description": "Retrieve rsvpResvFwdRSpecSlack from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdInterval"
                  ]
                },
                "description": "Retrieve rsvpResvFwdInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdScope",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdScope",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdScope"
                  ]
                },
                "description": "Retrieve rsvpResvFwdScope from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdShared",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdShared",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdShared"
                  ]
                },
                "description": "Retrieve rsvpResvFwdShared from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdExplicit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdExplicit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdExplicit"
                  ]
                },
                "description": "Retrieve rsvpResvFwdExplicit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdRSVPHop",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdRSVPHop",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdRSVPHop"
                  ]
                },
                "description": "Retrieve rsvpResvFwdRSVPHop from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdLastChange"
                  ]
                },
                "description": "Retrieve rsvpResvFwdLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdPolicy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdPolicy"
                  ]
                },
                "description": "Retrieve rsvpResvFwdPolicy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdStatus"
                  ]
                },
                "description": "Retrieve rsvpResvFwdStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdTTL",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdTTL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdTTL"
                  ]
                },
                "description": "Retrieve rsvpResvFwdTTL from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdFlowId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpResvFwdTable/rsvpResvFwdEntry/rsvpResvFwdFlowId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpResvFwdTable",
                    "rsvpResvFwdEntry",
                    "rsvpResvFwdFlowId"
                  ]
                },
                "description": "Retrieve rsvpResvFwdFlowId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpIfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpIfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpIfTable"
                  ]
                },
                "description": "Retrieve rsvpIfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpIfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpIfTable/rsvpIfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpIfTable",
                    "rsvpIfEntry"
                  ]
                },
                "description": "Retrieve rsvpIfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpIfTable/rsvpIfEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpIfTable",
                    "rsvpIfEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpIfUdpNbrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpIfTable/rsvpIfEntry/rsvpIfUdpNbrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpIfTable",
                    "rsvpIfEntry",
                    "rsvpIfUdpNbrs"
                  ]
                },
                "description": "Retrieve rsvpIfUdpNbrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpIfIpNbrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpIfTable/rsvpIfEntry/rsvpIfIpNbrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpIfTable",
                    "rsvpIfEntry",
                    "rsvpIfIpNbrs"
                  ]
                },
                "description": "Retrieve rsvpIfIpNbrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpIfNbrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpIfTable/rsvpIfEntry/rsvpIfNbrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpIfTable",
                    "rsvpIfEntry",
                    "rsvpIfNbrs"
                  ]
                },
                "description": "Retrieve rsvpIfNbrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpIfRefreshBlockadeMultiple",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpIfTable/rsvpIfEntry/rsvpIfRefreshBlockadeMultiple",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpIfTable",
                    "rsvpIfEntry",
                    "rsvpIfRefreshBlockadeMultiple"
                  ]
                },
                "description": "Retrieve rsvpIfRefreshBlockadeMultiple from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpIfRefreshMultiple",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpIfTable/rsvpIfEntry/rsvpIfRefreshMultiple",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpIfTable",
                    "rsvpIfEntry",
                    "rsvpIfRefreshMultiple"
                  ]
                },
                "description": "Retrieve rsvpIfRefreshMultiple from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpIfTTL",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpIfTable/rsvpIfEntry/rsvpIfTTL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpIfTable",
                    "rsvpIfEntry",
                    "rsvpIfTTL"
                  ]
                },
                "description": "Retrieve rsvpIfTTL from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpIfRefreshInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpIfTable/rsvpIfEntry/rsvpIfRefreshInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpIfTable",
                    "rsvpIfEntry",
                    "rsvpIfRefreshInterval"
                  ]
                },
                "description": "Retrieve rsvpIfRefreshInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpIfRouteDelay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpIfTable/rsvpIfEntry/rsvpIfRouteDelay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpIfTable",
                    "rsvpIfEntry",
                    "rsvpIfRouteDelay"
                  ]
                },
                "description": "Retrieve rsvpIfRouteDelay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpIfEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpIfTable/rsvpIfEntry/rsvpIfEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpIfTable",
                    "rsvpIfEntry",
                    "rsvpIfEnabled"
                  ]
                },
                "description": "Retrieve rsvpIfEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpIfUdpRequired",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpIfTable/rsvpIfEntry/rsvpIfUdpRequired",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpIfTable",
                    "rsvpIfEntry",
                    "rsvpIfUdpRequired"
                  ]
                },
                "description": "Retrieve rsvpIfUdpRequired from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpIfStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpIfTable/rsvpIfEntry/rsvpIfStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpIfTable",
                    "rsvpIfEntry",
                    "rsvpIfStatus"
                  ]
                },
                "description": "Retrieve rsvpIfStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpNbrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable"
                  ]
                },
                "description": "Retrieve rsvpNbrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpNbrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/rsvpNbrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "rsvpNbrEntry"
                  ]
                },
                "description": "Retrieve rsvpNbrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/rsvpNbrEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "rsvpNbrEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpNbrAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/rsvpNbrEntry/rsvpNbrAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "rsvpNbrEntry",
                    "rsvpNbrAddress"
                  ]
                },
                "description": "Retrieve rsvpNbrAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpNbrProtocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/rsvpNbrEntry/rsvpNbrProtocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "rsvpNbrEntry",
                    "rsvpNbrProtocol"
                  ]
                },
                "description": "Retrieve rsvpNbrProtocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpNbrStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/rsvpNbrEntry/rsvpNbrStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "rsvpNbrEntry",
                    "rsvpNbrStatus"
                  ]
                },
                "description": "Retrieve rsvpNbrStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-1"
                  ]
                },
                "description": "Retrieve object-1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-1/intSrvFlowNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-1",
                    "intSrvFlowNumber"
                  ]
                },
                "description": "Retrieve intSrvFlowNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get intSrvFlowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-1/intSrvFlowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-1",
                    "intSrvFlowStatus"
                  ]
                },
                "description": "Retrieve intSrvFlowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-2"
                  ]
                },
                "description": "Retrieve object-2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-2/rsvpSessionNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-2",
                    "rsvpSessionNumber"
                  ]
                },
                "description": "Retrieve rsvpSessionNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionDestAddr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-2/rsvpSessionDestAddr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-2",
                    "rsvpSessionDestAddr"
                  ]
                },
                "description": "Retrieve rsvpSessionDestAddr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-3"
                  ]
                },
                "description": "Retrieve object-3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-3/rsvpSessionNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-3",
                    "rsvpSessionNumber"
                  ]
                },
                "description": "Retrieve rsvpSessionNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-3/rsvpResvFwdNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-3",
                    "rsvpResvFwdNumber"
                  ]
                },
                "description": "Retrieve rsvpResvFwdNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvFwdStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-3/rsvpResvFwdStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-3",
                    "rsvpResvFwdStatus"
                  ]
                },
                "description": "Retrieve rsvpResvFwdStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-4"
                  ]
                },
                "description": "Retrieve object-4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-4/rsvpSessionNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-4",
                    "rsvpSessionNumber"
                  ]
                },
                "description": "Retrieve rsvpSessionNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-4/rsvpResvNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-4",
                    "rsvpResvNumber"
                  ]
                },
                "description": "Retrieve rsvpResvNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpResvStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-4/rsvpResvStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-4",
                    "rsvpResvStatus"
                  ]
                },
                "description": "Retrieve rsvpResvStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get object-5",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-5",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-5"
                  ]
                },
                "description": "Retrieve object-5 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSessionNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-5/rsvpSessionNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-5",
                    "rsvpSessionNumber"
                  ]
                },
                "description": "Retrieve rsvpSessionNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-5/rsvpSenderNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-5",
                    "rsvpSenderNumber"
                  ]
                },
                "description": "Retrieve rsvpSenderNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rsvpSenderStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/RSVP-MIB:RSVP-MIB/rsvpNbrTable/object-5/rsvpSenderStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "RSVP-MIB:RSVP-MIB",
                    "rsvpNbrTable",
                    "object-5",
                    "rsvpSenderStatus"
                  ]
                },
                "description": "Retrieve rsvpSenderStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "SNMP-FRAMEWORK-MIB",
          "description": "Cisco IOS-XE MIB - SNMP-FRAMEWORK-MIB\n\nMIB data from `SNMP-FRAMEWORK-MIB` module.\n\n**Root containers:** 1 (SNMP-FRAMEWORK-MIB)\n**Paths:** 6 | **Descendants:** 5\n\nAll endpoints are read-only (GET).\n\nEndpoints: 6 | Operations: 6",
          "item": [
            {
              "name": "GET Get SNMP-FRAMEWORK-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-FRAMEWORK-MIB:SNMP-FRAMEWORK-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-FRAMEWORK-MIB:SNMP-FRAMEWORK-MIB"
                  ]
                },
                "description": "Retrieve SNMP-FRAMEWORK-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpEngine",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-FRAMEWORK-MIB:SNMP-FRAMEWORK-MIB/snmpEngine",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-FRAMEWORK-MIB:SNMP-FRAMEWORK-MIB",
                    "snmpEngine"
                  ]
                },
                "description": "Retrieve snmpEngine from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpEngineID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-FRAMEWORK-MIB:SNMP-FRAMEWORK-MIB/snmpEngine/snmpEngineID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-FRAMEWORK-MIB:SNMP-FRAMEWORK-MIB",
                    "snmpEngine",
                    "snmpEngineID"
                  ]
                },
                "description": "Retrieve snmpEngineID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpEngineBoots",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-FRAMEWORK-MIB:SNMP-FRAMEWORK-MIB/snmpEngine/snmpEngineBoots",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-FRAMEWORK-MIB:SNMP-FRAMEWORK-MIB",
                    "snmpEngine",
                    "snmpEngineBoots"
                  ]
                },
                "description": "Retrieve snmpEngineBoots from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpEngineTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-FRAMEWORK-MIB:SNMP-FRAMEWORK-MIB/snmpEngine/snmpEngineTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-FRAMEWORK-MIB:SNMP-FRAMEWORK-MIB",
                    "snmpEngine",
                    "snmpEngineTime"
                  ]
                },
                "description": "Retrieve snmpEngineTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpEngineMaxMessageSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-FRAMEWORK-MIB:SNMP-FRAMEWORK-MIB/snmpEngine/snmpEngineMaxMessageSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-FRAMEWORK-MIB:SNMP-FRAMEWORK-MIB",
                    "snmpEngine",
                    "snmpEngineMaxMessageSize"
                  ]
                },
                "description": "Retrieve snmpEngineMaxMessageSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "SNMP-PROXY-MIB",
          "description": "Cisco IOS-XE MIB - SNMP-PROXY-MIB\n\nMIB data from `SNMP-PROXY-MIB` module.\n\n**Root containers:** 1 (SNMP-PROXY-MIB)\n**Paths:** 12 | **Descendants:** 11\n\nAll endpoints are read-only (GET).\n\nEndpoints: 12 | Operations: 12",
          "item": [
            {
              "name": "GET Get SNMP-PROXY-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-PROXY-MIB:SNMP-PROXY-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-PROXY-MIB:SNMP-PROXY-MIB"
                  ]
                },
                "description": "Retrieve SNMP-PROXY-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpProxyTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-PROXY-MIB:SNMP-PROXY-MIB/snmpProxyTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-PROXY-MIB:SNMP-PROXY-MIB",
                    "snmpProxyTable"
                  ]
                },
                "description": "Retrieve snmpProxyTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpProxyEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-PROXY-MIB:SNMP-PROXY-MIB/snmpProxyTable/snmpProxyEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-PROXY-MIB:SNMP-PROXY-MIB",
                    "snmpProxyTable",
                    "snmpProxyEntry"
                  ]
                },
                "description": "Retrieve snmpProxyEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpProxyName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-PROXY-MIB:SNMP-PROXY-MIB/snmpProxyTable/snmpProxyEntry/snmpProxyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-PROXY-MIB:SNMP-PROXY-MIB",
                    "snmpProxyTable",
                    "snmpProxyEntry",
                    "snmpProxyName"
                  ]
                },
                "description": "Retrieve snmpProxyName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpProxyType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-PROXY-MIB:SNMP-PROXY-MIB/snmpProxyTable/snmpProxyEntry/snmpProxyType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-PROXY-MIB:SNMP-PROXY-MIB",
                    "snmpProxyTable",
                    "snmpProxyEntry",
                    "snmpProxyType"
                  ]
                },
                "description": "Retrieve snmpProxyType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpProxyContextEngineID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-PROXY-MIB:SNMP-PROXY-MIB/snmpProxyTable/snmpProxyEntry/snmpProxyContextEngineID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-PROXY-MIB:SNMP-PROXY-MIB",
                    "snmpProxyTable",
                    "snmpProxyEntry",
                    "snmpProxyContextEngineID"
                  ]
                },
                "description": "Retrieve snmpProxyContextEngineID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpProxyContextName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-PROXY-MIB:SNMP-PROXY-MIB/snmpProxyTable/snmpProxyEntry/snmpProxyContextName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-PROXY-MIB:SNMP-PROXY-MIB",
                    "snmpProxyTable",
                    "snmpProxyEntry",
                    "snmpProxyContextName"
                  ]
                },
                "description": "Retrieve snmpProxyContextName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpProxyTargetParamsIn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-PROXY-MIB:SNMP-PROXY-MIB/snmpProxyTable/snmpProxyEntry/snmpProxyTargetParamsIn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-PROXY-MIB:SNMP-PROXY-MIB",
                    "snmpProxyTable",
                    "snmpProxyEntry",
                    "snmpProxyTargetParamsIn"
                  ]
                },
                "description": "Retrieve snmpProxyTargetParamsIn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpProxySingleTargetOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-PROXY-MIB:SNMP-PROXY-MIB/snmpProxyTable/snmpProxyEntry/snmpProxySingleTargetOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-PROXY-MIB:SNMP-PROXY-MIB",
                    "snmpProxyTable",
                    "snmpProxyEntry",
                    "snmpProxySingleTargetOut"
                  ]
                },
                "description": "Retrieve snmpProxySingleTargetOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpProxyMultipleTargetOut",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-PROXY-MIB:SNMP-PROXY-MIB/snmpProxyTable/snmpProxyEntry/snmpProxyMultipleTargetOut",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-PROXY-MIB:SNMP-PROXY-MIB",
                    "snmpProxyTable",
                    "snmpProxyEntry",
                    "snmpProxyMultipleTargetOut"
                  ]
                },
                "description": "Retrieve snmpProxyMultipleTargetOut from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpProxyStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-PROXY-MIB:SNMP-PROXY-MIB/snmpProxyTable/snmpProxyEntry/snmpProxyStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-PROXY-MIB:SNMP-PROXY-MIB",
                    "snmpProxyTable",
                    "snmpProxyEntry",
                    "snmpProxyStorageType"
                  ]
                },
                "description": "Retrieve snmpProxyStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpProxyRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-PROXY-MIB:SNMP-PROXY-MIB/snmpProxyTable/snmpProxyEntry/snmpProxyRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-PROXY-MIB:SNMP-PROXY-MIB",
                    "snmpProxyTable",
                    "snmpProxyEntry",
                    "snmpProxyRowStatus"
                  ]
                },
                "description": "Retrieve snmpProxyRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "SNMP-TARGET-MIB",
          "description": "Cisco IOS-XE MIB - SNMP-TARGET-MIB\n\nMIB data from `SNMP-TARGET-MIB` module.\n\n**Root containers:** 1 (SNMP-TARGET-MIB)\n**Paths:** 25 | **Descendants:** 24\n\nAll endpoints are read-only (GET).\n\nEndpoints: 25 | Operations: 25",
          "item": [
            {
              "name": "GET Get SNMP-TARGET-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB"
                  ]
                },
                "description": "Retrieve SNMP-TARGET-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetObjects",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetObjects",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetObjects"
                  ]
                },
                "description": "Retrieve snmpTargetObjects from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetSpinLock",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetObjects/snmpTargetSpinLock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetObjects",
                    "snmpTargetSpinLock"
                  ]
                },
                "description": "Retrieve snmpTargetSpinLock from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpUnavailableContexts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetObjects/snmpUnavailableContexts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetObjects",
                    "snmpUnavailableContexts"
                  ]
                },
                "description": "Retrieve snmpUnavailableContexts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpUnknownContexts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetObjects/snmpUnknownContexts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetObjects",
                    "snmpUnknownContexts"
                  ]
                },
                "description": "Retrieve snmpUnknownContexts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetAddrTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetAddrTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetAddrTable"
                  ]
                },
                "description": "Retrieve snmpTargetAddrTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetAddrEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetAddrTable/snmpTargetAddrEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetAddrTable",
                    "snmpTargetAddrEntry"
                  ]
                },
                "description": "Retrieve snmpTargetAddrEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetAddrName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetAddrTable/snmpTargetAddrEntry/snmpTargetAddrName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetAddrTable",
                    "snmpTargetAddrEntry",
                    "snmpTargetAddrName"
                  ]
                },
                "description": "Retrieve snmpTargetAddrName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetAddrTDomain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetAddrTable/snmpTargetAddrEntry/snmpTargetAddrTDomain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetAddrTable",
                    "snmpTargetAddrEntry",
                    "snmpTargetAddrTDomain"
                  ]
                },
                "description": "Retrieve snmpTargetAddrTDomain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetAddrTAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetAddrTable/snmpTargetAddrEntry/snmpTargetAddrTAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetAddrTable",
                    "snmpTargetAddrEntry",
                    "snmpTargetAddrTAddress"
                  ]
                },
                "description": "Retrieve snmpTargetAddrTAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetAddrTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetAddrTable/snmpTargetAddrEntry/snmpTargetAddrTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetAddrTable",
                    "snmpTargetAddrEntry",
                    "snmpTargetAddrTimeout"
                  ]
                },
                "description": "Retrieve snmpTargetAddrTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetAddrRetryCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetAddrTable/snmpTargetAddrEntry/snmpTargetAddrRetryCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetAddrTable",
                    "snmpTargetAddrEntry",
                    "snmpTargetAddrRetryCount"
                  ]
                },
                "description": "Retrieve snmpTargetAddrRetryCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetAddrTagList",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetAddrTable/snmpTargetAddrEntry/snmpTargetAddrTagList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetAddrTable",
                    "snmpTargetAddrEntry",
                    "snmpTargetAddrTagList"
                  ]
                },
                "description": "Retrieve snmpTargetAddrTagList from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetAddrParams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetAddrTable/snmpTargetAddrEntry/snmpTargetAddrParams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetAddrTable",
                    "snmpTargetAddrEntry",
                    "snmpTargetAddrParams"
                  ]
                },
                "description": "Retrieve snmpTargetAddrParams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetAddrStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetAddrTable/snmpTargetAddrEntry/snmpTargetAddrStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetAddrTable",
                    "snmpTargetAddrEntry",
                    "snmpTargetAddrStorageType"
                  ]
                },
                "description": "Retrieve snmpTargetAddrStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetAddrRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetAddrTable/snmpTargetAddrEntry/snmpTargetAddrRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetAddrTable",
                    "snmpTargetAddrEntry",
                    "snmpTargetAddrRowStatus"
                  ]
                },
                "description": "Retrieve snmpTargetAddrRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetParamsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetParamsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetParamsTable"
                  ]
                },
                "description": "Retrieve snmpTargetParamsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetParamsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetParamsTable/snmpTargetParamsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetParamsTable",
                    "snmpTargetParamsEntry"
                  ]
                },
                "description": "Retrieve snmpTargetParamsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetParamsName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetParamsTable/snmpTargetParamsEntry/snmpTargetParamsName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetParamsTable",
                    "snmpTargetParamsEntry",
                    "snmpTargetParamsName"
                  ]
                },
                "description": "Retrieve snmpTargetParamsName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetParamsMPModel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetParamsTable/snmpTargetParamsEntry/snmpTargetParamsMPModel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetParamsTable",
                    "snmpTargetParamsEntry",
                    "snmpTargetParamsMPModel"
                  ]
                },
                "description": "Retrieve snmpTargetParamsMPModel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetParamsSecurityModel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetParamsTable/snmpTargetParamsEntry/snmpTargetParamsSecurityModel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetParamsTable",
                    "snmpTargetParamsEntry",
                    "snmpTargetParamsSecurityModel"
                  ]
                },
                "description": "Retrieve snmpTargetParamsSecurityModel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetParamsSecurityName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetParamsTable/snmpTargetParamsEntry/snmpTargetParamsSecurityName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetParamsTable",
                    "snmpTargetParamsEntry",
                    "snmpTargetParamsSecurityName"
                  ]
                },
                "description": "Retrieve snmpTargetParamsSecurityName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetParamsSecurityLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetParamsTable/snmpTargetParamsEntry/snmpTargetParamsSecurityLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetParamsTable",
                    "snmpTargetParamsEntry",
                    "snmpTargetParamsSecurityLevel"
                  ]
                },
                "description": "Retrieve snmpTargetParamsSecurityLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetParamsStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetParamsTable/snmpTargetParamsEntry/snmpTargetParamsStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetParamsTable",
                    "snmpTargetParamsEntry",
                    "snmpTargetParamsStorageType"
                  ]
                },
                "description": "Retrieve snmpTargetParamsStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpTargetParamsRowStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMP-TARGET-MIB:SNMP-TARGET-MIB/snmpTargetParamsTable/snmpTargetParamsEntry/snmpTargetParamsRowStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMP-TARGET-MIB:SNMP-TARGET-MIB",
                    "snmpTargetParamsTable",
                    "snmpTargetParamsEntry",
                    "snmpTargetParamsRowStatus"
                  ]
                },
                "description": "Retrieve snmpTargetParamsRowStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "SNMPv2-MIB",
          "description": "Cisco IOS-XE MIB - SNMPv2-MIB\n\nMIB data from `SNMPv2-MIB` module.\n\n**Root containers:** 1 (SNMPv2-MIB)\n**Paths:** 49 | **Descendants:** 48\n\nAll endpoints are read-only (GET).\n\nEndpoints: 49 | Operations: 49",
          "item": [
            {
              "name": "GET Get SNMPv2-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB"
                  ]
                },
                "description": "Retrieve SNMPv2-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get system",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/system",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "system"
                  ]
                },
                "description": "Retrieve system from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/system/sysDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "system",
                    "sysDescr"
                  ]
                },
                "description": "Retrieve sysDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysObjectID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/system/sysObjectID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "system",
                    "sysObjectID"
                  ]
                },
                "description": "Retrieve sysObjectID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/system/sysUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "system",
                    "sysUpTime"
                  ]
                },
                "description": "Retrieve sysUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysContact",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/system/sysContact",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "system",
                    "sysContact"
                  ]
                },
                "description": "Retrieve sysContact from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/system/sysName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "system",
                    "sysName"
                  ]
                },
                "description": "Retrieve sysName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysLocation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/system/sysLocation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "system",
                    "sysLocation"
                  ]
                },
                "description": "Retrieve sysLocation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysServices",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/system/sysServices",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "system",
                    "sysServices"
                  ]
                },
                "description": "Retrieve sysServices from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysORLastChange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/system/sysORLastChange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "system",
                    "sysORLastChange"
                  ]
                },
                "description": "Retrieve sysORLastChange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp"
                  ]
                },
                "description": "Retrieve snmp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInPkts"
                  ]
                },
                "description": "Retrieve snmpInPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpOutPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpOutPkts"
                  ]
                },
                "description": "Retrieve snmpOutPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInBadVersions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInBadVersions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInBadVersions"
                  ]
                },
                "description": "Retrieve snmpInBadVersions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInBadCommunityNames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInBadCommunityNames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInBadCommunityNames"
                  ]
                },
                "description": "Retrieve snmpInBadCommunityNames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInBadCommunityUses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInBadCommunityUses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInBadCommunityUses"
                  ]
                },
                "description": "Retrieve snmpInBadCommunityUses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInASNParseErrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInASNParseErrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInASNParseErrs"
                  ]
                },
                "description": "Retrieve snmpInASNParseErrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInTooBigs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInTooBigs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInTooBigs"
                  ]
                },
                "description": "Retrieve snmpInTooBigs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInNoSuchNames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInNoSuchNames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInNoSuchNames"
                  ]
                },
                "description": "Retrieve snmpInNoSuchNames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInBadValues",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInBadValues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInBadValues"
                  ]
                },
                "description": "Retrieve snmpInBadValues from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInReadOnlys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInReadOnlys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInReadOnlys"
                  ]
                },
                "description": "Retrieve snmpInReadOnlys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInGenErrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInGenErrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInGenErrs"
                  ]
                },
                "description": "Retrieve snmpInGenErrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInTotalReqVars",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInTotalReqVars",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInTotalReqVars"
                  ]
                },
                "description": "Retrieve snmpInTotalReqVars from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInTotalSetVars",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInTotalSetVars",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInTotalSetVars"
                  ]
                },
                "description": "Retrieve snmpInTotalSetVars from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInGetRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInGetRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInGetRequests"
                  ]
                },
                "description": "Retrieve snmpInGetRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInGetNexts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInGetNexts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInGetNexts"
                  ]
                },
                "description": "Retrieve snmpInGetNexts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInSetRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInSetRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInSetRequests"
                  ]
                },
                "description": "Retrieve snmpInSetRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInGetResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInGetResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInGetResponses"
                  ]
                },
                "description": "Retrieve snmpInGetResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpInTraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpInTraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpInTraps"
                  ]
                },
                "description": "Retrieve snmpInTraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutTooBigs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpOutTooBigs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpOutTooBigs"
                  ]
                },
                "description": "Retrieve snmpOutTooBigs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutNoSuchNames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpOutNoSuchNames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpOutNoSuchNames"
                  ]
                },
                "description": "Retrieve snmpOutNoSuchNames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutBadValues",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpOutBadValues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpOutBadValues"
                  ]
                },
                "description": "Retrieve snmpOutBadValues from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutGenErrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpOutGenErrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpOutGenErrs"
                  ]
                },
                "description": "Retrieve snmpOutGenErrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutGetRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpOutGetRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpOutGetRequests"
                  ]
                },
                "description": "Retrieve snmpOutGetRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutGetNexts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpOutGetNexts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpOutGetNexts"
                  ]
                },
                "description": "Retrieve snmpOutGetNexts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutSetRequests",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpOutSetRequests",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpOutSetRequests"
                  ]
                },
                "description": "Retrieve snmpOutSetRequests from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutGetResponses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpOutGetResponses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpOutGetResponses"
                  ]
                },
                "description": "Retrieve snmpOutGetResponses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpOutTraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpOutTraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpOutTraps"
                  ]
                },
                "description": "Retrieve snmpOutTraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpEnableAuthenTraps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpEnableAuthenTraps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpEnableAuthenTraps"
                  ]
                },
                "description": "Retrieve snmpEnableAuthenTraps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpSilentDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpSilentDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpSilentDrops"
                  ]
                },
                "description": "Retrieve snmpSilentDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpProxyDrops",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmp/snmpProxyDrops",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmp",
                    "snmpProxyDrops"
                  ]
                },
                "description": "Retrieve snmpProxyDrops from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpSet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmpSet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmpSet"
                  ]
                },
                "description": "Retrieve snmpSet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpSetSerialNo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/snmpSet/snmpSetSerialNo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "snmpSet",
                    "snmpSetSerialNo"
                  ]
                },
                "description": "Retrieve snmpSetSerialNo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysORTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/sysORTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "sysORTable"
                  ]
                },
                "description": "Retrieve sysORTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysOREntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/sysORTable/sysOREntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "sysORTable",
                    "sysOREntry"
                  ]
                },
                "description": "Retrieve sysOREntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysORIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/sysORTable/sysOREntry/sysORIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "sysORTable",
                    "sysOREntry",
                    "sysORIndex"
                  ]
                },
                "description": "Retrieve sysORIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysORID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/sysORTable/sysOREntry/sysORID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "sysORTable",
                    "sysOREntry",
                    "sysORID"
                  ]
                },
                "description": "Retrieve sysORID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysORDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/sysORTable/sysOREntry/sysORDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "sysORTable",
                    "sysOREntry",
                    "sysORDescr"
                  ]
                },
                "description": "Retrieve sysORDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysORUpTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SNMPv2-MIB:SNMPv2-MIB/sysORTable/sysOREntry/sysORUpTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SNMPv2-MIB:SNMPv2-MIB",
                    "sysORTable",
                    "sysOREntry",
                    "sysORUpTime"
                  ]
                },
                "description": "Retrieve sysORUpTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "SONET-MIB",
          "description": "Cisco IOS-XE MIB - SONET-MIB\n\nMIB data from `SONET-MIB` module.\n\n**Root containers:** 1 (SONET-MIB)\n**Paths:** 132 | **Descendants:** 131\n\nAll endpoints are read-only (GET).\n\nEndpoints: 132 | Operations: 132",
          "item": [
            {
              "name": "GET Get SONET-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB"
                  ]
                },
                "description": "Retrieve SONET-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetMedium",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetMedium",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetMedium"
                  ]
                },
                "description": "Retrieve sonetMedium from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetSESthresholdSet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetMedium/sonetSESthresholdSet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetMedium",
                    "sonetSESthresholdSet"
                  ]
                },
                "description": "Retrieve sonetSESthresholdSet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetMediumTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetMediumTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetMediumTable"
                  ]
                },
                "description": "Retrieve sonetMediumTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetMediumEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetMediumTable/sonetMediumEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetMediumTable",
                    "sonetMediumEntry"
                  ]
                },
                "description": "Retrieve sonetMediumEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetMediumTable/sonetMediumEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetMediumTable",
                    "sonetMediumEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetMediumType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetMediumTable/sonetMediumEntry/sonetMediumType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetMediumTable",
                    "sonetMediumEntry",
                    "sonetMediumType"
                  ]
                },
                "description": "Retrieve sonetMediumType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetMediumTimeElapsed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetMediumTable/sonetMediumEntry/sonetMediumTimeElapsed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetMediumTable",
                    "sonetMediumEntry",
                    "sonetMediumTimeElapsed"
                  ]
                },
                "description": "Retrieve sonetMediumTimeElapsed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetMediumValidIntervals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetMediumTable/sonetMediumEntry/sonetMediumValidIntervals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetMediumTable",
                    "sonetMediumEntry",
                    "sonetMediumValidIntervals"
                  ]
                },
                "description": "Retrieve sonetMediumValidIntervals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetMediumLineCoding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetMediumTable/sonetMediumEntry/sonetMediumLineCoding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetMediumTable",
                    "sonetMediumEntry",
                    "sonetMediumLineCoding"
                  ]
                },
                "description": "Retrieve sonetMediumLineCoding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetMediumLineType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetMediumTable/sonetMediumEntry/sonetMediumLineType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetMediumTable",
                    "sonetMediumEntry",
                    "sonetMediumLineType"
                  ]
                },
                "description": "Retrieve sonetMediumLineType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetMediumCircuitIdentifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetMediumTable/sonetMediumEntry/sonetMediumCircuitIdentifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetMediumTable",
                    "sonetMediumEntry",
                    "sonetMediumCircuitIdentifier"
                  ]
                },
                "description": "Retrieve sonetMediumCircuitIdentifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetMediumInvalidIntervals",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetMediumTable/sonetMediumEntry/sonetMediumInvalidIntervals",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetMediumTable",
                    "sonetMediumEntry",
                    "sonetMediumInvalidIntervals"
                  ]
                },
                "description": "Retrieve sonetMediumInvalidIntervals from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetMediumLoopbackConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetMediumTable/sonetMediumEntry/sonetMediumLoopbackConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetMediumTable",
                    "sonetMediumEntry",
                    "sonetMediumLoopbackConfig"
                  ]
                },
                "description": "Retrieve sonetMediumLoopbackConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetSectionCurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionCurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionCurrentTable"
                  ]
                },
                "description": "Retrieve sonetSectionCurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetSectionCurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionCurrentTable/sonetSectionCurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionCurrentTable",
                    "sonetSectionCurrentEntry"
                  ]
                },
                "description": "Retrieve sonetSectionCurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionCurrentTable/sonetSectionCurrentEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionCurrentTable",
                    "sonetSectionCurrentEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetSectionCurrentStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionCurrentTable/sonetSectionCurrentEntry/sonetSectionCurrentStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionCurrentTable",
                    "sonetSectionCurrentEntry",
                    "sonetSectionCurrentStatus"
                  ]
                },
                "description": "Retrieve sonetSectionCurrentStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetSectionCurrentESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionCurrentTable/sonetSectionCurrentEntry/sonetSectionCurrentESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionCurrentTable",
                    "sonetSectionCurrentEntry",
                    "sonetSectionCurrentESs"
                  ]
                },
                "description": "Retrieve sonetSectionCurrentESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetSectionCurrentSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionCurrentTable/sonetSectionCurrentEntry/sonetSectionCurrentSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionCurrentTable",
                    "sonetSectionCurrentEntry",
                    "sonetSectionCurrentSESs"
                  ]
                },
                "description": "Retrieve sonetSectionCurrentSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetSectionCurrentSEFSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionCurrentTable/sonetSectionCurrentEntry/sonetSectionCurrentSEFSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionCurrentTable",
                    "sonetSectionCurrentEntry",
                    "sonetSectionCurrentSEFSs"
                  ]
                },
                "description": "Retrieve sonetSectionCurrentSEFSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetSectionCurrentCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionCurrentTable/sonetSectionCurrentEntry/sonetSectionCurrentCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionCurrentTable",
                    "sonetSectionCurrentEntry",
                    "sonetSectionCurrentCVs"
                  ]
                },
                "description": "Retrieve sonetSectionCurrentCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetSectionIntervalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionIntervalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionIntervalTable"
                  ]
                },
                "description": "Retrieve sonetSectionIntervalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetSectionIntervalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionIntervalTable/sonetSectionIntervalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionIntervalTable",
                    "sonetSectionIntervalEntry"
                  ]
                },
                "description": "Retrieve sonetSectionIntervalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionIntervalTable/sonetSectionIntervalEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionIntervalTable",
                    "sonetSectionIntervalEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetSectionIntervalNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionIntervalTable/sonetSectionIntervalEntry/sonetSectionIntervalNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionIntervalTable",
                    "sonetSectionIntervalEntry",
                    "sonetSectionIntervalNumber"
                  ]
                },
                "description": "Retrieve sonetSectionIntervalNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetSectionIntervalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionIntervalTable/sonetSectionIntervalEntry/sonetSectionIntervalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionIntervalTable",
                    "sonetSectionIntervalEntry",
                    "sonetSectionIntervalESs"
                  ]
                },
                "description": "Retrieve sonetSectionIntervalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetSectionIntervalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionIntervalTable/sonetSectionIntervalEntry/sonetSectionIntervalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionIntervalTable",
                    "sonetSectionIntervalEntry",
                    "sonetSectionIntervalSESs"
                  ]
                },
                "description": "Retrieve sonetSectionIntervalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetSectionIntervalSEFSs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionIntervalTable/sonetSectionIntervalEntry/sonetSectionIntervalSEFSs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionIntervalTable",
                    "sonetSectionIntervalEntry",
                    "sonetSectionIntervalSEFSs"
                  ]
                },
                "description": "Retrieve sonetSectionIntervalSEFSs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetSectionIntervalCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionIntervalTable/sonetSectionIntervalEntry/sonetSectionIntervalCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionIntervalTable",
                    "sonetSectionIntervalEntry",
                    "sonetSectionIntervalCVs"
                  ]
                },
                "description": "Retrieve sonetSectionIntervalCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetSectionIntervalValidData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetSectionIntervalTable/sonetSectionIntervalEntry/sonetSectionIntervalValidData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetSectionIntervalTable",
                    "sonetSectionIntervalEntry",
                    "sonetSectionIntervalValidData"
                  ]
                },
                "description": "Retrieve sonetSectionIntervalValidData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetLineCurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineCurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineCurrentTable"
                  ]
                },
                "description": "Retrieve sonetLineCurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetLineCurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineCurrentTable/sonetLineCurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineCurrentTable",
                    "sonetLineCurrentEntry"
                  ]
                },
                "description": "Retrieve sonetLineCurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineCurrentTable/sonetLineCurrentEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineCurrentTable",
                    "sonetLineCurrentEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetLineCurrentStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineCurrentTable/sonetLineCurrentEntry/sonetLineCurrentStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineCurrentTable",
                    "sonetLineCurrentEntry",
                    "sonetLineCurrentStatus"
                  ]
                },
                "description": "Retrieve sonetLineCurrentStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetLineCurrentESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineCurrentTable/sonetLineCurrentEntry/sonetLineCurrentESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineCurrentTable",
                    "sonetLineCurrentEntry",
                    "sonetLineCurrentESs"
                  ]
                },
                "description": "Retrieve sonetLineCurrentESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetLineCurrentSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineCurrentTable/sonetLineCurrentEntry/sonetLineCurrentSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineCurrentTable",
                    "sonetLineCurrentEntry",
                    "sonetLineCurrentSESs"
                  ]
                },
                "description": "Retrieve sonetLineCurrentSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetLineCurrentCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineCurrentTable/sonetLineCurrentEntry/sonetLineCurrentCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineCurrentTable",
                    "sonetLineCurrentEntry",
                    "sonetLineCurrentCVs"
                  ]
                },
                "description": "Retrieve sonetLineCurrentCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetLineCurrentUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineCurrentTable/sonetLineCurrentEntry/sonetLineCurrentUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineCurrentTable",
                    "sonetLineCurrentEntry",
                    "sonetLineCurrentUASs"
                  ]
                },
                "description": "Retrieve sonetLineCurrentUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetLineIntervalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineIntervalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineIntervalTable"
                  ]
                },
                "description": "Retrieve sonetLineIntervalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetLineIntervalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineIntervalTable/sonetLineIntervalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineIntervalTable",
                    "sonetLineIntervalEntry"
                  ]
                },
                "description": "Retrieve sonetLineIntervalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineIntervalTable/sonetLineIntervalEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineIntervalTable",
                    "sonetLineIntervalEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetLineIntervalNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineIntervalTable/sonetLineIntervalEntry/sonetLineIntervalNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineIntervalTable",
                    "sonetLineIntervalEntry",
                    "sonetLineIntervalNumber"
                  ]
                },
                "description": "Retrieve sonetLineIntervalNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetLineIntervalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineIntervalTable/sonetLineIntervalEntry/sonetLineIntervalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineIntervalTable",
                    "sonetLineIntervalEntry",
                    "sonetLineIntervalESs"
                  ]
                },
                "description": "Retrieve sonetLineIntervalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetLineIntervalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineIntervalTable/sonetLineIntervalEntry/sonetLineIntervalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineIntervalTable",
                    "sonetLineIntervalEntry",
                    "sonetLineIntervalSESs"
                  ]
                },
                "description": "Retrieve sonetLineIntervalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetLineIntervalCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineIntervalTable/sonetLineIntervalEntry/sonetLineIntervalCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineIntervalTable",
                    "sonetLineIntervalEntry",
                    "sonetLineIntervalCVs"
                  ]
                },
                "description": "Retrieve sonetLineIntervalCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetLineIntervalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineIntervalTable/sonetLineIntervalEntry/sonetLineIntervalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineIntervalTable",
                    "sonetLineIntervalEntry",
                    "sonetLineIntervalUASs"
                  ]
                },
                "description": "Retrieve sonetLineIntervalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetLineIntervalValidData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetLineIntervalTable/sonetLineIntervalEntry/sonetLineIntervalValidData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetLineIntervalTable",
                    "sonetLineIntervalEntry",
                    "sonetLineIntervalValidData"
                  ]
                },
                "description": "Retrieve sonetLineIntervalValidData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndLineCurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndLineCurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndLineCurrentTable"
                  ]
                },
                "description": "Retrieve sonetFarEndLineCurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndLineCurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndLineCurrentTable/sonetFarEndLineCurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndLineCurrentTable",
                    "sonetFarEndLineCurrentEntry"
                  ]
                },
                "description": "Retrieve sonetFarEndLineCurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndLineCurrentTable/sonetFarEndLineCurrentEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndLineCurrentTable",
                    "sonetFarEndLineCurrentEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndLineCurrentESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndLineCurrentTable/sonetFarEndLineCurrentEntry/sonetFarEndLineCurrentESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndLineCurrentTable",
                    "sonetFarEndLineCurrentEntry",
                    "sonetFarEndLineCurrentESs"
                  ]
                },
                "description": "Retrieve sonetFarEndLineCurrentESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndLineCurrentSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndLineCurrentTable/sonetFarEndLineCurrentEntry/sonetFarEndLineCurrentSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndLineCurrentTable",
                    "sonetFarEndLineCurrentEntry",
                    "sonetFarEndLineCurrentSESs"
                  ]
                },
                "description": "Retrieve sonetFarEndLineCurrentSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndLineCurrentCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndLineCurrentTable/sonetFarEndLineCurrentEntry/sonetFarEndLineCurrentCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndLineCurrentTable",
                    "sonetFarEndLineCurrentEntry",
                    "sonetFarEndLineCurrentCVs"
                  ]
                },
                "description": "Retrieve sonetFarEndLineCurrentCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndLineCurrentUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndLineCurrentTable/sonetFarEndLineCurrentEntry/sonetFarEndLineCurrentUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndLineCurrentTable",
                    "sonetFarEndLineCurrentEntry",
                    "sonetFarEndLineCurrentUASs"
                  ]
                },
                "description": "Retrieve sonetFarEndLineCurrentUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndLineIntervalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndLineIntervalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndLineIntervalTable"
                  ]
                },
                "description": "Retrieve sonetFarEndLineIntervalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndLineIntervalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndLineIntervalTable/sonetFarEndLineIntervalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndLineIntervalTable",
                    "sonetFarEndLineIntervalEntry"
                  ]
                },
                "description": "Retrieve sonetFarEndLineIntervalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndLineIntervalTable/sonetFarEndLineIntervalEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndLineIntervalTable",
                    "sonetFarEndLineIntervalEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndLineIntervalNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndLineIntervalTable/sonetFarEndLineIntervalEntry/sonetFarEndLineIntervalNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndLineIntervalTable",
                    "sonetFarEndLineIntervalEntry",
                    "sonetFarEndLineIntervalNumber"
                  ]
                },
                "description": "Retrieve sonetFarEndLineIntervalNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndLineIntervalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndLineIntervalTable/sonetFarEndLineIntervalEntry/sonetFarEndLineIntervalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndLineIntervalTable",
                    "sonetFarEndLineIntervalEntry",
                    "sonetFarEndLineIntervalESs"
                  ]
                },
                "description": "Retrieve sonetFarEndLineIntervalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndLineIntervalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndLineIntervalTable/sonetFarEndLineIntervalEntry/sonetFarEndLineIntervalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndLineIntervalTable",
                    "sonetFarEndLineIntervalEntry",
                    "sonetFarEndLineIntervalSESs"
                  ]
                },
                "description": "Retrieve sonetFarEndLineIntervalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndLineIntervalCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndLineIntervalTable/sonetFarEndLineIntervalEntry/sonetFarEndLineIntervalCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndLineIntervalTable",
                    "sonetFarEndLineIntervalEntry",
                    "sonetFarEndLineIntervalCVs"
                  ]
                },
                "description": "Retrieve sonetFarEndLineIntervalCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndLineIntervalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndLineIntervalTable/sonetFarEndLineIntervalEntry/sonetFarEndLineIntervalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndLineIntervalTable",
                    "sonetFarEndLineIntervalEntry",
                    "sonetFarEndLineIntervalUASs"
                  ]
                },
                "description": "Retrieve sonetFarEndLineIntervalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndLineIntervalValidData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndLineIntervalTable/sonetFarEndLineIntervalEntry/sonetFarEndLineIntervalValidData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndLineIntervalTable",
                    "sonetFarEndLineIntervalEntry",
                    "sonetFarEndLineIntervalValidData"
                  ]
                },
                "description": "Retrieve sonetFarEndLineIntervalValidData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetPathCurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathCurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathCurrentTable"
                  ]
                },
                "description": "Retrieve sonetPathCurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetPathCurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathCurrentTable/sonetPathCurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathCurrentTable",
                    "sonetPathCurrentEntry"
                  ]
                },
                "description": "Retrieve sonetPathCurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathCurrentTable/sonetPathCurrentEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathCurrentTable",
                    "sonetPathCurrentEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetPathCurrentWidth",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathCurrentTable/sonetPathCurrentEntry/sonetPathCurrentWidth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathCurrentTable",
                    "sonetPathCurrentEntry",
                    "sonetPathCurrentWidth"
                  ]
                },
                "description": "Retrieve sonetPathCurrentWidth from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetPathCurrentStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathCurrentTable/sonetPathCurrentEntry/sonetPathCurrentStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathCurrentTable",
                    "sonetPathCurrentEntry",
                    "sonetPathCurrentStatus"
                  ]
                },
                "description": "Retrieve sonetPathCurrentStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetPathCurrentESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathCurrentTable/sonetPathCurrentEntry/sonetPathCurrentESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathCurrentTable",
                    "sonetPathCurrentEntry",
                    "sonetPathCurrentESs"
                  ]
                },
                "description": "Retrieve sonetPathCurrentESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetPathCurrentSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathCurrentTable/sonetPathCurrentEntry/sonetPathCurrentSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathCurrentTable",
                    "sonetPathCurrentEntry",
                    "sonetPathCurrentSESs"
                  ]
                },
                "description": "Retrieve sonetPathCurrentSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetPathCurrentCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathCurrentTable/sonetPathCurrentEntry/sonetPathCurrentCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathCurrentTable",
                    "sonetPathCurrentEntry",
                    "sonetPathCurrentCVs"
                  ]
                },
                "description": "Retrieve sonetPathCurrentCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetPathCurrentUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathCurrentTable/sonetPathCurrentEntry/sonetPathCurrentUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathCurrentTable",
                    "sonetPathCurrentEntry",
                    "sonetPathCurrentUASs"
                  ]
                },
                "description": "Retrieve sonetPathCurrentUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetPathIntervalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathIntervalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathIntervalTable"
                  ]
                },
                "description": "Retrieve sonetPathIntervalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetPathIntervalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathIntervalTable/sonetPathIntervalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathIntervalTable",
                    "sonetPathIntervalEntry"
                  ]
                },
                "description": "Retrieve sonetPathIntervalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathIntervalTable/sonetPathIntervalEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathIntervalTable",
                    "sonetPathIntervalEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetPathIntervalNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathIntervalTable/sonetPathIntervalEntry/sonetPathIntervalNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathIntervalTable",
                    "sonetPathIntervalEntry",
                    "sonetPathIntervalNumber"
                  ]
                },
                "description": "Retrieve sonetPathIntervalNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetPathIntervalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathIntervalTable/sonetPathIntervalEntry/sonetPathIntervalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathIntervalTable",
                    "sonetPathIntervalEntry",
                    "sonetPathIntervalESs"
                  ]
                },
                "description": "Retrieve sonetPathIntervalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetPathIntervalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathIntervalTable/sonetPathIntervalEntry/sonetPathIntervalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathIntervalTable",
                    "sonetPathIntervalEntry",
                    "sonetPathIntervalSESs"
                  ]
                },
                "description": "Retrieve sonetPathIntervalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetPathIntervalCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathIntervalTable/sonetPathIntervalEntry/sonetPathIntervalCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathIntervalTable",
                    "sonetPathIntervalEntry",
                    "sonetPathIntervalCVs"
                  ]
                },
                "description": "Retrieve sonetPathIntervalCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetPathIntervalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathIntervalTable/sonetPathIntervalEntry/sonetPathIntervalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathIntervalTable",
                    "sonetPathIntervalEntry",
                    "sonetPathIntervalUASs"
                  ]
                },
                "description": "Retrieve sonetPathIntervalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetPathIntervalValidData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetPathIntervalTable/sonetPathIntervalEntry/sonetPathIntervalValidData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetPathIntervalTable",
                    "sonetPathIntervalEntry",
                    "sonetPathIntervalValidData"
                  ]
                },
                "description": "Retrieve sonetPathIntervalValidData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndPathCurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndPathCurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndPathCurrentTable"
                  ]
                },
                "description": "Retrieve sonetFarEndPathCurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndPathCurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndPathCurrentTable/sonetFarEndPathCurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndPathCurrentTable",
                    "sonetFarEndPathCurrentEntry"
                  ]
                },
                "description": "Retrieve sonetFarEndPathCurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndPathCurrentTable/sonetFarEndPathCurrentEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndPathCurrentTable",
                    "sonetFarEndPathCurrentEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndPathCurrentESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndPathCurrentTable/sonetFarEndPathCurrentEntry/sonetFarEndPathCurrentESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndPathCurrentTable",
                    "sonetFarEndPathCurrentEntry",
                    "sonetFarEndPathCurrentESs"
                  ]
                },
                "description": "Retrieve sonetFarEndPathCurrentESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndPathCurrentSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndPathCurrentTable/sonetFarEndPathCurrentEntry/sonetFarEndPathCurrentSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndPathCurrentTable",
                    "sonetFarEndPathCurrentEntry",
                    "sonetFarEndPathCurrentSESs"
                  ]
                },
                "description": "Retrieve sonetFarEndPathCurrentSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndPathCurrentCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndPathCurrentTable/sonetFarEndPathCurrentEntry/sonetFarEndPathCurrentCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndPathCurrentTable",
                    "sonetFarEndPathCurrentEntry",
                    "sonetFarEndPathCurrentCVs"
                  ]
                },
                "description": "Retrieve sonetFarEndPathCurrentCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndPathCurrentUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndPathCurrentTable/sonetFarEndPathCurrentEntry/sonetFarEndPathCurrentUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndPathCurrentTable",
                    "sonetFarEndPathCurrentEntry",
                    "sonetFarEndPathCurrentUASs"
                  ]
                },
                "description": "Retrieve sonetFarEndPathCurrentUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndPathIntervalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndPathIntervalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndPathIntervalTable"
                  ]
                },
                "description": "Retrieve sonetFarEndPathIntervalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndPathIntervalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndPathIntervalTable/sonetFarEndPathIntervalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndPathIntervalTable",
                    "sonetFarEndPathIntervalEntry"
                  ]
                },
                "description": "Retrieve sonetFarEndPathIntervalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndPathIntervalTable/sonetFarEndPathIntervalEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndPathIntervalTable",
                    "sonetFarEndPathIntervalEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndPathIntervalNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndPathIntervalTable/sonetFarEndPathIntervalEntry/sonetFarEndPathIntervalNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndPathIntervalTable",
                    "sonetFarEndPathIntervalEntry",
                    "sonetFarEndPathIntervalNumber"
                  ]
                },
                "description": "Retrieve sonetFarEndPathIntervalNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndPathIntervalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndPathIntervalTable/sonetFarEndPathIntervalEntry/sonetFarEndPathIntervalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndPathIntervalTable",
                    "sonetFarEndPathIntervalEntry",
                    "sonetFarEndPathIntervalESs"
                  ]
                },
                "description": "Retrieve sonetFarEndPathIntervalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndPathIntervalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndPathIntervalTable/sonetFarEndPathIntervalEntry/sonetFarEndPathIntervalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndPathIntervalTable",
                    "sonetFarEndPathIntervalEntry",
                    "sonetFarEndPathIntervalSESs"
                  ]
                },
                "description": "Retrieve sonetFarEndPathIntervalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndPathIntervalCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndPathIntervalTable/sonetFarEndPathIntervalEntry/sonetFarEndPathIntervalCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndPathIntervalTable",
                    "sonetFarEndPathIntervalEntry",
                    "sonetFarEndPathIntervalCVs"
                  ]
                },
                "description": "Retrieve sonetFarEndPathIntervalCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndPathIntervalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndPathIntervalTable/sonetFarEndPathIntervalEntry/sonetFarEndPathIntervalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndPathIntervalTable",
                    "sonetFarEndPathIntervalEntry",
                    "sonetFarEndPathIntervalUASs"
                  ]
                },
                "description": "Retrieve sonetFarEndPathIntervalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndPathIntervalValidData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndPathIntervalTable/sonetFarEndPathIntervalEntry/sonetFarEndPathIntervalValidData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndPathIntervalTable",
                    "sonetFarEndPathIntervalEntry",
                    "sonetFarEndPathIntervalValidData"
                  ]
                },
                "description": "Retrieve sonetFarEndPathIntervalValidData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetVTCurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTCurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTCurrentTable"
                  ]
                },
                "description": "Retrieve sonetVTCurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetVTCurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTCurrentTable/sonetVTCurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTCurrentTable",
                    "sonetVTCurrentEntry"
                  ]
                },
                "description": "Retrieve sonetVTCurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTCurrentTable/sonetVTCurrentEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTCurrentTable",
                    "sonetVTCurrentEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetVTCurrentWidth",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTCurrentTable/sonetVTCurrentEntry/sonetVTCurrentWidth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTCurrentTable",
                    "sonetVTCurrentEntry",
                    "sonetVTCurrentWidth"
                  ]
                },
                "description": "Retrieve sonetVTCurrentWidth from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetVTCurrentStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTCurrentTable/sonetVTCurrentEntry/sonetVTCurrentStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTCurrentTable",
                    "sonetVTCurrentEntry",
                    "sonetVTCurrentStatus"
                  ]
                },
                "description": "Retrieve sonetVTCurrentStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetVTCurrentESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTCurrentTable/sonetVTCurrentEntry/sonetVTCurrentESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTCurrentTable",
                    "sonetVTCurrentEntry",
                    "sonetVTCurrentESs"
                  ]
                },
                "description": "Retrieve sonetVTCurrentESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetVTCurrentSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTCurrentTable/sonetVTCurrentEntry/sonetVTCurrentSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTCurrentTable",
                    "sonetVTCurrentEntry",
                    "sonetVTCurrentSESs"
                  ]
                },
                "description": "Retrieve sonetVTCurrentSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetVTCurrentCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTCurrentTable/sonetVTCurrentEntry/sonetVTCurrentCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTCurrentTable",
                    "sonetVTCurrentEntry",
                    "sonetVTCurrentCVs"
                  ]
                },
                "description": "Retrieve sonetVTCurrentCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetVTCurrentUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTCurrentTable/sonetVTCurrentEntry/sonetVTCurrentUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTCurrentTable",
                    "sonetVTCurrentEntry",
                    "sonetVTCurrentUASs"
                  ]
                },
                "description": "Retrieve sonetVTCurrentUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetVTIntervalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTIntervalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTIntervalTable"
                  ]
                },
                "description": "Retrieve sonetVTIntervalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetVTIntervalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTIntervalTable/sonetVTIntervalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTIntervalTable",
                    "sonetVTIntervalEntry"
                  ]
                },
                "description": "Retrieve sonetVTIntervalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTIntervalTable/sonetVTIntervalEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTIntervalTable",
                    "sonetVTIntervalEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetVTIntervalNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTIntervalTable/sonetVTIntervalEntry/sonetVTIntervalNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTIntervalTable",
                    "sonetVTIntervalEntry",
                    "sonetVTIntervalNumber"
                  ]
                },
                "description": "Retrieve sonetVTIntervalNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetVTIntervalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTIntervalTable/sonetVTIntervalEntry/sonetVTIntervalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTIntervalTable",
                    "sonetVTIntervalEntry",
                    "sonetVTIntervalESs"
                  ]
                },
                "description": "Retrieve sonetVTIntervalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetVTIntervalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTIntervalTable/sonetVTIntervalEntry/sonetVTIntervalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTIntervalTable",
                    "sonetVTIntervalEntry",
                    "sonetVTIntervalSESs"
                  ]
                },
                "description": "Retrieve sonetVTIntervalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetVTIntervalCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTIntervalTable/sonetVTIntervalEntry/sonetVTIntervalCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTIntervalTable",
                    "sonetVTIntervalEntry",
                    "sonetVTIntervalCVs"
                  ]
                },
                "description": "Retrieve sonetVTIntervalCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetVTIntervalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTIntervalTable/sonetVTIntervalEntry/sonetVTIntervalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTIntervalTable",
                    "sonetVTIntervalEntry",
                    "sonetVTIntervalUASs"
                  ]
                },
                "description": "Retrieve sonetVTIntervalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetVTIntervalValidData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetVTIntervalTable/sonetVTIntervalEntry/sonetVTIntervalValidData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetVTIntervalTable",
                    "sonetVTIntervalEntry",
                    "sonetVTIntervalValidData"
                  ]
                },
                "description": "Retrieve sonetVTIntervalValidData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndVTCurrentTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndVTCurrentTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndVTCurrentTable"
                  ]
                },
                "description": "Retrieve sonetFarEndVTCurrentTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndVTCurrentEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndVTCurrentTable/sonetFarEndVTCurrentEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndVTCurrentTable",
                    "sonetFarEndVTCurrentEntry"
                  ]
                },
                "description": "Retrieve sonetFarEndVTCurrentEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndVTCurrentTable/sonetFarEndVTCurrentEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndVTCurrentTable",
                    "sonetFarEndVTCurrentEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndVTCurrentESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndVTCurrentTable/sonetFarEndVTCurrentEntry/sonetFarEndVTCurrentESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndVTCurrentTable",
                    "sonetFarEndVTCurrentEntry",
                    "sonetFarEndVTCurrentESs"
                  ]
                },
                "description": "Retrieve sonetFarEndVTCurrentESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndVTCurrentSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndVTCurrentTable/sonetFarEndVTCurrentEntry/sonetFarEndVTCurrentSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndVTCurrentTable",
                    "sonetFarEndVTCurrentEntry",
                    "sonetFarEndVTCurrentSESs"
                  ]
                },
                "description": "Retrieve sonetFarEndVTCurrentSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndVTCurrentCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndVTCurrentTable/sonetFarEndVTCurrentEntry/sonetFarEndVTCurrentCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndVTCurrentTable",
                    "sonetFarEndVTCurrentEntry",
                    "sonetFarEndVTCurrentCVs"
                  ]
                },
                "description": "Retrieve sonetFarEndVTCurrentCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndVTCurrentUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndVTCurrentTable/sonetFarEndVTCurrentEntry/sonetFarEndVTCurrentUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndVTCurrentTable",
                    "sonetFarEndVTCurrentEntry",
                    "sonetFarEndVTCurrentUASs"
                  ]
                },
                "description": "Retrieve sonetFarEndVTCurrentUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndVTIntervalTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndVTIntervalTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndVTIntervalTable"
                  ]
                },
                "description": "Retrieve sonetFarEndVTIntervalTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndVTIntervalEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndVTIntervalTable/sonetFarEndVTIntervalEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndVTIntervalTable",
                    "sonetFarEndVTIntervalEntry"
                  ]
                },
                "description": "Retrieve sonetFarEndVTIntervalEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndVTIntervalTable/sonetFarEndVTIntervalEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndVTIntervalTable",
                    "sonetFarEndVTIntervalEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndVTIntervalNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndVTIntervalTable/sonetFarEndVTIntervalEntry/sonetFarEndVTIntervalNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndVTIntervalTable",
                    "sonetFarEndVTIntervalEntry",
                    "sonetFarEndVTIntervalNumber"
                  ]
                },
                "description": "Retrieve sonetFarEndVTIntervalNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndVTIntervalESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndVTIntervalTable/sonetFarEndVTIntervalEntry/sonetFarEndVTIntervalESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndVTIntervalTable",
                    "sonetFarEndVTIntervalEntry",
                    "sonetFarEndVTIntervalESs"
                  ]
                },
                "description": "Retrieve sonetFarEndVTIntervalESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndVTIntervalSESs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndVTIntervalTable/sonetFarEndVTIntervalEntry/sonetFarEndVTIntervalSESs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndVTIntervalTable",
                    "sonetFarEndVTIntervalEntry",
                    "sonetFarEndVTIntervalSESs"
                  ]
                },
                "description": "Retrieve sonetFarEndVTIntervalSESs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndVTIntervalCVs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndVTIntervalTable/sonetFarEndVTIntervalEntry/sonetFarEndVTIntervalCVs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndVTIntervalTable",
                    "sonetFarEndVTIntervalEntry",
                    "sonetFarEndVTIntervalCVs"
                  ]
                },
                "description": "Retrieve sonetFarEndVTIntervalCVs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndVTIntervalUASs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndVTIntervalTable/sonetFarEndVTIntervalEntry/sonetFarEndVTIntervalUASs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndVTIntervalTable",
                    "sonetFarEndVTIntervalEntry",
                    "sonetFarEndVTIntervalUASs"
                  ]
                },
                "description": "Retrieve sonetFarEndVTIntervalUASs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sonetFarEndVTIntervalValidData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/SONET-MIB:SONET-MIB/sonetFarEndVTIntervalTable/sonetFarEndVTIntervalEntry/sonetFarEndVTIntervalValidData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "SONET-MIB:SONET-MIB",
                    "sonetFarEndVTIntervalTable",
                    "sonetFarEndVTIntervalEntry",
                    "sonetFarEndVTIntervalValidData"
                  ]
                },
                "description": "Retrieve sonetFarEndVTIntervalValidData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "TCP-MIB",
          "description": "Cisco IOS-XE MIB - TCP-MIB\n\nMIB data from `TCP-MIB` module.\n\n**Root containers:** 1 (TCP-MIB)\n**Paths:** 34 | **Descendants:** 33\n\nAll endpoints are read-only (GET).\n\nEndpoints: 34 | Operations: 34",
          "item": [
            {
              "name": "GET Get TCP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB"
                  ]
                },
                "description": "Retrieve TCP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp"
                  ]
                },
                "description": "Retrieve tcp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpRtoAlgorithm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp/tcpRtoAlgorithm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp",
                    "tcpRtoAlgorithm"
                  ]
                },
                "description": "Retrieve tcpRtoAlgorithm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpRtoMin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp/tcpRtoMin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp",
                    "tcpRtoMin"
                  ]
                },
                "description": "Retrieve tcpRtoMin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpRtoMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp/tcpRtoMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp",
                    "tcpRtoMax"
                  ]
                },
                "description": "Retrieve tcpRtoMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpMaxConn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp/tcpMaxConn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp",
                    "tcpMaxConn"
                  ]
                },
                "description": "Retrieve tcpMaxConn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpActiveOpens",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp/tcpActiveOpens",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp",
                    "tcpActiveOpens"
                  ]
                },
                "description": "Retrieve tcpActiveOpens from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpPassiveOpens",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp/tcpPassiveOpens",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp",
                    "tcpPassiveOpens"
                  ]
                },
                "description": "Retrieve tcpPassiveOpens from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpAttemptFails",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp/tcpAttemptFails",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp",
                    "tcpAttemptFails"
                  ]
                },
                "description": "Retrieve tcpAttemptFails from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpEstabResets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp/tcpEstabResets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp",
                    "tcpEstabResets"
                  ]
                },
                "description": "Retrieve tcpEstabResets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpCurrEstab",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp/tcpCurrEstab",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp",
                    "tcpCurrEstab"
                  ]
                },
                "description": "Retrieve tcpCurrEstab from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpInSegs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp/tcpInSegs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp",
                    "tcpInSegs"
                  ]
                },
                "description": "Retrieve tcpInSegs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpOutSegs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp/tcpOutSegs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp",
                    "tcpOutSegs"
                  ]
                },
                "description": "Retrieve tcpOutSegs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpRetransSegs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp/tcpRetransSegs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp",
                    "tcpRetransSegs"
                  ]
                },
                "description": "Retrieve tcpRetransSegs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpInErrs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp/tcpInErrs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp",
                    "tcpInErrs"
                  ]
                },
                "description": "Retrieve tcpInErrs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpOutRsts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp/tcpOutRsts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp",
                    "tcpOutRsts"
                  ]
                },
                "description": "Retrieve tcpOutRsts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpHCInSegs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp/tcpHCInSegs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp",
                    "tcpHCInSegs"
                  ]
                },
                "description": "Retrieve tcpHCInSegs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpHCOutSegs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcp/tcpHCOutSegs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcp",
                    "tcpHCOutSegs"
                  ]
                },
                "description": "Retrieve tcpHCOutSegs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnectionTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcpConnectionTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcpConnectionTable"
                  ]
                },
                "description": "Retrieve tcpConnectionTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnectionEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcpConnectionTable/tcpConnectionEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcpConnectionTable",
                    "tcpConnectionEntry"
                  ]
                },
                "description": "Retrieve tcpConnectionEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnectionLocalAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcpConnectionTable/tcpConnectionEntry/tcpConnectionLocalAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcpConnectionTable",
                    "tcpConnectionEntry",
                    "tcpConnectionLocalAddressType"
                  ]
                },
                "description": "Retrieve tcpConnectionLocalAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnectionLocalAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcpConnectionTable/tcpConnectionEntry/tcpConnectionLocalAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcpConnectionTable",
                    "tcpConnectionEntry",
                    "tcpConnectionLocalAddress"
                  ]
                },
                "description": "Retrieve tcpConnectionLocalAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnectionLocalPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcpConnectionTable/tcpConnectionEntry/tcpConnectionLocalPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcpConnectionTable",
                    "tcpConnectionEntry",
                    "tcpConnectionLocalPort"
                  ]
                },
                "description": "Retrieve tcpConnectionLocalPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnectionRemAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcpConnectionTable/tcpConnectionEntry/tcpConnectionRemAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcpConnectionTable",
                    "tcpConnectionEntry",
                    "tcpConnectionRemAddressType"
                  ]
                },
                "description": "Retrieve tcpConnectionRemAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnectionRemAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcpConnectionTable/tcpConnectionEntry/tcpConnectionRemAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcpConnectionTable",
                    "tcpConnectionEntry",
                    "tcpConnectionRemAddress"
                  ]
                },
                "description": "Retrieve tcpConnectionRemAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnectionRemPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcpConnectionTable/tcpConnectionEntry/tcpConnectionRemPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcpConnectionTable",
                    "tcpConnectionEntry",
                    "tcpConnectionRemPort"
                  ]
                },
                "description": "Retrieve tcpConnectionRemPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnectionState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcpConnectionTable/tcpConnectionEntry/tcpConnectionState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcpConnectionTable",
                    "tcpConnectionEntry",
                    "tcpConnectionState"
                  ]
                },
                "description": "Retrieve tcpConnectionState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpConnectionProcess",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcpConnectionTable/tcpConnectionEntry/tcpConnectionProcess",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcpConnectionTable",
                    "tcpConnectionEntry",
                    "tcpConnectionProcess"
                  ]
                },
                "description": "Retrieve tcpConnectionProcess from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpListenerTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcpListenerTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcpListenerTable"
                  ]
                },
                "description": "Retrieve tcpListenerTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpListenerEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcpListenerTable/tcpListenerEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcpListenerTable",
                    "tcpListenerEntry"
                  ]
                },
                "description": "Retrieve tcpListenerEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpListenerLocalAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcpListenerTable/tcpListenerEntry/tcpListenerLocalAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcpListenerTable",
                    "tcpListenerEntry",
                    "tcpListenerLocalAddressType"
                  ]
                },
                "description": "Retrieve tcpListenerLocalAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpListenerLocalAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcpListenerTable/tcpListenerEntry/tcpListenerLocalAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcpListenerTable",
                    "tcpListenerEntry",
                    "tcpListenerLocalAddress"
                  ]
                },
                "description": "Retrieve tcpListenerLocalAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpListenerLocalPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcpListenerTable/tcpListenerEntry/tcpListenerLocalPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcpListenerTable",
                    "tcpListenerEntry",
                    "tcpListenerLocalPort"
                  ]
                },
                "description": "Retrieve tcpListenerLocalPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcpListenerProcess",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TCP-MIB:TCP-MIB/tcpListenerTable/tcpListenerEntry/tcpListenerProcess",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TCP-MIB:TCP-MIB",
                    "tcpListenerTable",
                    "tcpListenerEntry",
                    "tcpListenerProcess"
                  ]
                },
                "description": "Retrieve tcpListenerProcess from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "TOKEN-RING-RMON-MIB",
          "description": "Cisco IOS-XE MIB - TOKEN-RING-RMON-MIB\n\nMIB data from `TOKEN-RING-RMON-MIB` module.\n\n**Root containers:** 1 (TOKEN-RING-RMON-MIB)\n**Paths:** 182 | **Descendants:** 181\n\nAll endpoints are read-only (GET).\n\nEndpoints: 182 | Operations: 182",
          "item": [
            {
              "name": "GET Get TOKEN-RING-RMON-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB"
                  ]
                },
                "description": "Retrieve TOKEN-RING-RMON-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsIndex"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsDataSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsDataSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsDataSource"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsDataSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsDropEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsDropEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsDropEvents"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsDropEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsMacOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsMacOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsMacOctets"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsMacOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsMacPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsMacPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsMacPkts"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsMacPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsRingPurgeEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsRingPurgeEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsRingPurgeEvents"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsRingPurgeEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsRingPurgePkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsRingPurgePkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsRingPurgePkts"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsRingPurgePkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsBeaconEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsBeaconEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsBeaconEvents"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsBeaconEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsBeaconTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsBeaconTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsBeaconTime"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsBeaconTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsBeaconPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsBeaconPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsBeaconPkts"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsBeaconPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsClaimTokenEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsClaimTokenEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsClaimTokenEvents"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsClaimTokenEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsClaimTokenPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsClaimTokenPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsClaimTokenPkts"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsClaimTokenPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsNAUNChanges",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsNAUNChanges",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsNAUNChanges"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsNAUNChanges from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsLineErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsLineErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsLineErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsLineErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsInternalErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsInternalErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsInternalErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsInternalErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsBurstErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsBurstErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsBurstErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsBurstErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsACErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsACErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsACErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsACErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsAbortErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsAbortErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsAbortErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsAbortErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsLostFrameErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsLostFrameErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsLostFrameErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsLostFrameErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsCongestionErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsCongestionErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsCongestionErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsCongestionErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsFrameCopiedErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsFrameCopiedErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsFrameCopiedErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsFrameCopiedErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsFrequencyErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsFrequencyErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsFrequencyErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsFrequencyErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsTokenErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsTokenErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsTokenErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsTokenErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsSoftErrorReports",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsSoftErrorReports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsSoftErrorReports"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsSoftErrorReports from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsRingPollEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsRingPollEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsRingPollEvents"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsRingPollEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsOwner"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLStatsStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLStatsTable/tokenRingMLStatsEntry/tokenRingMLStatsStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLStatsTable",
                    "tokenRingMLStatsEntry",
                    "tokenRingMLStatsStatus"
                  ]
                },
                "description": "Retrieve tokenRingMLStatsStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable"
                  ]
                },
                "description": "Retrieve tokenRingPStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry"
                  ]
                },
                "description": "Retrieve tokenRingPStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsIndex"
                  ]
                },
                "description": "Retrieve tokenRingPStatsIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDataSource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsDataSource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsDataSource"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDataSource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDropEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsDropEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsDropEvents"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDropEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDataOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsDataOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsDataOctets"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDataOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDataPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsDataPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsDataPkts"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDataPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDataBroadcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsDataBroadcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsDataBroadcastPkts"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDataBroadcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDataMulticastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsDataMulticastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsDataMulticastPkts"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDataMulticastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDataPkts18to63Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsDataPkts18to63Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsDataPkts18to63Octets"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDataPkts18to63Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDataPkts64to127Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsDataPkts64to127Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsDataPkts64to127Octets"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDataPkts64to127Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDataPkts128to255Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsDataPkts128to255Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsDataPkts128to255Octets"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDataPkts128to255Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDataPkts256to511Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsDataPkts256to511Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsDataPkts256to511Octets"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDataPkts256to511Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDataPkts512to1023Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsDataPkts512to1023Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsDataPkts512to1023Octets"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDataPkts512to1023Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDataPkts1024to2047Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsDataPkts1024to2047Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsDataPkts1024to2047Octets"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDataPkts1024to2047Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDataPkts2048to4095Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsDataPkts2048to4095Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsDataPkts2048to4095Octets"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDataPkts2048to4095Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDataPkts4096to8191Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsDataPkts4096to8191Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsDataPkts4096to8191Octets"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDataPkts4096to8191Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDataPkts8192to18000Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsDataPkts8192to18000Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsDataPkts8192to18000Octets"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDataPkts8192to18000Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsDataPktsGreaterThan18000Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsDataPktsGreaterThan18000Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsDataPktsGreaterThan18000Octets"
                  ]
                },
                "description": "Retrieve tokenRingPStatsDataPktsGreaterThan18000Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsOwner"
                  ]
                },
                "description": "Retrieve tokenRingPStatsOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPStatsStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPStatsTable/tokenRingPStatsEntry/tokenRingPStatsStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPStatsTable",
                    "tokenRingPStatsEntry",
                    "tokenRingPStatsStatus"
                  ]
                },
                "description": "Retrieve tokenRingPStatsStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryIndex"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistorySampleIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistorySampleIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistorySampleIndex"
                  ]
                },
                "description": "Retrieve tokenRingMLHistorySampleIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryIntervalStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryIntervalStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryIntervalStart"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryIntervalStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryDropEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryDropEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryDropEvents"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryDropEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryMacOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryMacOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryMacOctets"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryMacOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryMacPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryMacPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryMacPkts"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryMacPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryRingPurgeEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryRingPurgeEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryRingPurgeEvents"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryRingPurgeEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryRingPurgePkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryRingPurgePkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryRingPurgePkts"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryRingPurgePkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryBeaconEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryBeaconEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryBeaconEvents"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryBeaconEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryBeaconTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryBeaconTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryBeaconTime"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryBeaconTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryBeaconPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryBeaconPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryBeaconPkts"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryBeaconPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryClaimTokenEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryClaimTokenEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryClaimTokenEvents"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryClaimTokenEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryClaimTokenPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryClaimTokenPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryClaimTokenPkts"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryClaimTokenPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryNAUNChanges",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryNAUNChanges",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryNAUNChanges"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryNAUNChanges from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryLineErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryLineErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryLineErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryLineErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryInternalErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryInternalErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryInternalErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryInternalErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryBurstErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryBurstErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryBurstErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryBurstErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryACErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryACErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryACErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryACErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryAbortErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryAbortErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryAbortErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryAbortErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryLostFrameErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryLostFrameErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryLostFrameErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryLostFrameErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryCongestionErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryCongestionErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryCongestionErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryCongestionErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryFrameCopiedErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryFrameCopiedErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryFrameCopiedErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryFrameCopiedErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryFrequencyErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryFrequencyErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryFrequencyErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryFrequencyErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryTokenErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryTokenErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryTokenErrors"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryTokenErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistorySoftErrorReports",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistorySoftErrorReports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistorySoftErrorReports"
                  ]
                },
                "description": "Retrieve tokenRingMLHistorySoftErrorReports from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryRingPollEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryRingPollEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryRingPollEvents"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryRingPollEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingMLHistoryActiveStations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingMLHistoryTable/tokenRingMLHistoryEntry/tokenRingMLHistoryActiveStations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingMLHistoryTable",
                    "tokenRingMLHistoryEntry",
                    "tokenRingMLHistoryActiveStations"
                  ]
                },
                "description": "Retrieve tokenRingMLHistoryActiveStations from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryIndex"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistorySampleIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistorySampleIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistorySampleIndex"
                  ]
                },
                "description": "Retrieve tokenRingPHistorySampleIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryIntervalStart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryIntervalStart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryIntervalStart"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryIntervalStart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryDropEvents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryDropEvents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryDropEvents"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryDropEvents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryDataOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryDataOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryDataOctets"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryDataOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryDataPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryDataPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryDataPkts"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryDataPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryDataBroadcastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryDataBroadcastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryDataBroadcastPkts"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryDataBroadcastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryDataMulticastPkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryDataMulticastPkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryDataMulticastPkts"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryDataMulticastPkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryDataPkts18to63Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryDataPkts18to63Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryDataPkts18to63Octets"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryDataPkts18to63Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryDataPkts64to127Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryDataPkts64to127Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryDataPkts64to127Octets"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryDataPkts64to127Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryDataPkts128to255Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryDataPkts128to255Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryDataPkts128to255Octets"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryDataPkts128to255Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryDataPkts256to511Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryDataPkts256to511Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryDataPkts256to511Octets"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryDataPkts256to511Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryDataPkts512to1023Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryDataPkts512to1023Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryDataPkts512to1023Octets"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryDataPkts512to1023Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryDataPkts1024to2047Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryDataPkts1024to2047Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryDataPkts1024to2047Octets"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryDataPkts1024to2047Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryDataPkts2048to4095Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryDataPkts2048to4095Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryDataPkts2048to4095Octets"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryDataPkts2048to4095Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryDataPkts4096to8191Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryDataPkts4096to8191Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryDataPkts4096to8191Octets"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryDataPkts4096to8191Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryDataPkts8192to18000Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryDataPkts8192to18000Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryDataPkts8192to18000Octets"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryDataPkts8192to18000Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenRingPHistoryDataPktsGreaterThan18000Octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/tokenRingPHistoryTable/tokenRingPHistoryEntry/tokenRingPHistoryDataPktsGreaterThan18000Octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "tokenRingPHistoryTable",
                    "tokenRingPHistoryEntry",
                    "tokenRingPHistoryDataPktsGreaterThan18000Octets"
                  ]
                },
                "description": "Retrieve tokenRingPHistoryDataPktsGreaterThan18000Octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationControlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationControlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationControlTable"
                  ]
                },
                "description": "Retrieve ringStationControlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationControlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationControlTable/ringStationControlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationControlTable",
                    "ringStationControlEntry"
                  ]
                },
                "description": "Retrieve ringStationControlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationControlIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationControlTable/ringStationControlEntry/ringStationControlIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationControlTable",
                    "ringStationControlEntry",
                    "ringStationControlIfIndex"
                  ]
                },
                "description": "Retrieve ringStationControlIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationControlTableSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationControlTable/ringStationControlEntry/ringStationControlTableSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationControlTable",
                    "ringStationControlEntry",
                    "ringStationControlTableSize"
                  ]
                },
                "description": "Retrieve ringStationControlTableSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationControlActiveStations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationControlTable/ringStationControlEntry/ringStationControlActiveStations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationControlTable",
                    "ringStationControlEntry",
                    "ringStationControlActiveStations"
                  ]
                },
                "description": "Retrieve ringStationControlActiveStations from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationControlRingState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationControlTable/ringStationControlEntry/ringStationControlRingState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationControlTable",
                    "ringStationControlEntry",
                    "ringStationControlRingState"
                  ]
                },
                "description": "Retrieve ringStationControlRingState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationControlBeaconSender",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationControlTable/ringStationControlEntry/ringStationControlBeaconSender",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationControlTable",
                    "ringStationControlEntry",
                    "ringStationControlBeaconSender"
                  ]
                },
                "description": "Retrieve ringStationControlBeaconSender from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationControlBeaconNAUN",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationControlTable/ringStationControlEntry/ringStationControlBeaconNAUN",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationControlTable",
                    "ringStationControlEntry",
                    "ringStationControlBeaconNAUN"
                  ]
                },
                "description": "Retrieve ringStationControlBeaconNAUN from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationControlActiveMonitor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationControlTable/ringStationControlEntry/ringStationControlActiveMonitor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationControlTable",
                    "ringStationControlEntry",
                    "ringStationControlActiveMonitor"
                  ]
                },
                "description": "Retrieve ringStationControlActiveMonitor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationControlOrderChanges",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationControlTable/ringStationControlEntry/ringStationControlOrderChanges",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationControlTable",
                    "ringStationControlEntry",
                    "ringStationControlOrderChanges"
                  ]
                },
                "description": "Retrieve ringStationControlOrderChanges from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationControlOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationControlTable/ringStationControlEntry/ringStationControlOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationControlTable",
                    "ringStationControlEntry",
                    "ringStationControlOwner"
                  ]
                },
                "description": "Retrieve ringStationControlOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationControlStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationControlTable/ringStationControlEntry/ringStationControlStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationControlTable",
                    "ringStationControlEntry",
                    "ringStationControlStatus"
                  ]
                },
                "description": "Retrieve ringStationControlStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable"
                  ]
                },
                "description": "Retrieve ringStationTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry"
                  ]
                },
                "description": "Retrieve ringStationEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationIfIndex"
                  ]
                },
                "description": "Retrieve ringStationIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationMacAddress"
                  ]
                },
                "description": "Retrieve ringStationMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationLastNAUN",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationLastNAUN",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationLastNAUN"
                  ]
                },
                "description": "Retrieve ringStationLastNAUN from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationStationStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationStationStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationStationStatus"
                  ]
                },
                "description": "Retrieve ringStationStationStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationLastEnterTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationLastEnterTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationLastEnterTime"
                  ]
                },
                "description": "Retrieve ringStationLastEnterTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationLastExitTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationLastExitTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationLastExitTime"
                  ]
                },
                "description": "Retrieve ringStationLastExitTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationDuplicateAddresses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationDuplicateAddresses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationDuplicateAddresses"
                  ]
                },
                "description": "Retrieve ringStationDuplicateAddresses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationInLineErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationInLineErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationInLineErrors"
                  ]
                },
                "description": "Retrieve ringStationInLineErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationOutLineErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationOutLineErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationOutLineErrors"
                  ]
                },
                "description": "Retrieve ringStationOutLineErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationInternalErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationInternalErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationInternalErrors"
                  ]
                },
                "description": "Retrieve ringStationInternalErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationInBurstErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationInBurstErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationInBurstErrors"
                  ]
                },
                "description": "Retrieve ringStationInBurstErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationOutBurstErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationOutBurstErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationOutBurstErrors"
                  ]
                },
                "description": "Retrieve ringStationOutBurstErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationACErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationACErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationACErrors"
                  ]
                },
                "description": "Retrieve ringStationACErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationAbortErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationAbortErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationAbortErrors"
                  ]
                },
                "description": "Retrieve ringStationAbortErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationLostFrameErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationLostFrameErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationLostFrameErrors"
                  ]
                },
                "description": "Retrieve ringStationLostFrameErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationCongestionErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationCongestionErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationCongestionErrors"
                  ]
                },
                "description": "Retrieve ringStationCongestionErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationFrameCopiedErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationFrameCopiedErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationFrameCopiedErrors"
                  ]
                },
                "description": "Retrieve ringStationFrameCopiedErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationFrequencyErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationFrequencyErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationFrequencyErrors"
                  ]
                },
                "description": "Retrieve ringStationFrequencyErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationTokenErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationTokenErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationTokenErrors"
                  ]
                },
                "description": "Retrieve ringStationTokenErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationInBeaconErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationInBeaconErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationInBeaconErrors"
                  ]
                },
                "description": "Retrieve ringStationInBeaconErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationOutBeaconErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationOutBeaconErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationOutBeaconErrors"
                  ]
                },
                "description": "Retrieve ringStationOutBeaconErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationInsertions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationTable/ringStationEntry/ringStationInsertions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationTable",
                    "ringStationEntry",
                    "ringStationInsertions"
                  ]
                },
                "description": "Retrieve ringStationInsertions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationOrderTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationOrderTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationOrderTable"
                  ]
                },
                "description": "Retrieve ringStationOrderTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationOrderEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationOrderTable/ringStationOrderEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationOrderTable",
                    "ringStationOrderEntry"
                  ]
                },
                "description": "Retrieve ringStationOrderEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationOrderIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationOrderTable/ringStationOrderEntry/ringStationOrderIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationOrderTable",
                    "ringStationOrderEntry",
                    "ringStationOrderIfIndex"
                  ]
                },
                "description": "Retrieve ringStationOrderIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationOrderOrderIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationOrderTable/ringStationOrderEntry/ringStationOrderOrderIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationOrderTable",
                    "ringStationOrderEntry",
                    "ringStationOrderOrderIndex"
                  ]
                },
                "description": "Retrieve ringStationOrderOrderIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationOrderMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationOrderTable/ringStationOrderEntry/ringStationOrderMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationOrderTable",
                    "ringStationOrderEntry",
                    "ringStationOrderMacAddress"
                  ]
                },
                "description": "Retrieve ringStationOrderMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationConfigControlTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationConfigControlTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationConfigControlTable"
                  ]
                },
                "description": "Retrieve ringStationConfigControlTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationConfigControlEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationConfigControlTable/ringStationConfigControlEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationConfigControlTable",
                    "ringStationConfigControlEntry"
                  ]
                },
                "description": "Retrieve ringStationConfigControlEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationConfigControlIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationConfigControlTable/ringStationConfigControlEntry/ringStationConfigControlIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationConfigControlTable",
                    "ringStationConfigControlEntry",
                    "ringStationConfigControlIfIndex"
                  ]
                },
                "description": "Retrieve ringStationConfigControlIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationConfigControlMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationConfigControlTable/ringStationConfigControlEntry/ringStationConfigControlMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationConfigControlTable",
                    "ringStationConfigControlEntry",
                    "ringStationConfigControlMacAddress"
                  ]
                },
                "description": "Retrieve ringStationConfigControlMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationConfigControlRemove",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationConfigControlTable/ringStationConfigControlEntry/ringStationConfigControlRemove",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationConfigControlTable",
                    "ringStationConfigControlEntry",
                    "ringStationConfigControlRemove"
                  ]
                },
                "description": "Retrieve ringStationConfigControlRemove from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationConfigControlUpdateStats",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationConfigControlTable/ringStationConfigControlEntry/ringStationConfigControlUpdateStats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationConfigControlTable",
                    "ringStationConfigControlEntry",
                    "ringStationConfigControlUpdateStats"
                  ]
                },
                "description": "Retrieve ringStationConfigControlUpdateStats from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationConfigTable"
                  ]
                },
                "description": "Retrieve ringStationConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationConfigTable/ringStationConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationConfigTable",
                    "ringStationConfigEntry"
                  ]
                },
                "description": "Retrieve ringStationConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationConfigIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationConfigTable/ringStationConfigEntry/ringStationConfigIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationConfigTable",
                    "ringStationConfigEntry",
                    "ringStationConfigIfIndex"
                  ]
                },
                "description": "Retrieve ringStationConfigIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationConfigMacAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationConfigTable/ringStationConfigEntry/ringStationConfigMacAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationConfigTable",
                    "ringStationConfigEntry",
                    "ringStationConfigMacAddress"
                  ]
                },
                "description": "Retrieve ringStationConfigMacAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationConfigUpdateTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationConfigTable/ringStationConfigEntry/ringStationConfigUpdateTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationConfigTable",
                    "ringStationConfigEntry",
                    "ringStationConfigUpdateTime"
                  ]
                },
                "description": "Retrieve ringStationConfigUpdateTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationConfigLocation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationConfigTable/ringStationConfigEntry/ringStationConfigLocation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationConfigTable",
                    "ringStationConfigEntry",
                    "ringStationConfigLocation"
                  ]
                },
                "description": "Retrieve ringStationConfigLocation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationConfigMicrocode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationConfigTable/ringStationConfigEntry/ringStationConfigMicrocode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationConfigTable",
                    "ringStationConfigEntry",
                    "ringStationConfigMicrocode"
                  ]
                },
                "description": "Retrieve ringStationConfigMicrocode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationConfigGroupAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationConfigTable/ringStationConfigEntry/ringStationConfigGroupAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationConfigTable",
                    "ringStationConfigEntry",
                    "ringStationConfigGroupAddress"
                  ]
                },
                "description": "Retrieve ringStationConfigGroupAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ringStationConfigFunctionalAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/ringStationConfigTable/ringStationConfigEntry/ringStationConfigFunctionalAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "ringStationConfigTable",
                    "ringStationConfigEntry",
                    "ringStationConfigFunctionalAddress"
                  ]
                },
                "description": "Retrieve ringStationConfigFunctionalAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStatsIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStatsIfIndex"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsRingNumber",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStatsRingNumber",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStatsRingNumber"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsRingNumber from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsInFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStatsInFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStatsInFrames"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsInFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsOutFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStatsOutFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStatsOutFrames"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsOutFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsThroughFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStatsThroughFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStatsThroughFrames"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsThroughFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsAllRoutesBroadcastFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStatsAllRoutesBroadcastFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStatsAllRoutesBroadcastFrames"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsAllRoutesBroadcastFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsSingleRouteBroadcastFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStatsSingleRouteBroadcastFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStatsSingleRouteBroadcastFrames"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsSingleRouteBroadcastFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsInOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStatsInOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStatsInOctets"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsInOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsOutOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStatsOutOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStatsOutOctets"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsOutOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsThroughOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStatsThroughOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStatsThroughOctets"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsThroughOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsAllRoutesBroadcastOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStatsAllRoutesBroadcastOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStatsAllRoutesBroadcastOctets"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsAllRoutesBroadcastOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsSingleRoutesBroadcastOctets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStatsSingleRoutesBroadcastOctets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStatsSingleRoutesBroadcastOctets"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsSingleRoutesBroadcastOctets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsLocalLLCFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStatsLocalLLCFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStatsLocalLLCFrames"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsLocalLLCFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStats1HopFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStats1HopFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStats1HopFrames"
                  ]
                },
                "description": "Retrieve sourceRoutingStats1HopFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStats2HopsFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStats2HopsFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStats2HopsFrames"
                  ]
                },
                "description": "Retrieve sourceRoutingStats2HopsFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStats3HopsFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStats3HopsFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStats3HopsFrames"
                  ]
                },
                "description": "Retrieve sourceRoutingStats3HopsFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStats4HopsFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStats4HopsFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStats4HopsFrames"
                  ]
                },
                "description": "Retrieve sourceRoutingStats4HopsFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStats5HopsFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStats5HopsFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStats5HopsFrames"
                  ]
                },
                "description": "Retrieve sourceRoutingStats5HopsFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStats6HopsFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStats6HopsFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStats6HopsFrames"
                  ]
                },
                "description": "Retrieve sourceRoutingStats6HopsFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStats7HopsFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStats7HopsFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStats7HopsFrames"
                  ]
                },
                "description": "Retrieve sourceRoutingStats7HopsFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStats8HopsFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStats8HopsFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStats8HopsFrames"
                  ]
                },
                "description": "Retrieve sourceRoutingStats8HopsFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsMoreThan8HopsFrames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStatsMoreThan8HopsFrames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStatsMoreThan8HopsFrames"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsMoreThan8HopsFrames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsOwner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStatsOwner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStatsOwner"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsOwner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sourceRoutingStatsStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB/sourceRoutingStatsTable/sourceRoutingStatsEntry/sourceRoutingStatsStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKEN-RING-RMON-MIB:TOKEN-RING-RMON-MIB",
                    "sourceRoutingStatsTable",
                    "sourceRoutingStatsEntry",
                    "sourceRoutingStatsStatus"
                  ]
                },
                "description": "Retrieve sourceRoutingStatsStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "TOKENRING-MIB",
          "description": "Cisco IOS-XE MIB - TOKENRING-MIB\n\nMIB data from `TOKENRING-MIB` module.\n\n**Root containers:** 1 (TOKENRING-MIB)\n**Paths:** 47 | **Descendants:** 46\n\nAll endpoints are read-only (GET).\n\nEndpoints: 47 | Operations: 47",
          "item": [
            {
              "name": "GET Get TOKENRING-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB"
                  ]
                },
                "description": "Retrieve TOKENRING-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5Table",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5Table",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5Table"
                  ]
                },
                "description": "Retrieve dot5Table from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5Entry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5Table/dot5Entry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5Table",
                    "dot5Entry"
                  ]
                },
                "description": "Retrieve dot5Entry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5IfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5Table/dot5Entry/dot5IfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5Table",
                    "dot5Entry",
                    "dot5IfIndex"
                  ]
                },
                "description": "Retrieve dot5IfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5Commands",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5Table/dot5Entry/dot5Commands",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5Table",
                    "dot5Entry",
                    "dot5Commands"
                  ]
                },
                "description": "Retrieve dot5Commands from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5RingStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5Table/dot5Entry/dot5RingStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5Table",
                    "dot5Entry",
                    "dot5RingStatus"
                  ]
                },
                "description": "Retrieve dot5RingStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5RingState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5Table/dot5Entry/dot5RingState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5Table",
                    "dot5Entry",
                    "dot5RingState"
                  ]
                },
                "description": "Retrieve dot5RingState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5RingOpenStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5Table/dot5Entry/dot5RingOpenStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5Table",
                    "dot5Entry",
                    "dot5RingOpenStatus"
                  ]
                },
                "description": "Retrieve dot5RingOpenStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5RingSpeed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5Table/dot5Entry/dot5RingSpeed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5Table",
                    "dot5Entry",
                    "dot5RingSpeed"
                  ]
                },
                "description": "Retrieve dot5RingSpeed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5UpStream",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5Table/dot5Entry/dot5UpStream",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5Table",
                    "dot5Entry",
                    "dot5UpStream"
                  ]
                },
                "description": "Retrieve dot5UpStream from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5ActMonParticipate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5Table/dot5Entry/dot5ActMonParticipate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5Table",
                    "dot5Entry",
                    "dot5ActMonParticipate"
                  ]
                },
                "description": "Retrieve dot5ActMonParticipate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5Functional",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5Table/dot5Entry/dot5Functional",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5Table",
                    "dot5Entry",
                    "dot5Functional"
                  ]
                },
                "description": "Retrieve dot5Functional from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5LastBeaconSent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5Table/dot5Entry/dot5LastBeaconSent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5Table",
                    "dot5Entry",
                    "dot5LastBeaconSent"
                  ]
                },
                "description": "Retrieve dot5LastBeaconSent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable"
                  ]
                },
                "description": "Retrieve dot5StatsTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry"
                  ]
                },
                "description": "Retrieve dot5StatsEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsIfIndex"
                  ]
                },
                "description": "Retrieve dot5StatsIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsLineErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsLineErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsLineErrors"
                  ]
                },
                "description": "Retrieve dot5StatsLineErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsBurstErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsBurstErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsBurstErrors"
                  ]
                },
                "description": "Retrieve dot5StatsBurstErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsACErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsACErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsACErrors"
                  ]
                },
                "description": "Retrieve dot5StatsACErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsAbortTransErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsAbortTransErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsAbortTransErrors"
                  ]
                },
                "description": "Retrieve dot5StatsAbortTransErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsInternalErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsInternalErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsInternalErrors"
                  ]
                },
                "description": "Retrieve dot5StatsInternalErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsLostFrameErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsLostFrameErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsLostFrameErrors"
                  ]
                },
                "description": "Retrieve dot5StatsLostFrameErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsReceiveCongestions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsReceiveCongestions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsReceiveCongestions"
                  ]
                },
                "description": "Retrieve dot5StatsReceiveCongestions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsFrameCopiedErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsFrameCopiedErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsFrameCopiedErrors"
                  ]
                },
                "description": "Retrieve dot5StatsFrameCopiedErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsTokenErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsTokenErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsTokenErrors"
                  ]
                },
                "description": "Retrieve dot5StatsTokenErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsSoftErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsSoftErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsSoftErrors"
                  ]
                },
                "description": "Retrieve dot5StatsSoftErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsHardErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsHardErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsHardErrors"
                  ]
                },
                "description": "Retrieve dot5StatsHardErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsSignalLoss",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsSignalLoss",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsSignalLoss"
                  ]
                },
                "description": "Retrieve dot5StatsSignalLoss from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsTransmitBeacons",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsTransmitBeacons",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsTransmitBeacons"
                  ]
                },
                "description": "Retrieve dot5StatsTransmitBeacons from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsRecoverys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsRecoverys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsRecoverys"
                  ]
                },
                "description": "Retrieve dot5StatsRecoverys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsLobeWires",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsLobeWires",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsLobeWires"
                  ]
                },
                "description": "Retrieve dot5StatsLobeWires from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsRemoves",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsRemoves",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsRemoves"
                  ]
                },
                "description": "Retrieve dot5StatsRemoves from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsSingles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsSingles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsSingles"
                  ]
                },
                "description": "Retrieve dot5StatsSingles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5StatsFreqErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5StatsTable/dot5StatsEntry/dot5StatsFreqErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5StatsTable",
                    "dot5StatsEntry",
                    "dot5StatsFreqErrors"
                  ]
                },
                "description": "Retrieve dot5StatsFreqErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5TimerTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5TimerTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5TimerTable"
                  ]
                },
                "description": "Retrieve dot5TimerTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5TimerEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5TimerTable/dot5TimerEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5TimerTable",
                    "dot5TimerEntry"
                  ]
                },
                "description": "Retrieve dot5TimerEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5TimerIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5TimerTable/dot5TimerEntry/dot5TimerIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5TimerTable",
                    "dot5TimerEntry",
                    "dot5TimerIfIndex"
                  ]
                },
                "description": "Retrieve dot5TimerIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5TimerReturnRepeat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5TimerTable/dot5TimerEntry/dot5TimerReturnRepeat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5TimerTable",
                    "dot5TimerEntry",
                    "dot5TimerReturnRepeat"
                  ]
                },
                "description": "Retrieve dot5TimerReturnRepeat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5TimerHolding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5TimerTable/dot5TimerEntry/dot5TimerHolding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5TimerTable",
                    "dot5TimerEntry",
                    "dot5TimerHolding"
                  ]
                },
                "description": "Retrieve dot5TimerHolding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5TimerQueuePDU",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5TimerTable/dot5TimerEntry/dot5TimerQueuePDU",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5TimerTable",
                    "dot5TimerEntry",
                    "dot5TimerQueuePDU"
                  ]
                },
                "description": "Retrieve dot5TimerQueuePDU from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5TimerValidTransmit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5TimerTable/dot5TimerEntry/dot5TimerValidTransmit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5TimerTable",
                    "dot5TimerEntry",
                    "dot5TimerValidTransmit"
                  ]
                },
                "description": "Retrieve dot5TimerValidTransmit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5TimerNoToken",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5TimerTable/dot5TimerEntry/dot5TimerNoToken",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5TimerTable",
                    "dot5TimerEntry",
                    "dot5TimerNoToken"
                  ]
                },
                "description": "Retrieve dot5TimerNoToken from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5TimerActiveMon",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5TimerTable/dot5TimerEntry/dot5TimerActiveMon",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5TimerTable",
                    "dot5TimerEntry",
                    "dot5TimerActiveMon"
                  ]
                },
                "description": "Retrieve dot5TimerActiveMon from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5TimerStandbyMon",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5TimerTable/dot5TimerEntry/dot5TimerStandbyMon",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5TimerTable",
                    "dot5TimerEntry",
                    "dot5TimerStandbyMon"
                  ]
                },
                "description": "Retrieve dot5TimerStandbyMon from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5TimerErrorReport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5TimerTable/dot5TimerEntry/dot5TimerErrorReport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5TimerTable",
                    "dot5TimerEntry",
                    "dot5TimerErrorReport"
                  ]
                },
                "description": "Retrieve dot5TimerErrorReport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5TimerBeaconTransmit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5TimerTable/dot5TimerEntry/dot5TimerBeaconTransmit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5TimerTable",
                    "dot5TimerEntry",
                    "dot5TimerBeaconTransmit"
                  ]
                },
                "description": "Retrieve dot5TimerBeaconTransmit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot5TimerBeaconReceive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TOKENRING-MIB:TOKENRING-MIB/dot5TimerTable/dot5TimerEntry/dot5TimerBeaconReceive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TOKENRING-MIB:TOKENRING-MIB",
                    "dot5TimerTable",
                    "dot5TimerEntry",
                    "dot5TimerBeaconReceive"
                  ]
                },
                "description": "Retrieve dot5TimerBeaconReceive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "TUNNEL-MIB",
          "description": "Cisco IOS-XE MIB - TUNNEL-MIB\n\nMIB data from `TUNNEL-MIB` module.\n\n**Root containers:** 1 (TUNNEL-MIB)\n**Paths:** 23 | **Descendants:** 22\n\nAll endpoints are read-only (GET).\n\nEndpoints: 23 | Operations: 23",
          "item": [
            {
              "name": "GET Get TUNNEL-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB"
                  ]
                },
                "description": "Retrieve TUNNEL-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelIfTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelIfTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelIfTable"
                  ]
                },
                "description": "Retrieve tunnelIfTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelIfEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelIfTable/tunnelIfEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelIfTable",
                    "tunnelIfEntry"
                  ]
                },
                "description": "Retrieve tunnelIfEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ifIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelIfTable/tunnelIfEntry/ifIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelIfTable",
                    "tunnelIfEntry",
                    "ifIndex"
                  ]
                },
                "description": "Retrieve ifIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelIfEncapsMethod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelIfTable/tunnelIfEntry/tunnelIfEncapsMethod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelIfTable",
                    "tunnelIfEntry",
                    "tunnelIfEncapsMethod"
                  ]
                },
                "description": "Retrieve tunnelIfEncapsMethod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelIfHopLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelIfTable/tunnelIfEntry/tunnelIfHopLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelIfTable",
                    "tunnelIfEntry",
                    "tunnelIfHopLimit"
                  ]
                },
                "description": "Retrieve tunnelIfHopLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelIfSecurity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelIfTable/tunnelIfEntry/tunnelIfSecurity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelIfTable",
                    "tunnelIfEntry",
                    "tunnelIfSecurity"
                  ]
                },
                "description": "Retrieve tunnelIfSecurity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelIfTOS",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelIfTable/tunnelIfEntry/tunnelIfTOS",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelIfTable",
                    "tunnelIfEntry",
                    "tunnelIfTOS"
                  ]
                },
                "description": "Retrieve tunnelIfTOS from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelIfFlowLabel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelIfTable/tunnelIfEntry/tunnelIfFlowLabel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelIfTable",
                    "tunnelIfEntry",
                    "tunnelIfFlowLabel"
                  ]
                },
                "description": "Retrieve tunnelIfFlowLabel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelIfAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelIfTable/tunnelIfEntry/tunnelIfAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelIfTable",
                    "tunnelIfEntry",
                    "tunnelIfAddressType"
                  ]
                },
                "description": "Retrieve tunnelIfAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelIfLocalInetAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelIfTable/tunnelIfEntry/tunnelIfLocalInetAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelIfTable",
                    "tunnelIfEntry",
                    "tunnelIfLocalInetAddress"
                  ]
                },
                "description": "Retrieve tunnelIfLocalInetAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelIfRemoteInetAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelIfTable/tunnelIfEntry/tunnelIfRemoteInetAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelIfTable",
                    "tunnelIfEntry",
                    "tunnelIfRemoteInetAddress"
                  ]
                },
                "description": "Retrieve tunnelIfRemoteInetAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelIfEncapsLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelIfTable/tunnelIfEntry/tunnelIfEncapsLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelIfTable",
                    "tunnelIfEntry",
                    "tunnelIfEncapsLimit"
                  ]
                },
                "description": "Retrieve tunnelIfEncapsLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelInetConfigTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelInetConfigTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelInetConfigTable"
                  ]
                },
                "description": "Retrieve tunnelInetConfigTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelInetConfigEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelInetConfigTable/tunnelInetConfigEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelInetConfigTable",
                    "tunnelInetConfigEntry"
                  ]
                },
                "description": "Retrieve tunnelInetConfigEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelInetConfigAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelInetConfigTable/tunnelInetConfigEntry/tunnelInetConfigAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelInetConfigTable",
                    "tunnelInetConfigEntry",
                    "tunnelInetConfigAddressType"
                  ]
                },
                "description": "Retrieve tunnelInetConfigAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelInetConfigLocalAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelInetConfigTable/tunnelInetConfigEntry/tunnelInetConfigLocalAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelInetConfigTable",
                    "tunnelInetConfigEntry",
                    "tunnelInetConfigLocalAddress"
                  ]
                },
                "description": "Retrieve tunnelInetConfigLocalAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelInetConfigRemoteAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelInetConfigTable/tunnelInetConfigEntry/tunnelInetConfigRemoteAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelInetConfigTable",
                    "tunnelInetConfigEntry",
                    "tunnelInetConfigRemoteAddress"
                  ]
                },
                "description": "Retrieve tunnelInetConfigRemoteAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelInetConfigEncapsMethod",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelInetConfigTable/tunnelInetConfigEntry/tunnelInetConfigEncapsMethod",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelInetConfigTable",
                    "tunnelInetConfigEntry",
                    "tunnelInetConfigEncapsMethod"
                  ]
                },
                "description": "Retrieve tunnelInetConfigEncapsMethod from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelInetConfigID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelInetConfigTable/tunnelInetConfigEntry/tunnelInetConfigID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelInetConfigTable",
                    "tunnelInetConfigEntry",
                    "tunnelInetConfigID"
                  ]
                },
                "description": "Retrieve tunnelInetConfigID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelInetConfigIfIndex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelInetConfigTable/tunnelInetConfigEntry/tunnelInetConfigIfIndex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelInetConfigTable",
                    "tunnelInetConfigEntry",
                    "tunnelInetConfigIfIndex"
                  ]
                },
                "description": "Retrieve tunnelInetConfigIfIndex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelInetConfigStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelInetConfigTable/tunnelInetConfigEntry/tunnelInetConfigStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelInetConfigTable",
                    "tunnelInetConfigEntry",
                    "tunnelInetConfigStatus"
                  ]
                },
                "description": "Retrieve tunnelInetConfigStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tunnelInetConfigStorageType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/TUNNEL-MIB:TUNNEL-MIB/tunnelInetConfigTable/tunnelInetConfigEntry/tunnelInetConfigStorageType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "TUNNEL-MIB:TUNNEL-MIB",
                    "tunnelInetConfigTable",
                    "tunnelInetConfigEntry",
                    "tunnelInetConfigStorageType"
                  ]
                },
                "description": "Retrieve tunnelInetConfigStorageType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "UDP-MIB",
          "description": "Cisco IOS-XE MIB - UDP-MIB\n\nMIB data from `UDP-MIB` module.\n\n**Root containers:** 1 (UDP-MIB)\n**Paths:** 18 | **Descendants:** 17\n\nAll endpoints are read-only (GET).\n\nEndpoints: 18 | Operations: 18",
          "item": [
            {
              "name": "GET Get UDP-MIB",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB"
                  ]
                },
                "description": "Retrieve UDP-MIB from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udp"
                  ]
                },
                "description": "Retrieve udp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpInDatagrams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udp/udpInDatagrams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udp",
                    "udpInDatagrams"
                  ]
                },
                "description": "Retrieve udpInDatagrams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpNoPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udp/udpNoPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udp",
                    "udpNoPorts"
                  ]
                },
                "description": "Retrieve udpNoPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpInErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udp/udpInErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udp",
                    "udpInErrors"
                  ]
                },
                "description": "Retrieve udpInErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpOutDatagrams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udp/udpOutDatagrams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udp",
                    "udpOutDatagrams"
                  ]
                },
                "description": "Retrieve udpOutDatagrams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpHCInDatagrams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udp/udpHCInDatagrams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udp",
                    "udpHCInDatagrams"
                  ]
                },
                "description": "Retrieve udpHCInDatagrams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpHCOutDatagrams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udp/udpHCOutDatagrams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udp",
                    "udpHCOutDatagrams"
                  ]
                },
                "description": "Retrieve udpHCOutDatagrams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpEndpointTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udpEndpointTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udpEndpointTable"
                  ]
                },
                "description": "Retrieve udpEndpointTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpEndpointEntry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udpEndpointTable/udpEndpointEntry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udpEndpointTable",
                    "udpEndpointEntry"
                  ]
                },
                "description": "Retrieve udpEndpointEntry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpEndpointLocalAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udpEndpointTable/udpEndpointEntry/udpEndpointLocalAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udpEndpointTable",
                    "udpEndpointEntry",
                    "udpEndpointLocalAddressType"
                  ]
                },
                "description": "Retrieve udpEndpointLocalAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpEndpointLocalAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udpEndpointTable/udpEndpointEntry/udpEndpointLocalAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udpEndpointTable",
                    "udpEndpointEntry",
                    "udpEndpointLocalAddress"
                  ]
                },
                "description": "Retrieve udpEndpointLocalAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpEndpointLocalPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udpEndpointTable/udpEndpointEntry/udpEndpointLocalPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udpEndpointTable",
                    "udpEndpointEntry",
                    "udpEndpointLocalPort"
                  ]
                },
                "description": "Retrieve udpEndpointLocalPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpEndpointRemoteAddressType",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udpEndpointTable/udpEndpointEntry/udpEndpointRemoteAddressType",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udpEndpointTable",
                    "udpEndpointEntry",
                    "udpEndpointRemoteAddressType"
                  ]
                },
                "description": "Retrieve udpEndpointRemoteAddressType from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpEndpointRemoteAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udpEndpointTable/udpEndpointEntry/udpEndpointRemoteAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udpEndpointTable",
                    "udpEndpointEntry",
                    "udpEndpointRemoteAddress"
                  ]
                },
                "description": "Retrieve udpEndpointRemoteAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpEndpointRemotePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udpEndpointTable/udpEndpointEntry/udpEndpointRemotePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udpEndpointTable",
                    "udpEndpointEntry",
                    "udpEndpointRemotePort"
                  ]
                },
                "description": "Retrieve udpEndpointRemotePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpEndpointInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udpEndpointTable/udpEndpointEntry/udpEndpointInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udpEndpointTable",
                    "udpEndpointEntry",
                    "udpEndpointInstance"
                  ]
                },
                "description": "Retrieve udpEndpointInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udpEndpointProcess",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/UDP-MIB:UDP-MIB/udpEndpointTable/udpEndpointEntry/udpEndpointProcess",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "UDP-MIB:UDP-MIB",
                    "udpEndpointTable",
                    "udpEndpointEntry",
                    "udpEndpointProcess"
                  ]
                },
                "description": "Retrieve udpEndpointProcess from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "7b - RPC v2 (Deep Paths)",
      "description": "48 YANG specs | 232 endpoints | 232 operations\n\nTree-based deep-path specs with full depth coverage.",
      "item": [
        {
          "name": "Cisco-IOS-XE-aaa-actions-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-aaa-actions-rpc\n\nRPC operations from `Cisco-IOS-XE-aaa-actions-rpc` module.\n\n**RPCs:** 1 (test-aaa-command)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute test-aaa-command",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-aaa-actions-rpc:test-aaa-command",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-aaa-actions-rpc:test-aaa-command"
                  ]
                },
                "description": "Execute the **test-aaa-command** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"group-name\": \"RADIUS-GROUP\",\n  \"username\": \"admin\",\n  \"password\": \"***\",\n  \"mode\": \"normal\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-bgp-actions-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-bgp-actions-rpc\n\nRPC operations from `Cisco-IOS-XE-bgp-actions-rpc` module.\n\n**RPCs:** 1 (bgp-gshut-activate-cmd)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute bgp-gshut-activate-cmd",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-bgp-actions-rpc:bgp-gshut-activate-cmd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-bgp-actions-rpc:bgp-gshut-activate-cmd"
                  ]
                },
                "description": "Execute the **bgp-gshut-activate-cmd** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"client\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-cellular-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-cellular-rpc\n\nRPC operations from `Cisco-IOS-XE-cellular-rpc` module.\n\n**RPCs:** 1 (cellular)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute cellular",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-cellular-rpc:cellular",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-cellular-rpc:cellular"
                  ]
                },
                "description": "Execute the **cellular** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"if-name-drop-node-name\": \"0\",\n  \"lte\": {\n    \"(action)\": {\n      \"technology\": {\n        \"(action)\": {}\n      },\n      \"modem-reset\": true,\n      \"profile\": {\n        \"(prof)\": {}\n      }\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-chassis-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-chassis-rpc\n\nRPC operations from `Cisco-IOS-XE-chassis-rpc` module.\n\n**RPCs:** 2 (set-chassis-priority, set-chassis-number)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 2 | Operations: 2",
          "item": [
            {
              "name": "POST Execute set-chassis-priority",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-chassis-rpc:set-chassis-priority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-chassis-rpc:set-chassis-priority"
                  ]
                },
                "description": "Execute the **set-chassis-priority** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"number\": 10,\n  \"priority\": 100\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-chassis-number",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-chassis-rpc:set-chassis-number",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-chassis-rpc:set-chassis-number"
                  ]
                },
                "description": "Execute the **set-chassis-number** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"number\": 10,\n  \"renumber\": 10\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-cli-preview-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-cli-preview-rpc\n\nRPC operations from `Cisco-IOS-XE-cli-preview-rpc` module.\n\n**RPCs:** 1 (cli-preview)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute cli-preview",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-cli-preview-rpc:cli-preview",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-cli-preview-rpc:cli-preview"
                  ]
                },
                "description": "Execute the **cli-preview** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"custom-timeout\": 1,\n  \"(input-choice)\": {\n    \"netconf-xml\": {\n      \"config-xml\": \"configured-value\"\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-cli-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-cli-rpc\n\nRPC operations from `Cisco-IOS-XE-cli-rpc` module.\n\n**RPCs:** 3 (config-ios-cli-rpc, config-ios-cli-trans, get-modelled-config-clis)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 3 | Operations: 3",
          "item": [
            {
              "name": "POST Execute config-ios-cli-rpc",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-cli-rpc:config-ios-cli-rpc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-cli-rpc:config-ios-cli-rpc"
                  ]
                },
                "description": "Execute the **config-ios-cli-rpc** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"config-clis\": \"configured-value\",\n  \"timeout\": 1,\n  \"error-patterns\": [\n    {\n      \"error-tag\": \"0\",\n      \"error-pattern\": \"0\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute config-ios-cli-trans",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-cli-rpc:config-ios-cli-trans",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-cli-rpc:config-ios-cli-trans"
                  ]
                },
                "description": "Execute the **config-ios-cli-trans** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"clis\": \"configured-value\",\n  \"do-commit\": true,\n  \"operation\": \"50\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute get-modelled-config-clis",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-cli-rpc:get-modelled-config-clis",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-cli-rpc:get-modelled-config-clis"
                  ]
                },
                "description": "Execute the **get-modelled-config-clis** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"datastore\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-cloud-services-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-cloud-services-rpc\n\nRPC operations from `Cisco-IOS-XE-cloud-services-rpc` module.\n\n**RPCs:** 3 (cloudm-otp-token-import, cloudm-spaces-otp-token-import, cloudm-spaces-tokens-clear)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 3 | Operations: 3",
          "item": [
            {
              "name": "POST Execute cloudm-otp-token-import",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-cloud-services-rpc:cloudm-otp-token-import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-cloud-services-rpc:cloudm-otp-token-import"
                  ]
                },
                "description": "Execute the **cloudm-otp-token-import** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"otp-token\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute cloudm-spaces-otp-token-import",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-cloud-services-rpc:cloudm-spaces-otp-token-import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-cloud-services-rpc:cloudm-spaces-otp-token-import"
                  ]
                },
                "description": "Execute the **cloudm-spaces-otp-token-import** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"otp-token\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute cloudm-spaces-tokens-clear",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-cloud-services-rpc:cloudm-spaces-tokens-clear",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-cloud-services-rpc:cloudm-spaces-tokens-clear"
                  ]
                },
                "description": "Execute the **cloudm-spaces-tokens-clear** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"service\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-crypto-actions-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-crypto-actions-rpc\n\nRPC operations from `Cisco-IOS-XE-crypto-actions-rpc` module.\n\n**RPCs:** 4 (crypto-clear, crypto-clear-ssl-static, crypto-clear-ssl-user, crypto-clear-ssl-profile)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 4 | Operations: 4",
          "item": [
            {
              "name": "POST Execute crypto-clear",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-crypto-actions-rpc:crypto-clear",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-crypto-actions-rpc:crypto-clear"
                  ]
                },
                "description": "Execute the **crypto-clear** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"clear-type\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute crypto-clear-ssl-static",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-crypto-actions-rpc:crypto-clear-ssl-static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-crypto-actions-rpc:crypto-clear-ssl-static"
                  ]
                },
                "description": "Execute the **crypto-clear-ssl-static** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"clear-static-type\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute crypto-clear-ssl-user",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-crypto-actions-rpc:crypto-clear-ssl-user",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-crypto-actions-rpc:crypto-clear-ssl-user"
                  ]
                },
                "description": "Execute the **crypto-clear-ssl-user** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"clear-user-type\": \"configured-value\",\n  \"user-name\": \"admin\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute crypto-clear-ssl-profile",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-crypto-actions-rpc:crypto-clear-ssl-profile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-crypto-actions-rpc:crypto-clear-ssl-profile"
                  ]
                },
                "description": "Execute the **crypto-clear-ssl-profile** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"clear-profile-type\": \"configured-value\",\n  \"profile-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-cts-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-cts-rpc\n\nRPC operations from `Cisco-IOS-XE-cts-rpc` module.\n\n**RPCs:** 1 (cts)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute cts",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-cts-rpc:cts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-cts-rpc:cts"
                  ]
                },
                "description": "Execute the **cts** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"credentials\": {\n    \"id\": \"1\",\n    \"password\": \"***\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-cwan-actions-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-cwan-actions-rpc\n\nRPC operations from `Cisco-IOS-XE-cwan-actions-rpc` module.\n\n**RPCs:** 3 (cwan-start-dmlog, cwan-stop-dmlog, cwan-remove-dmlog)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 3 | Operations: 3",
          "item": [
            {
              "name": "POST Execute cwan-start-dmlog",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-cwan-actions-rpc:cwan-start-dmlog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-cwan-actions-rpc:cwan-start-dmlog"
                  ]
                },
                "description": "Execute the **cwan-start-dmlog** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dm-tid\": \"1\",\n  \"if-name\": \"GigabitEthernet1/0/1\",\n  \"radio-reset-enable\": true,\n  \"rotation\": true,\n  \"autostop-enable\": true,\n  \"autostop-timer\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute cwan-stop-dmlog",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-cwan-actions-rpc:cwan-stop-dmlog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-cwan-actions-rpc:cwan-stop-dmlog"
                  ]
                },
                "description": "Execute the **cwan-stop-dmlog** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dm-tid\": \"1\",\n  \"if-name\": \"GigabitEthernet1/0/1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute cwan-remove-dmlog",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-cwan-actions-rpc:cwan-remove-dmlog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-cwan-actions-rpc:cwan-remove-dmlog"
                  ]
                },
                "description": "Execute the **cwan-remove-dmlog** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dm-tid\": \"1\",\n  \"if-name\": \"GigabitEthernet1/0/1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-cwan-fw-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-cwan-fw-rpc\n\nRPC operations from `Cisco-IOS-XE-cwan-fw-rpc` module.\n\n**RPCs:** 2 (trigger-upgrade, cancel-upgrade)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 2 | Operations: 2",
          "item": [
            {
              "name": "POST Execute trigger-upgrade",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-cwan-fw-rpc:trigger-upgrade",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-cwan-fw-rpc:trigger-upgrade"
                  ]
                },
                "description": "Execute the **trigger-upgrade** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"fw-tid\": \"1\",\n  \"src-path\": \"/data/example\",\n  \"uname\": \"example-1\",\n  \"passwd\": \"***\",\n  \"vpn\": \"configured-value\",\n  \"dnld-timeout\": 1,\n  \"schd-start\": \"configured-value\",\n  \"schd-end\": \"configured-value\",\n  \"fwtype\": \"configured-value\",\n  \"img-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute cancel-upgrade",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-cwan-fw-rpc:cancel-upgrade",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-cwan-fw-rpc:cancel-upgrade"
                  ]
                },
                "description": "Execute the **cancel-upgrade** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"fw-tid\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-embedded-ap-actions-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-embedded-ap-actions-rpc\n\nRPC operations from `Cisco-IOS-XE-embedded-ap-actions-rpc` module.\n\n**RPCs:** 3 (wireless-bridge-reset, wireless-bridge, switch-boot-mode)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 3 | Operations: 3",
          "item": [
            {
              "name": "POST Execute wireless-bridge-reset",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-embedded-ap-actions-rpc:wireless-bridge-reset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-embedded-ap-actions-rpc:wireless-bridge-reset"
                  ]
                },
                "description": "Execute the **wireless-bridge-reset** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"reset-actions\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute wireless-bridge",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-embedded-ap-actions-rpc:wireless-bridge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-embedded-ap-actions-rpc:wireless-bridge"
                  ]
                },
                "description": "Execute the **wireless-bridge** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"wireless-bridge-actions\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute switch-boot-mode",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-embedded-ap-actions-rpc:switch-boot-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-embedded-ap-actions-rpc:switch-boot-mode"
                  ]
                },
                "description": "Execute the **switch-boot-mode** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"boot-mode\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-ethernet-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-ethernet-rpc\n\nRPC operations from `Cisco-IOS-XE-ethernet-rpc` module.\n\n**RPCs:** 2 (ethernet-oam, eth-lat-loopback)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 2 | Operations: 2",
          "item": [
            {
              "name": "POST Execute ethernet-oam",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-ethernet-rpc:ethernet-oam",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-ethernet-rpc:ethernet-oam"
                  ]
                },
                "description": "Execute the **ethernet-oam** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"action\": \"configured-value\",\n  \"interface\": \"GigabitEthernet1/0/1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute eth-lat-loopback",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-ethernet-rpc:eth-lat-loopback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-ethernet-rpc:eth-lat-loopback"
                  ]
                },
                "description": "Execute the **eth-lat-loopback** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"action\": \"configured-value\",\n  \"domain\": \"configured-value\",\n  \"id\": 1,\n  \"service\": \"configured-value\",\n  \"destination-mac\": \"00:1a:2b:3c:4d:5e\",\n  \"timeout\": 1,\n  \"(svc-type-choice)\": {\n    \"svc-name\": \"example-1\",\n    \"svc-number\": 10,\n    \"svc-none\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-geo-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-geo-rpc\n\nRPC operations from `Cisco-IOS-XE-geo-rpc` module.\n\n**RPCs:** 1 (geo-database)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute geo-database",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-geo-rpc:geo-database",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-geo-rpc:geo-database"
                  ]
                },
                "description": "Execute the **geo-database** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(geo-database-type-by-choice)\": {\n    \"update-file\": \"2025-03-15\",\n    \"revert-default\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-install-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-install-rpc\n\nRPC operations from `Cisco-IOS-XE-install-rpc` module.\n\n**RPCs:** 10 (install, activate, install-commit, autoupgrade, remove...)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 10 | Operations: 10",
          "item": [
            {
              "name": "POST Execute install",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-install-rpc:install",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-install-rpc:install"
                  ]
                },
                "description": "Execute the **install** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"uuid\": \"1\",\n  \"one-shot\": true,\n  \"reloadfast\": true,\n  \"issu\": true,\n  \"controller-mode-options\": {\n    \"vpn\": 1\n  },\n  \"download-timeout\": 1,\n  \"xfsu\": true,\n  \"scheduled-start\": \"configured-value\",\n  \"scheduled-end\": \"configured-value\",\n  \"(install-type-by-choice)\": {\n    \"path\": \"/data/example\",\n    \"name\": \"example-1\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute activate",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-install-rpc:activate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-install-rpc:activate"
                  ]
                },
                "description": "Execute the **activate** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"uuid\": \"1\",\n  \"smuid\": 1,\n  \"auto-abort-timer-val\": 1,\n  \"one-shot\": true,\n  \"issu\": true,\n  \"scheduled-start\": \"configured-value\",\n  \"scheduled-end\": \"configured-value\",\n  \"(activate-type-by-choice)\": {\n    \"version\": \"17.18.1\",\n    \"path\": \"/data/example\",\n    \"name\": \"example-1\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute install-commit",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-install-rpc:install-commit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-install-rpc:install-commit"
                  ]
                },
                "description": "Execute the **install-commit** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"uuid\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute autoupgrade",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-install-rpc:autoupgrade",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-install-rpc:autoupgrade"
                  ]
                },
                "description": "Execute the **autoupgrade** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"uuid\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute remove",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-install-rpc:remove",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-install-rpc:remove"
                  ]
                },
                "description": "Execute the **remove** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"uuid\": \"1\",\n  \"smuid\": 1,\n  \"(remove-type-by-choice)\": {\n    \"version\": \"17.18.1\",\n    \"path\": \"/data/example\",\n    \"inactive\": true,\n    \"name\": \"example-1\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute deactivate",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-install-rpc:deactivate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-install-rpc:deactivate"
                  ]
                },
                "description": "Execute the **deactivate** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"uuid\": \"1\",\n  \"auto-abort-timer-val\": 1,\n  \"path\": \"/data/example\",\n  \"issu\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute abort",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-install-rpc:abort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-install-rpc:abort"
                  ]
                },
                "description": "Execute the **abort** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"uuid\": \"1\",\n  \"issu\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute auto-abort-timer",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-install-rpc:auto-abort-timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-install-rpc:auto-abort-timer"
                  ]
                },
                "description": "Execute the **auto-abort-timer** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"uuid\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute rollback",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-install-rpc:rollback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-install-rpc:rollback"
                  ]
                },
                "description": "Execute the **rollback** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"uuid\": \"1\",\n  \"issu\": true,\n  \"(rollback-type-to-choice)\": {\n    \"base\": true,\n    \"commited\": true,\n    \"rollback-id\": 1,\n    \"rollback-label\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-default",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-install-rpc:set-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-install-rpc:set-default"
                  ]
                },
                "description": "Execute the **set-default** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"version\": \"17.18.1\",\n  \"uuid\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-line-actions-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-line-actions-rpc\n\nRPC operations from `Cisco-IOS-XE-line-actions-rpc` module.\n\n**RPCs:** 1 (clear-line)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute clear-line",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-line-actions-rpc:clear-line",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-line-actions-rpc:clear-line"
                  ]
                },
                "description": "Execute the **clear-line** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"number\": 10\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-livetools-actions-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-livetools-actions-rpc\n\nRPC operations from `Cisco-IOS-XE-livetools-actions-rpc` module.\n\n**RPCs:** 7 (wol-action, thrpt-action, ip-tracert-action, ip-ping-action, mtr-action...)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 7 | Operations: 7",
          "item": [
            {
              "name": "POST Execute wol-action",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-livetools-actions-rpc:wol-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-livetools-actions-rpc:wol-action"
                  ]
                },
                "description": "Execute the **wol-action** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mac-addr\": \"configured-value\",\n  \"vlan\": 100,\n  \"interval\": 60,\n  \"count\": 10\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute thrpt-action",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-livetools-actions-rpc:thrpt-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-livetools-actions-rpc:thrpt-action"
                  ]
                },
                "description": "Execute the **thrpt-action** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"proto\": \"configured-value\",\n  \"dest-addr\": \"configured-value\",\n  \"ni-type\": \"configured-value\",\n  \"ni-name\": \"example-1\",\n  \"timeout\": 1,\n  \"wnd-span\": 1,\n  \"num-wnds\": 10,\n  \"port\": 443,\n  \"dscp\": 46,\n  \"client-rcv\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ip-tracert-action",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-livetools-actions-rpc:ip-tracert-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-livetools-actions-rpc:ip-tracert-action"
                  ]
                },
                "description": "Execute the **ip-tracert-action** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ni-type\": \"configured-value\",\n  \"ni-name\": \"example-1\",\n  \"num-probes\": 10,\n  \"port\": 443,\n  \"timeout\": 1,\n  \"min-ttl\": 1,\n  \"max-ttl\": 1,\n  \"(dscp-choice)\": {\n    \"dscp-num\": 10,\n    \"dscp-ascii\": \"configured-value\"\n  },\n  \"(src-choice)\": {\n    \"src-if\": \"configured-value\",\n    \"src-ip\": \"configured-value\"\n  },\n  \"(host-choice)\": {\n    \"host-name\": \"example-1\",\n    \"host-ip\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ip-ping-action",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-livetools-actions-rpc:ip-ping-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-livetools-actions-rpc:ip-ping-action"
                  ]
                },
                "description": "Execute the **ip-ping-action** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ni-type\": \"configured-value\",\n  \"ni-name\": \"example-1\",\n  \"count\": 10,\n  \"proto-hint\": \"configured-value\",\n  \"egress-if-name\": \"example-1\",\n  \"next-hop\": \"10.1.1.1\",\n  \"(dscp-choice)\": {\n    \"dscp-num\": 10,\n    \"dscp-ascii\": \"configured-value\"\n  },\n  \"(src-choice)\": {\n    \"src-if\": \"configured-value\",\n    \"src-ip\": \"configured-value\"\n  },\n  \"(host-choice)\": {\n    \"host-name\": \"example-1\",\n    \"host-ip\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute mtr-action",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-livetools-actions-rpc:mtr-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-livetools-actions-rpc:mtr-action"
                  ]
                },
                "description": "Execute the **mtr-action** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ni-type\": \"configured-value\",\n  \"ni-name\": \"example-1\",\n  \"proto-hint\": \"configured-value\",\n  \"count\": 10,\n  \"port\": 443,\n  \"timeout\": 1,\n  \"min-ttl\": 1,\n  \"max-ttl\": 1,\n  \"(dscp-choice)\": {\n    \"dscp-num\": 10,\n    \"dscp-ascii\": \"configured-value\"\n  },\n  \"(src-choice)\": {\n    \"src-if\": \"configured-value\",\n    \"src-ip\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute dns-query-action",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-livetools-actions-rpc:dns-query-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-livetools-actions-rpc:dns-query-action"
                  ]
                },
                "description": "Execute the **dns-query-action** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ni-type\": \"configured-value\",\n  \"ni-name\": \"example-1\",\n  \"dns-server\": \"configured-value\",\n  \"(qtype-choice)\": {\n    \"a-qry\": {\n      \"hostname\": \"Router1\"\n    },\n    \"aaaa-qry\": {\n      \"hostname\": \"Router1\"\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute nextun-pcap-action",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-livetools-actions-rpc:nextun-pcap-action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-livetools-actions-rpc:nextun-pcap-action"
                  ]
                },
                "description": "Execute the **nextun-pcap-action** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"action-type\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-logging-ios-actions-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-logging-ios-actions-rpc\n\nRPC operations from `Cisco-IOS-XE-logging-ios-actions-rpc` module.\n\n**RPCs:** 1 (send-log)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute send-log",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-logging-ios-actions-rpc:send-log",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-logging-ios-actions-rpc:send-log"
                  ]
                },
                "description": "Execute the **send-log** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"facility\": \"local7\",\n  \"mnemonics\": \"configured-value\",\n  \"message\": \"Interface GigabitEthernet1/0/1 changed state to up\",\n  \"severity\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-meraki-leds-actions-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-meraki-leds-actions-rpc\n\nRPC operations from `Cisco-IOS-XE-meraki-leds-actions-rpc` module.\n\n**RPCs:** 2 (set-system-led-state, blink-leds-cmd)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 2 | Operations: 2",
          "item": [
            {
              "name": "POST Execute set-system-led-state",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-meraki-leds-actions-rpc:set-system-led-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-meraki-leds-actions-rpc:set-system-led-state"
                  ]
                },
                "description": "Execute the **set-system-led-state** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"chassis-number\": 10,\n  \"led-state\": \"active\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute blink-leds-cmd",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-meraki-leds-actions-rpc:blink-leds-cmd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-meraki-leds-actions-rpc:blink-leds-cmd"
                  ]
                },
                "description": "Execute the **blink-leds-cmd** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"chassis-number\": 10,\n  \"action\": \"configured-value\",\n  \"duration\": 300\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-netconf-diag-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-netconf-diag-rpc\n\nRPC operations from `Cisco-IOS-XE-netconf-diag-rpc` module.\n\n**RPCs:** 1 (enable-netconf-diag)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute enable-netconf-diag",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-netconf-diag-rpc:enable-netconf-diag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-netconf-diag-rpc:enable-netconf-diag"
                  ]
                },
                "description": "Execute the **enable-netconf-diag** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"diag-level\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-nwpi-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-nwpi-rpc\n\nRPC operations from `Cisco-IOS-XE-nwpi-rpc` module.\n\n**RPCs:** 3 (device-nwpi, device-pcap-replay, device-nwpi-global)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 3 | Operations: 3",
          "item": [
            {
              "name": "POST Execute device-nwpi",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-nwpi-rpc:device-nwpi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-nwpi-rpc:device-nwpi"
                  ]
                },
                "description": "Execute the **device-nwpi** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"trace-id\": 1,\n  \"action\": \"configured-value\",\n  \"target\": \"configured-value\",\n  \"vpn-id\": 1,\n  \"vrf-name\": \"default\",\n  \"src-ip\": \"configured-value\",\n  \"dst-ip\": \"configured-value\",\n  \"app\": \"configured-value\",\n  \"src-if\": \"configured-value\",\n  \"protocol\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute device-pcap-replay",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-nwpi-rpc:device-pcap-replay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-nwpi-rpc:device-pcap-replay"
                  ]
                },
                "description": "Execute the **device-pcap-replay** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"replay-id\": 1,\n  \"replay-mode\": \"configured-value\",\n  \"replay-role\": \"configured-value\",\n  \"pcap-url\": \"https://10.1.1.1/restconf\",\n  \"src-net-id\": {\n    \"ni-type\": \"configured-value\",\n    \"ni-name\": \"example-1\"\n  },\n  \"tgt-net-id\": {\n    \"ni-type\": \"configured-value\",\n    \"ni-name\": \"example-1\"\n  },\n  \"enable\": true,\n  \"trace-id\": 1,\n  \"trace-mod\": \"configured-value\",\n  \"src-pfx\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute device-nwpi-global",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-nwpi-rpc:device-nwpi-global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-nwpi-rpc:device-nwpi-global"
                  ]
                },
                "description": "Execute the **device-nwpi-global** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"control\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-omp-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-omp-rpc\n\nRPC operations from `Cisco-IOS-XE-omp-rpc` module.\n\n**RPCs:** 1 (sdwan-clear-omp)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute sdwan-clear-omp",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-omp-rpc:sdwan-clear-omp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-omp-rpc:sdwan-clear-omp"
                  ]
                },
                "description": "Execute the **sdwan-clear-omp** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(type-choice)\": {\n    \"peer\": {\n      \"tenant-id\": 1,\n      \"address\": \"10.1.1.1\",\n      \"soft\": \"configured-value\"\n    },\n    \"routes\": {\n      \"tenant-id\": 1\n    },\n    \"multicast\": {\n      \"vpn\": 1\n    },\n    \"tlocs\": true,\n    \"identity\": true,\n    \"all\": true,\n    \"l2-routes\": {\n      \"clear-all-vpn\": true,\n      \"vpn\": 1,\n      \"vc-id\": 1\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-port-bounce-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-port-bounce-rpc\n\nRPC operations from `Cisco-IOS-XE-port-bounce-rpc` module.\n\n**RPCs:** 1 (port-bounce)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute port-bounce",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-port-bounce-rpc:port-bounce",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-port-bounce-rpc:port-bounce"
                  ]
                },
                "description": "Execute the **port-bounce** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"if-name\": \"GigabitEthernet1/0/1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-port-security-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-port-security-rpc\n\nRPC operations from `Cisco-IOS-XE-port-security-rpc` module.\n\n**RPCs:** 1 (clear-port-security)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute clear-port-security",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-port-security-rpc:clear-port-security",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-port-security-rpc:clear-port-security"
                  ]
                },
                "description": "Execute the **clear-port-security** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mode\": \"normal\",\n  \"(if-addr-choice)\": {\n    \"intf\": {\n      \"if-name-type\": {\n        \"if-type\": {},\n        \"if-name\": {}\n      }\n    },\n    \"vlan-access\": {\n      \"if-with-access\": {\n        \"if-type\": {},\n        \"if-name\": {}\n      },\n      \"access\": true\n    },\n    \"vlan-voice\": {\n      \"if-with-voice\": {\n        \"if-type\": {},\n        \"if-name\": {}\n      },\n      \"voice\": true\n    },\n    \"if-vlan-trunk\": {\n      \"if-with-trunk\": {\n        \"if-type\": {},\n        \"if-name\": {}\n      },\n      \"vlan-trunk\": {\n        \"start-id\": {},\n        \"end-id\": {}\n      }\n    },\n    \"mac-addr\": {\n      \"mac-address\": \"00:1a:2b:3c:4d:5e\",\n      \"vlan\": {\n        \"start-id\": {},\n        \"end-id\": {}\n      }\n    },\n    \"ps-none\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-power-supply-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-power-supply-rpc\n\nRPC operations from `Cisco-IOS-XE-power-supply-rpc` module.\n\n**RPCs:** 1 (set-pwr-supply-slot-state)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute set-pwr-supply-slot-state",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-power-supply-rpc:set-pwr-supply-slot-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-power-supply-rpc:set-pwr-supply-slot-state"
                  ]
                },
                "description": "Execute the **set-pwr-supply-slot-state** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"supply\": {\n    \"switch-number\": 10,\n    \"slot\": \"configured-value\",\n    \"state\": \"active\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-rescue-config-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-rescue-config-rpc\n\nRPC operations from `Cisco-IOS-XE-rescue-config-rpc` module.\n\n**RPCs:** 5 (rescue-config-get, rescue-config-apply, rescue-config-save, rescue-config-delete, rescue-config-info)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 5 | Operations: 5",
          "item": [
            {
              "name": "POST Execute rescue-config-get",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-rescue-config-rpc:rescue-config-get",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-rescue-config-rpc:rescue-config-get"
                  ]
                },
                "description": "Execute the **rescue-config-get** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute rescue-config-apply",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-rescue-config-rpc:rescue-config-apply",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-rescue-config-rpc:rescue-config-apply"
                  ]
                },
                "description": "Execute the **rescue-config-apply** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"force\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute rescue-config-save",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-rescue-config-rpc:rescue-config-save",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-rescue-config-rpc:rescue-config-save"
                  ]
                },
                "description": "Execute the **rescue-config-save** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"comment\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute rescue-config-delete",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-rescue-config-rpc:rescue-config-delete",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-rescue-config-rpc:rescue-config-delete"
                  ]
                },
                "description": "Execute the **rescue-config-delete** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute rescue-config-info",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-rescue-config-rpc:rescue-config-info",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-rescue-config-rpc:rescue-config-info"
                  ]
                },
                "description": "Execute the **rescue-config-info** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-sdwan-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-sdwan-rpc\n\nRPC operations from `Cisco-IOS-XE-sdwan-rpc` module.\n\n**RPCs:** 1 (sdwan-action-audit)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute sdwan-action-audit",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-sdwan-rpc:sdwan-action-audit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-sdwan-rpc:sdwan-action-audit"
                  ]
                },
                "description": "Execute the **sdwan-action-audit** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"uuid\": \"1\",\n  \"route-type\": \"configured-value\",\n  \"file-format\": \"configured-value\",\n  \"file-to-delete\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-sslproxy-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-sslproxy-rpc\n\nRPC operations from `Cisco-IOS-XE-sslproxy-rpc` module.\n\n**RPCs:** 4 (sslproxy-update-ca-bundle, sslproxy-update-ca-tp-label, sslproxy-update-ec-key, sslproxy-update-rsa-key)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 4 | Operations: 4",
          "item": [
            {
              "name": "POST Execute sslproxy-update-ca-bundle",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-sslproxy-rpc:sslproxy-update-ca-bundle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-sslproxy-rpc:sslproxy-update-ca-bundle"
                  ]
                },
                "description": "Execute the **sslproxy-update-ca-bundle** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute sslproxy-update-ca-tp-label",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-sslproxy-rpc:sslproxy-update-ca-tp-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-sslproxy-rpc:sslproxy-update-ca-tp-label"
                  ]
                },
                "description": "Execute the **sslproxy-update-ca-tp-label** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute sslproxy-update-ec-key",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-sslproxy-rpc:sslproxy-update-ec-key",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-sslproxy-rpc:sslproxy-update-ec-key"
                  ]
                },
                "description": "Execute the **sslproxy-update-ec-key** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute sslproxy-update-rsa-key",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-sslproxy-rpc:sslproxy-update-rsa-key",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-sslproxy-rpc:sslproxy-update-rsa-key"
                  ]
                },
                "description": "Execute the **sslproxy-update-rsa-key** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-stack-power-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-stack-power-rpc\n\nRPC operations from `Cisco-IOS-XE-stack-power-rpc` module.\n\n**RPCs:** 1 (set-stkpwr-port-state)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute set-stkpwr-port-state",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-stack-power-rpc:set-stkpwr-port-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-stack-power-rpc:set-stkpwr-port-state"
                  ]
                },
                "description": "Execute the **set-stkpwr-port-state** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"switch-number\": 10,\n  \"port-number\": 443,\n  \"stkpwr-state\": \"active\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-switch-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-switch-rpc\n\nRPC operations from `Cisco-IOS-XE-switch-rpc` module.\n\n**RPCs:** 1 (switch)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute switch",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-switch-rpc:switch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-switch-rpc:switch"
                  ]
                },
                "description": "Execute the **switch** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"switch-number-drop-node-name\": 0,\n  \"(pri-renum-stack)\": {\n    \"priority\": 100,\n    \"renumber\": 10,\n    \"statck\": {},\n    \"stack\": {\n      \"port\": {\n        \"port-number-drop-node-name\": {},\n        \"enable\": {},\n        \"disable\": {}\n      }\n    },\n    \"role\": {\n      \"active\": true,\n      \"standby\": true\n    }\n  },\n  \"clear\": {\n    \"stack-mode\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-tech-support-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-tech-support-rpc\n\nRPC operations from `Cisco-IOS-XE-tech-support-rpc` module.\n\n**RPCs:** 2 (tech-support-archive, tech-support-file)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 2 | Operations: 2",
          "item": [
            {
              "name": "POST Execute tech-support-archive",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-tech-support-rpc:tech-support-archive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-tech-support-rpc:tech-support-archive"
                  ]
                },
                "description": "Execute the **tech-support-archive** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"archive\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute tech-support-file",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-tech-support-rpc:tech-support-file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-tech-support-rpc:tech-support-file"
                  ]
                },
                "description": "Execute the **tech-support-file** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(info-type-choice)\": {\n    \"default-option\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-trace-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-trace-rpc\n\nRPC operations from `Cisco-IOS-XE-trace-rpc` module.\n\n**RPCs:** 2 (trace-archive, trace-message)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 2 | Operations: 2",
          "item": [
            {
              "name": "POST Execute trace-archive",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-trace-rpc:trace-archive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-trace-rpc:trace-archive"
                  ]
                },
                "description": "Execute the **trace-archive** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"all\": {\n    \"location\": \"San Jose, CA\",\n    \"file-name\": \"example-1\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute trace-message",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-trace-rpc:trace-message",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-trace-rpc:trace-message"
                  ]
                },
                "description": "Execute the **trace-message** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"trace-all-options\": {\n    \"file-info\": {\n      \"file-location\": \"configured-value\",\n      \"file-name\": \"example-1\"\n    },\n    \"trace-filter-options\": {\n      \"metadata\": true,\n      \"pcap-extract\": true,\n      \"debug-level-id\": \"1\",\n      \"consumer\": \"configured-value\",\n      \"tof-flag\": true,\n      \"marker\": {\n        \"start-marker-type\": {},\n        \"end-marker-type\": {},\n        \"start-marker\": {},\n        \"end-marker\": {}\n      },\n      \"interval\": {\n        \"start-type\": {},\n        \"start-interval\": {},\n        \"end-type\": {},\n        \"end-interval\": {}\n      },\n      \"timestamp\": {\n        \"start-timestamp\": {},\n        \"end-timestamp\": {}\n      },\n      \"module\": \"configured-value\",\n      \"filter\": {\n        \"(filter-by-choice)\": {}\n      }\n    },\n    \"(scope-type-by-choice)\": {\n      \"process\": \"configured-value\",\n      \"profile\": {\n        \"profile-option\": {},\n        \"profile-location\": {},\n        \"profile-file\": {},\n        \"predefined-profile\": {}\n      }\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-uac-actions-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-uac-actions-rpc\n\nRPC operations from `Cisco-IOS-XE-uac-actions-rpc` module.\n\n**RPCs:** 1 (uac-prefer-uplink)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute uac-prefer-uplink",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-uac-actions-rpc:uac-prefer-uplink",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-uac-actions-rpc:uac-prefer-uplink"
                  ]
                },
                "description": "Execute the **uac-prefer-uplink** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ip-type\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-ucse-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-ucse-rpc\n\nRPC operations from `Cisco-IOS-XE-ucse-rpc` module.\n\n**RPCs:** 1 (ucse)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute ucse",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-ucse-rpc:ucse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-ucse-rpc:ucse"
                  ]
                },
                "description": "Execute the **ucse** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"subslot\": \"configured-value\",\n  \"(command-choice)\": {\n    \"imc\": {\n      \"password-reset\": true\n    },\n    \"server\": {\n      \"(server-command-choice)\": {\n        \"cmos-reset\": {},\n        \"password-reset\": {},\n        \"reload\": {},\n        \"reset\": {},\n        \"start\": {},\n        \"stop\": {}\n      }\n    },\n    \"shutdown\": false,\n    \"statistics\": {\n      \"clear\": true\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-utd-actions-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-utd-actions-rpc\n\nRPC operations from `Cisco-IOS-XE-utd-actions-rpc` module.\n\n**RPCs:** 5 (utd-custom-signature-apply, utd-custom-sig-glbl-apply, utd-custom-signature-load, utd-custom-sig-glbl-load, utd-custom-signature-validate)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 5 | Operations: 5",
          "item": [
            {
              "name": "POST Execute utd-custom-signature-apply",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-utd-actions-rpc:utd-custom-signature-apply",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-utd-actions-rpc:utd-custom-signature-apply"
                  ]
                },
                "description": "Execute the **utd-custom-signature-apply** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"profile-name\": \"example-1\",\n  \"filename\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute utd-custom-sig-glbl-apply",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-utd-actions-rpc:utd-custom-sig-glbl-apply",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-utd-actions-rpc:utd-custom-sig-glbl-apply"
                  ]
                },
                "description": "Execute the **utd-custom-sig-glbl-apply** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filename\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute utd-custom-signature-load",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-utd-actions-rpc:utd-custom-signature-load",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-utd-actions-rpc:utd-custom-signature-load"
                  ]
                },
                "description": "Execute the **utd-custom-signature-load** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"profile-name\": \"example-1\",\n  \"filename\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute utd-custom-sig-glbl-load",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-utd-actions-rpc:utd-custom-sig-glbl-load",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-utd-actions-rpc:utd-custom-sig-glbl-load"
                  ]
                },
                "description": "Execute the **utd-custom-sig-glbl-load** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filename\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute utd-custom-signature-validate",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-utd-actions-rpc:utd-custom-signature-validate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-utd-actions-rpc:utd-custom-signature-validate"
                  ]
                },
                "description": "Execute the **utd-custom-signature-validate** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filename\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-utd-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-utd-rpc\n\nRPC operations from `Cisco-IOS-XE-utd-rpc` module.\n\n**RPCs:** 1 (utd)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute utd",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-utd-rpc:utd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-utd-rpc:utd"
                  ]
                },
                "description": "Execute the **utd** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(feature)\": {\n    \"threat-inspection\": {\n      \"signature\": {\n        \"(method)\": {}\n      }\n    },\n    \"web-filter\": {\n      \"database\": {\n        \"update\": {}\n      }\n    },\n    \"file-inspection\": {\n      \"analysis\": {\n        \"apikey\": {}\n      }\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-verify-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-verify-rpc\n\nRPC operations from `Cisco-IOS-XE-verify-rpc` module.\n\n**RPCs:** 1 (verify)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute verify",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-verify-rpc:verify",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-verify-rpc:verify"
                  ]
                },
                "description": "Execute the **verify** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"file-path\": \"/data/example\",\n  \"hash-algo\": \"configured-value\",\n  \"hash\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-voice-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-voice-rpc\n\nRPC operations from `Cisco-IOS-XE-voice-rpc` module.\n\n**RPCs:** 1 (voice-register)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute voice-register",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-voice-rpc:voice-register",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-voice-rpc:voice-register"
                  ]
                },
                "description": "Execute the **voice-register** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"webex-sgw\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-wireless-access-point-cfg-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-wireless-access-point-cfg-rpc\n\nRPC operations from `Cisco-IOS-XE-wireless-access-point-cfg-rpc` module.\n\n**RPCs:** 41 (set-ap-vlan-tag, set-ap-vlan-tag-all, set-ap-monitor-mode-chnl-optimize, set-ap-mode, set-lrad-led-state...)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 41 | Operations: 41",
          "item": [
            {
              "name": "POST Execute set-ap-vlan-tag",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-vlan-tag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-vlan-tag"
                  ]
                },
                "description": "Execute the **set-ap-vlan-tag** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vlan-id\": 100,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-vlan-tag-all",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-vlan-tag-all",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-vlan-tag-all"
                  ]
                },
                "description": "Execute the **set-ap-vlan-tag-all** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vlan-id\": 100\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-monitor-mode-chnl-optimize",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-monitor-mode-chnl-optimize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-monitor-mode-chnl-optimize"
                  ]
                },
                "description": "Execute the **set-ap-monitor-mode-chnl-optimize** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mode\": \"normal\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-mode",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-mode"
                  ]
                },
                "description": "Execute the **set-ap-mode** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"clear-mode\": true,\n  \"mode\": \"normal\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-lrad-led-state",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-lrad-led-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-lrad-led-state"
                  ]
                },
                "description": "Execute the **set-lrad-led-state** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ledstate\": true,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-lrad-led-flash",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-lrad-led-flash",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-lrad-led-flash"
                  ]
                },
                "description": "Execute the **set-lrad-led-flash** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"flash-sec\": 1,\n  \"led-flash-state\": true,\n  \"config-type\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-location",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-location",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-location"
                  ]
                },
                "description": "Execute the **set-ap-location** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"location\": \"San Jose, CA\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-name",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-name"
                  ]
                },
                "description": "Execute the **set-ap-name** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"name\": \"example-1\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-antenna-band-mode",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-antenna-band-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-antenna-band-mode"
                  ]
                },
                "description": "Execute the **set-ap-antenna-band-mode** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"band-val\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-country",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-country",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-country"
                  ]
                },
                "description": "Execute the **set-ap-country** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"country-string\": \"10\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-slot-ext-antenna-gain",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-slot-ext-antenna-gain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-slot-ext-antenna-gain"
                  ]
                },
                "description": "Execute the **set-ap-slot-ext-antenna-gain** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"external-antenna-gain\": 1,\n  \"slot-id\": 1,\n  \"band\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-slot-phy-ht-chan",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-slot-phy-ht-chan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-slot-phy-ht-chan"
                  ]
                },
                "description": "Execute the **set-ap-slot-phy-ht-chan** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"chan\": 1,\n  \"slot-id\": 1,\n  \"band\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-slot-phy-ht-customize",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-slot-phy-ht-customize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-slot-phy-ht-customize"
                  ]
                },
                "description": "Execute the **set-ap-slot-phy-ht-customize** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"slot-id\": 1,\n  \"band\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-slot-dual-radio-mode",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-rad-slot-dual-radio-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-rad-slot-dual-radio-mode"
                  ]
                },
                "description": "Execute the **set-rad-slot-dual-radio-mode** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mode\": 1,\n  \"dual-radio-mode-op\": 1,\n  \"slot-id\": 1,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-slot-chan-width-label",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-slot-chan-width-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-slot-chan-width-label"
                  ]
                },
                "description": "Execute the **set-slot-chan-width-label** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"chan-width\": \"1\",\n  \"slot-id\": 1,\n  \"band\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-band-cleanair",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-band-cleanair",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-band-cleanair"
                  ]
                },
                "description": "Execute the **set-ap-band-cleanair** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mode\": true,\n  \"band\": 1,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute dual-band-role",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:dual-band-role",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:dual-band-role"
                  ]
                },
                "description": "Execute the **dual-band-role** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"slot-id\": 1,\n  \"band\": 1,\n  \"mode\": 1,\n  \"sub-mode\": 1,\n  \"chan\": 1,\n  \"ip-addr\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute fra-revert-data",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:fra-revert-data",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:fra-revert-data"
                  ]
                },
                "description": "Execute the **fra-revert-data** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"fra-revert-auto-only\": true,\n  \"fra-revert-mode\": true,\n  \"band\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-slot-he-bss-color",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-rad-slot-he-bss-color",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-rad-slot-he-bss-color"
                  ]
                },
                "description": "Execute the **set-rad-slot-he-bss-color** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"bss-color\": 1,\n  \"radiotype-check\": 1,\n  \"slot-id\": 1,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-slot-bss-col-mode",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-rad-slot-bss-col-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-rad-slot-bss-col-mode"
                  ]
                },
                "description": "Execute the **set-rad-slot-bss-col-mode** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mode\": 1,\n  \"radiotype-check\": \"configured-value\",\n  \"slot-id\": 1,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute spam-rad-slot-ant-sel-set",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:spam-rad-slot-ant-sel-set",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:spam-rad-slot-ant-sel-set"
                  ]
                },
                "description": "Execute the **spam-rad-slot-ant-sel-set** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ant-id\": 1,\n  \"enable\": true,\n  \"slot-id\": 1,\n  \"band\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-slot-db-chan-mode",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-rad-slot-db-chan-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-rad-slot-db-chan-mode"
                  ]
                },
                "description": "Execute the **set-rad-slot-db-chan-mode** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"slot-id\": \"1\",\n  \"band\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-slot-db-chan-number",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-rad-slot-db-chan-number",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-rad-slot-db-chan-number"
                  ]
                },
                "description": "Execute the **set-rad-slot-db-chan-number** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"slot-id\": \"1\",\n  \"chan\": 1,\n  \"band\": 1,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute dual-band-radio-band",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:dual-band-radio-band",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:dual-band-radio-band"
                  ]
                },
                "description": "Execute the **dual-band-radio-band** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"slot-id\": 1,\n  \"band\": 1,\n  \"toband\": 1,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute lan-port-config-enable",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:lan-port-config-enable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:lan-port-config-enable"
                  ]
                },
                "description": "Execute the **lan-port-config-enable** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"port-id\": \"1\",\n  \"mode\": true,\n  \"poe-enabled\": true,\n  \"power-level-id\": 1,\n  \"port-config-type\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-indoor-enable",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-indoor-enable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-indoor-enable"
                  ]
                },
                "description": "Execute the **set-ap-indoor-enable** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enable\": 1,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-controller",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-controller",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-controller"
                  ]
                },
                "description": "Execute the **set-ap-controller** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mode\": \"normal\",\n  \"controller-name\": \"example-1\",\n  \"index\": \"0\",\n  \"ipaddr\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-site-reset",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-site-reset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-site-reset"
                  ]
                },
                "description": "Execute the **set-ap-site-reset** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"site-tag-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-led-brightness-level",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-led-brightness-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-led-brightness-level"
                  ]
                },
                "description": "Execute the **set-ap-led-brightness-level** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"led-brightness-level\": 1,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-slot-tx-power-level",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-slot-tx-power-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-slot-tx-power-level"
                  ]
                },
                "description": "Execute the **set-ap-slot-tx-power-level** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"tx-power-level\": 1,\n  \"slot-id\": 1,\n  \"band\": 1,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-slot-antenna-mode",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-slot-antenna-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-slot-antenna-mode"
                  ]
                },
                "description": "Execute the **set-ap-slot-antenna-mode** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"antenna-mode\": \"configured-value\",\n  \"slot-id\": 1,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-admin-state",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-admin-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-admin-state"
                  ]
                },
                "description": "Execute the **set-ap-admin-state** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mode\": \"normal\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-slot-admin-state",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-slot-admin-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-slot-admin-state"
                  ]
                },
                "description": "Execute the **set-ap-slot-admin-state** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mode\": \"normal\",\n  \"slot-id\": 1,\n  \"band\": 1,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-slot-tx-power-customize",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-slot-tx-power-customize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-slot-tx-power-customize"
                  ]
                },
                "description": "Execute the **set-ap-slot-tx-power-customize** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mode\": \"normal\",\n  \"slot-id\": 1,\n  \"band\": 1,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute mdns-ap-config",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:mdns-ap-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:mdns-ap-config"
                  ]
                },
                "description": "Execute the **mdns-ap-config** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mdns-ap-cli-mode\": \"configured-value\",\n  \"vlan\": 100,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-sensor-cfg",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-sensor-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-sensor-cfg"
                  ]
                },
                "description": "Execute the **set-ap-sensor-cfg** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"sensor-type\": \"configured-value\",\n  \"admin-state\": \"up\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-ranging",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-ranging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-ranging"
                  ]
                },
                "description": "Execute the **set-ap-ranging** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"site-tag-name\": \"example-1\",\n  \"all-aps\": true,\n  \"ranging-mode\": \"configured-value\",\n  \"ranging-band\": \"configured-value\",\n  \"ranging-method\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-coordinates",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-coordinates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-coordinates"
                  ]
                },
                "description": "Execute the **set-ap-coordinates** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"latitude\": \"configured-value\",\n  \"longitude\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-floor",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-floor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-floor"
                  ]
                },
                "description": "Execute the **set-ap-floor** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"floor\": 1,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-group-ranging",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-group-ranging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-group-ranging"
                  ]
                },
                "description": "Execute the **set-ap-group-ranging** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ranging-group-name\": \"example-1\",\n  \"mac-addr\": [\n    \"configured-value\"\n  ],\n  \"ranging-mode\": \"configured-value\",\n  \"ranging-band\": \"configured-value\",\n  \"ranging-method\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-uwb-dltdoa",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-uwb-dltdoa",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cfg-rpc:set-ap-uwb-dltdoa"
                  ]
                },
                "description": "Execute the **set-ap-uwb-dltdoa** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cluster-grp-json-params\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-wireless-access-point-cmd-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-wireless-access-point-cmd-rpc\n\nRPC operations from `Cisco-IOS-XE-wireless-access-point-cmd-rpc` module.\n\n**RPCs:** 51 (set-rad-predownload-all, convert-ap-to-meraki, set-ap-tags, set-rad-capwap-reset, ap-reset...)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 51 | Operations: 51",
          "item": [
            {
              "name": "POST Execute set-rad-predownload-all",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-rad-predownload-all",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-rad-predownload-all"
                  ]
                },
                "description": "Execute the **set-rad-predownload-all** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"uuid\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute convert-ap-to-meraki",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:convert-ap-to-meraki",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:convert-ap-to-meraki"
                  ]
                },
                "description": "Execute the **convert-ap-to-meraki** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"force-convert\": true,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-tags",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-tags",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-tags"
                  ]
                },
                "description": "Execute the **set-ap-tags** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-capwap-reset",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-rad-capwap-reset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-rad-capwap-reset"
                  ]
                },
                "description": "Execute the **set-rad-capwap-reset** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-reset",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-reset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-reset"
                  ]
                },
                "description": "Execute the **ap-reset** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"reset-ap\": true,\n  \"(ap-identifier-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-image-upgrade-dry-run",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-image-upgrade-dry-run",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-image-upgrade-dry-run"
                  ]
                },
                "description": "Execute the **ap-image-upgrade-dry-run** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-image-predownload-abort",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-image-predownload-abort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-image-predownload-abort"
                  ]
                },
                "description": "Execute the **ap-image-predownload-abort** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"uuid\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute image-site-filter-add",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:image-site-filter-add",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:image-site-filter-add"
                  ]
                },
                "description": "Execute the **image-site-filter-add** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"image-name\": \"example-1\",\n  \"site-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute image-site-filter-remove",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:image-site-filter-remove",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:image-site-filter-remove"
                  ]
                },
                "description": "Execute the **image-site-filter-remove** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"image-name\": \"example-1\",\n  \"site-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute image-site-filter-clear",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:image-site-filter-clear",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:image-site-filter-clear"
                  ]
                },
                "description": "Execute the **image-site-filter-clear** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"image-name\": \"example-1\",\n  \"uuid\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute image-site-filter-apply",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:image-site-filter-apply",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:image-site-filter-apply"
                  ]
                },
                "description": "Execute the **image-site-filter-apply** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"image-name\": \"example-1\",\n  \"uuid\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute image-site-filter-remove-all",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:image-site-filter-remove-all",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:image-site-filter-remove-all"
                  ]
                },
                "description": "Execute the **image-site-filter-remove-all** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"image-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-move-destination",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-move-destination",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-move-destination"
                  ]
                },
                "description": "Execute the **ap-move-destination** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"uuid\": \"1\",\n  \"controller-name\": \"example-1\",\n  \"controller-ip\": \"configured-value\",\n  \"report-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-upgrade-destination",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-upgrade-destination",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-upgrade-destination"
                  ]
                },
                "description": "Execute the **ap-upgrade-destination** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"uuid\": \"1\",\n  \"controller-name\": \"example-1\",\n  \"controller-ip\": \"configured-value\",\n  \"reset\": true,\n  \"fallback\": true,\n  \"secondary-wlc-name\": \"example-1\",\n  \"secondary-wlc-ip\": \"configured-value\",\n  \"tertiary-wlc-name\": \"example-1\",\n  \"tertiary-wlc-ip\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute clear-ap-personal-ssid",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:clear-ap-personal-ssid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:clear-ap-personal-ssid"
                  ]
                },
                "description": "Execute the **clear-ap-personal-ssid** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-reset-button",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-reset-button",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-reset-button"
                  ]
                },
                "description": "Execute the **set-ap-reset-button** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"reset-button-state\": true,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-tftp-downgrade",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-tftp-downgrade",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-tftp-downgrade"
                  ]
                },
                "description": "Execute the **set-ap-tftp-downgrade** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ip-addr\": \"configured-value\",\n  \"file-name\": \"example-1\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-static-ip-enable",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-static-ip-enable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-static-ip-enable"
                  ]
                },
                "description": "Execute the **set-ap-static-ip-enable** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ip-addr\": \"configured-value\",\n  \"net-mask\": \"configured-value\",\n  \"prefix\": 1,\n  \"gateway\": \"10.1.1.1\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute rad-static-ip-domain-set",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:rad-static-ip-domain-set",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:rad-static-ip-domain-set"
                  ]
                },
                "description": "Execute the **rad-static-ip-domain-set** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"domain\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-static-ip-namesrvr",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-static-ip-namesrvr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-static-ip-namesrvr"
                  ]
                },
                "description": "Execute the **set-ap-static-ip-namesrvr** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"nameserver\": \"example-1\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute get-rad-crash-data-file",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:get-rad-crash-data-file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:get-rad-crash-data-file"
                  ]
                },
                "description": "Execute the **get-rad-crash-data-file** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"opcode\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute network-diagnostics",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:network-diagnostics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:network-diagnostics"
                  ]
                },
                "description": "Execute the **network-diagnostics** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-static-ip-disable",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-static-ip-disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-static-ip-disable"
                  ]
                },
                "description": "Execute the **set-ap-static-ip-disable** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-predownload",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-predownload",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-predownload"
                  ]
                },
                "description": "Execute the **set-ap-predownload** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute swap-ap-image",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:swap-ap-image",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:swap-ap-image"
                  ]
                },
                "description": "Execute the **swap-ap-image** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute clear-ap-upgrade-report-name",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:clear-ap-upgrade-report-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:clear-ap-upgrade-report-name"
                  ]
                },
                "description": "Execute the **clear-ap-upgrade-report-name** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"report-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute clear-ap-config",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:clear-ap-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:clear-ap-config"
                  ]
                },
                "description": "Execute the **clear-ap-config** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"operation-type\": \"50\",\n  \"(ap-identifier-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-spectral-recording",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-spectral-recording",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-spectral-recording"
                  ]
                },
                "description": "Execute the **ap-spectral-recording** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"event-type\": \"interface-state-change\",\n  \"band\": \"configured-value\",\n  \"device-type\": \"configured-value\",\n  \"channel\": 36,\n  \"frequency\": 1,\n  \"severity\": 1,\n  \"number-of-captures\": 10,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-usb",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-usb",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-usb"
                  ]
                },
                "description": "Execute the **set-ap-usb** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ap-usb-enable\": true,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-usb-override",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-usb-override",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-usb-override"
                  ]
                },
                "description": "Execute the **set-ap-usb-override** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ap-usb-override\": true,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute clear-ap-predownload-statistics",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:clear-ap-predownload-statistics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:clear-ap-predownload-statistics"
                  ]
                },
                "description": "Execute the **clear-ap-predownload-statistics** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute clear-ap-meraki-stats",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:clear-ap-meraki-stats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:clear-ap-meraki-stats"
                  ]
                },
                "description": "Execute the **clear-ap-meraki-stats** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-tag-reval",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-tag-reval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-tag-reval"
                  ]
                },
                "description": "Execute the **ap-tag-reval** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-nbr-loadbalance-start",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-nbr-loadbalance-start",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-nbr-loadbalance-start"
                  ]
                },
                "description": "Execute the **ap-nbr-loadbalance-start** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-nbr-loadbalance-apply",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-nbr-loadbalance-apply",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-nbr-loadbalance-apply"
                  ]
                },
                "description": "Execute the **ap-nbr-loadbalance-apply** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-nbr-loadbalance-clear",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-nbr-loadbalance-clear",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-nbr-loadbalance-clear"
                  ]
                },
                "description": "Execute the **ap-nbr-loadbalance-clear** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-role-ap",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-role-ap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-role-ap"
                  ]
                },
                "description": "Execute the **set-role-ap** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"role\": \"15\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-ap-keepalive-state",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-keepalive-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-ap-keepalive-state"
                  ]
                },
                "description": "Execute the **set-ap-keepalive-state** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enable\": true,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-open-rrm-tx-power-auto",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-open-rrm-tx-power-auto",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-open-rrm-tx-power-auto"
                  ]
                },
                "description": "Execute the **set-open-rrm-tx-power-auto** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"slot-id\": 1,\n  \"band\": \"configured-value\",\n  \"tx-power\": 1,\n  \"power-change-reason\": \"configured-value\",\n  \"rrm-6ghz-lpi-max\": 1,\n  \"(ap-identifier-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-open-rrm-channel-auto",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-open-rrm-channel-auto",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-open-rrm-channel-auto"
                  ]
                },
                "description": "Execute the **set-open-rrm-channel-auto** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"slot-id\": 1,\n  \"band\": \"configured-value\",\n  \"primary-chan\": 1,\n  \"extension-chan\": 1,\n  \"curr-cost-metric\": 1,\n  \"new-cost-metric\": 1,\n  \"secondary-chan-1\": 1,\n  \"secondary-chan-2\": 1,\n  \"chan-width\": \"1\",\n  \"second-best-chan\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-image-upgrade-abort",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-image-upgrade-abort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-image-upgrade-abort"
                  ]
                },
                "description": "Execute the **ap-image-upgrade-abort** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute all-ap-lsc-renew",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:all-ap-lsc-renew",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:all-ap-lsc-renew"
                  ]
                },
                "description": "Execute the **all-ap-lsc-renew** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"due-days\": 1,\n  \"site-tag-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute per-ap-lsc-renew",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:per-ap-lsc-renew",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:per-ap-lsc-renew"
                  ]
                },
                "description": "Execute the **per-ap-lsc-renew** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-lrad-geolocation-height",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-lrad-geolocation-height",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-lrad-geolocation-height"
                  ]
                },
                "description": "Execute the **set-lrad-geolocation-height** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"height\": 1,\n  \"height-uncertainty\": 1,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute clear-lrad-geolocation-height",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:clear-lrad-geolocation-height",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:clear-lrad-geolocation-height"
                  ]
                },
                "description": "Execute the **clear-lrad-geolocation-height** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-lrad-geolocation-gnss",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-lrad-geolocation-gnss",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-lrad-geolocation-gnss"
                  ]
                },
                "description": "Execute the **set-lrad-geolocation-gnss** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cable-len\": 1,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-gnss-interval",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-gnss-interval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:set-gnss-interval"
                  ]
                },
                "description": "Execute the **set-gnss-interval** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"report-interval\": 1,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-sensor-interval",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-sensor-interval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-sensor-interval"
                  ]
                },
                "description": "Execute the **ap-sensor-interval** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"site-tag-name\": \"example-1\",\n  \"sensor-type\": \"configured-value\",\n  \"duration\": 300\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-move",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-move",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-move"
                  ]
                },
                "description": "Execute the **ap-move** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"destination-name\": \"example-1\",\n  \"destination-ip\": \"10.1.1.1\",\n  \"client-steering\": true,\n  \"client-deauth\": true,\n  \"tx-power-reduction\": true,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-location-update",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-location-update",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-location-update"
                  ]
                },
                "description": "Execute the **ap-location-update** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mac\": \"00:1a:2b:3c:4d:5e\",\n  \"src\": \"configured-value\",\n  \"op-type\": \"configured-value\",\n  \"location-type\": \"configured-value\",\n  \"point\": {\n    \"longitude\": \"configured-value\",\n    \"latitude\": \"configured-value\"\n  },\n  \"ellipse\": {\n    \"major-axis\": 1,\n    \"minor-axis\": 1,\n    \"uncertainty\": 1,\n    \"orientation\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-support-bundle",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-support-bundle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-access-point-cmd-rpc:ap-support-bundle"
                  ]
                },
                "description": "Execute the **ap-support-bundle** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dest-ip\": \"configured-value\",\n  \"dest-username\": \"example-1\",\n  \"dest-password\": \"configured-value\",\n  \"dest-path\": \"/data/example\",\n  \"mode\": \"normal\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-wireless-actions-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-wireless-actions-rpc\n\nRPC operations from `Cisco-IOS-XE-wireless-actions-rpc` module.\n\n**RPCs:** 1 (wireless-cond-debug)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute wireless-cond-debug",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-actions-rpc:wireless-cond-debug",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-actions-rpc:wireless-cond-debug"
                  ]
                },
                "description": "Execute the **wireless-cond-debug** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"delete\": true,\n  \"(condition-choice)\": {\n    \"ip\": \"10.1.1.1\",\n    \"mac\": \"00:1a:2b:3c:4d:5e\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc\n\nRPC operations from `Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc` module.\n\n**RPCs:** 8 (ble-sync-req, ble-scan-req, ble-ibeacon-req, ble-eddy-uid-req, ble-eddy-url-req...)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 8 | Operations: 8",
          "item": [
            {
              "name": "POST Execute ble-sync-req",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc:ble-sync-req",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc:ble-sync-req"
                  ]
                },
                "description": "Execute the **ble-sync-req** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ble-mac\": \"configured-value\",\n  \"(ap-identifier-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ble-scan-req",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc:ble-scan-req",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc:ble-scan-req"
                  ]
                },
                "description": "Execute the **ble-scan-req** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interval-sec\": 1,\n  \"window-msec\": 1,\n  \"max-value\": 1,\n  \"filter\": \"configured-value\",\n  \"state\": \"active\",\n  \"(ap-identifier-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ble-ibeacon-req",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc:ble-ibeacon-req",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc:ble-ibeacon-req"
                  ]
                },
                "description": "Execute the **ble-ibeacon-req** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"uuid\": \"1\",\n  \"major\": 1,\n  \"minor\": 1,\n  \"tx-power\": 1,\n  \"frequency-msec\": 1,\n  \"adv-tx-power\": 1,\n  \"(ap-identifier-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ble-eddy-uid-req",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc:ble-eddy-uid-req",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc:ble-eddy-uid-req"
                  ]
                },
                "description": "Execute the **ble-eddy-uid-req** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"instance-id\": \"1\",\n  \"namespace\": \"example-1\",\n  \"(ap-identifier-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ble-eddy-url-req",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc:ble-eddy-url-req",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc:ble-eddy-url-req"
                  ]
                },
                "description": "Execute the **ble-eddy-url-req** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"url\": \"https://10.1.1.1/restconf\",\n  \"(ap-identifier-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ble-mgt-admin-req",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc:ble-mgt-admin-req",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc:ble-mgt-admin-req"
                  ]
                },
                "description": "Execute the **ble-mgt-admin-req** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"active\",\n  \"(ap-identifier-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ble-vibeacon-req",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc:ble-vibeacon-req",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc:ble-vibeacon-req"
                  ]
                },
                "description": "Execute the **ble-vibeacon-req** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"beacon-id\": 1,\n  \"status\": \"active\",\n  \"uuid\": \"1\",\n  \"major\": 1,\n  \"minor\": 1,\n  \"tx-power\": 1,\n  \"interval-msec\": 1,\n  \"adv-tx-power\": 1,\n  \"(ap-identifier-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ble-no-adv-profile-req",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc:ble-no-adv-profile-req",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-ble-mgmt-cmd-rpc:ble-no-adv-profile-req"
                  ]
                },
                "description": "Execute the **ble-no-adv-profile-req** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"state\": \"active\",\n  \"(ap-identifier-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-wireless-client-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-wireless-client-rpc\n\nRPC operations from `Cisco-IOS-XE-wireless-client-rpc` module.\n\n**RPCs:** 4 (apf-ms-delete-all, clear-sisf-binding-state, clear-sisf-binding-ip, clear-pmk-cache)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 4 | Operations: 4",
          "item": [
            {
              "name": "POST Execute apf-ms-delete-all",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-client-rpc:apf-ms-delete-all",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-client-rpc:apf-ms-delete-all"
                  ]
                },
                "description": "Execute the **apf-ms-delete-all** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"zone-id\": 1,\n  \"(alternative-choice)\": {\n    \"mac-addr\": \"configured-value\",\n    \"ip-addr\": \"configured-value\",\n    \"user-name\": \"admin\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute clear-sisf-binding-state",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-client-rpc:clear-sisf-binding-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-client-rpc:clear-sisf-binding-state"
                  ]
                },
                "description": "Execute the **clear-sisf-binding-state** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"entry-mac-address\": \"10.1.1.1\",\n  \"binding-state\": \"active\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute clear-sisf-binding-ip",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-client-rpc:clear-sisf-binding-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-client-rpc:clear-sisf-binding-ip"
                  ]
                },
                "description": "Execute the **clear-sisf-binding-ip** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"entry-mac-address\": \"10.1.1.1\",\n  \"ip-addr\": \"configured-value\",\n  \"zone-id\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute clear-pmk-cache",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-client-rpc:clear-pmk-cache",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-client-rpc:clear-pmk-cache"
                  ]
                },
                "description": "Execute the **clear-pmk-cache** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"address\": \"10.1.1.1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-wireless-mesh-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-wireless-mesh-rpc\n\nRPC operations from `Cisco-IOS-XE-wireless-mesh-rpc` module.\n\n**RPCs:** 21 (set-rap-eth-daisychain-super-root, rrm-80211a-channel-update-mesh, rrm-80211b-channel-update-mesh, rrm-80211a-channel-update-mesh-bgn, rrm-80211b-channel-update-mesh-bgn...)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 21 | Operations: 21",
          "item": [
            {
              "name": "POST Execute set-rap-eth-daisychain-super-root",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:set-rap-eth-daisychain-super-root",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:set-rap-eth-daisychain-super-root"
                  ]
                },
                "description": "Execute the **set-rap-eth-daisychain-super-root** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"super-root\": true,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute rrm-80211a-channel-update-mesh",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:rrm-80211a-channel-update-mesh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:rrm-80211a-channel-update-mesh"
                  ]
                },
                "description": "Execute the **rrm-80211a-channel-update-mesh** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute rrm-80211b-channel-update-mesh",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:rrm-80211b-channel-update-mesh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:rrm-80211b-channel-update-mesh"
                  ]
                },
                "description": "Execute the **rrm-80211b-channel-update-mesh** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute rrm-80211a-channel-update-mesh-bgn",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:rrm-80211a-channel-update-mesh-bgn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:rrm-80211a-channel-update-mesh-bgn"
                  ]
                },
                "description": "Execute the **rrm-80211a-channel-update-mesh-bgn** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"bgn-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute rrm-80211b-channel-update-mesh-bgn",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:rrm-80211b-channel-update-mesh-bgn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:rrm-80211b-channel-update-mesh-bgn"
                  ]
                },
                "description": "Execute the **rrm-80211b-channel-update-mesh-bgn** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"bgn-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute exec-linktest-ap",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:exec-linktest-ap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:exec-linktest-ap"
                  ]
                },
                "description": "Execute the **exec-linktest-ap** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dst-ap-mac\": \"configured-value\",\n  \"pkt-per-sec\": 1,\n  \"pkt-size\": 1,\n  \"duration\": 300,\n  \"data-rate-idx\": \"1\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-mesh-security-psk-provisioning-delete",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-security-psk-provisioning-delete",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-security-psk-provisioning-delete"
                  ]
                },
                "description": "Execute the **set-rad-mesh-security-psk-provisioning-delete** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-mesh-preferred-parent-ap",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-preferred-parent-ap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-preferred-parent-ap"
                  ]
                },
                "description": "Execute the **set-rad-mesh-preferred-parent-ap** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mac-address\": \"00:1a:2b:3c:4d:5e\",\n  \"enable\": true,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-mesh-daisy-chain-mode",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-daisy-chain-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-daisy-chain-mode"
                  ]
                },
                "description": "Execute the **set-rad-mesh-daisy-chain-mode** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"daisy-chain-mode\": true,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-mesh-daisy-chain-strict-rap",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-daisy-chain-strict-rap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-daisy-chain-strict-rap"
                  ]
                },
                "description": "Execute the **set-rad-mesh-daisy-chain-strict-rap** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"daisy-chain-strict-rap\": true,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-mesh-block-child",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-block-child",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-block-child"
                  ]
                },
                "description": "Execute the **set-rad-mesh-block-child** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"block-child-state\": true,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-mesh-bhaul-radio",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-bhaul-radio",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-bhaul-radio"
                  ]
                },
                "description": "Execute the **set-rad-mesh-bhaul-radio** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"bhaul-slot-id\": 1,\n  \"bhaul-radio-band\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-mesh-bhaul-tx-rate",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-bhaul-tx-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-bhaul-tx-rate"
                  ]
                },
                "description": "Execute the **set-rad-mesh-bhaul-tx-rate** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"bhaul-rate-mcs-index\": 1,\n  \"spatial-stream\": 1,\n  \"data-rate\": \"configured-value\",\n  \"bhaul-tx-rate-type\": \"configured-value\",\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute rrm-80211b-ap-rrm-channel-update-mesh",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:rrm-80211b-ap-rrm-channel-update-mesh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:rrm-80211b-ap-rrm-channel-update-mesh"
                  ]
                },
                "description": "Execute the **rrm-80211b-ap-rrm-channel-update-mesh** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute rrm-80211a-ap-rrm-channel-update-mesh",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:rrm-80211a-ap-rrm-channel-update-mesh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:rrm-80211a-ap-rrm-channel-update-mesh"
                  ]
                },
                "description": "Execute the **rrm-80211a-ap-rrm-channel-update-mesh** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-mesh-trunking-vlan",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-trunking-vlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-trunking-vlan"
                  ]
                },
                "description": "Execute the **set-rad-mesh-trunking-vlan** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vlan-id\": 100,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-mesh-trunking",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-trunking",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-trunking"
                  ]
                },
                "description": "Execute the **set-rad-mesh-trunking** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"flag\": true,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-mesh-ethernet-access-vlan",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-ethernet-access-vlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-ethernet-access-vlan"
                  ]
                },
                "description": "Execute the **set-rad-mesh-ethernet-access-vlan** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"flag\": true,\n  \"port-num\": 10,\n  \"vlan-id\": 100,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-mesh-bh-primary-ethernet-port",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-bh-primary-ethernet-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-bh-primary-ethernet-port"
                  ]
                },
                "description": "Execute the **set-rad-mesh-bh-primary-ethernet-port** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"port-num\": 10,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-mesh-ethernet-trunk-native-vlan",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-ethernet-trunk-native-vlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-ethernet-trunk-native-vlan"
                  ]
                },
                "description": "Execute the **set-rad-mesh-ethernet-trunk-native-vlan** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"flag\": true,\n  \"port-num\": 10,\n  \"vlan-id\": 100,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute set-rad-mesh-ethernet-trunk-allowed-vlan",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-ethernet-trunk-allowed-vlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-mesh-rpc:set-rad-mesh-ethernet-trunk-allowed-vlan"
                  ]
                },
                "description": "Execute the **set-rad-mesh-ethernet-trunk-allowed-vlan** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"flag\": true,\n  \"port-num\": 10,\n  \"vlan-id\": 100,\n  \"(alternative-choice)\": {\n    \"ap-name\": \"example-1\",\n    \"mac-addr\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-wireless-rogue-authz-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-wireless-rogue-authz-rpc\n\nRPC operations from `Cisco-IOS-XE-wireless-rogue-authz-rpc` module.\n\n**RPCs:** 15 (clear-client-allow-list, clear-ap-allow-list, client-allow-list-export, ap-allow-list-export, client-allow-list-import...)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 15 | Operations: 15",
          "item": [
            {
              "name": "POST Execute clear-client-allow-list",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rogue-authz-rpc:clear-client-allow-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rogue-authz-rpc:clear-client-allow-list"
                  ]
                },
                "description": "Execute the **clear-client-allow-list** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute clear-ap-allow-list",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rogue-authz-rpc:clear-ap-allow-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rogue-authz-rpc:clear-ap-allow-list"
                  ]
                },
                "description": "Execute the **clear-ap-allow-list** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute client-allow-list-export",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rogue-authz-rpc:client-allow-list-export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rogue-authz-rpc:client-allow-list-export"
                  ]
                },
                "description": "Execute the **client-allow-list-export** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filename\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-allow-list-export",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rogue-authz-rpc:ap-allow-list-export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rogue-authz-rpc:ap-allow-list-export"
                  ]
                },
                "description": "Execute the **ap-allow-list-export** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filename\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute client-allow-list-import",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rogue-authz-rpc:client-allow-list-import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rogue-authz-rpc:client-allow-list-import"
                  ]
                },
                "description": "Execute the **client-allow-list-import** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filename\": \"example-1\",\n  \"checksum\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ap-allow-list-import",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rogue-authz-rpc:ap-allow-list-import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rogue-authz-rpc:ap-allow-list-import"
                  ]
                },
                "description": "Execute the **ap-allow-list-import** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filename\": \"example-1\",\n  \"checksum\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute clear-cipher-allow-list",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rogue-authz-rpc:clear-cipher-allow-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rogue-authz-rpc:clear-cipher-allow-list"
                  ]
                },
                "description": "Execute the **clear-cipher-allow-list** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute clear-akm-allow-list",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rogue-authz-rpc:clear-akm-allow-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rogue-authz-rpc:clear-akm-allow-list"
                  ]
                },
                "description": "Execute the **clear-akm-allow-list** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute clear-ssid-allow-list",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rogue-authz-rpc:clear-ssid-allow-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rogue-authz-rpc:clear-ssid-allow-list"
                  ]
                },
                "description": "Execute the **clear-ssid-allow-list** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute cipher-allow-list-export",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rogue-authz-rpc:cipher-allow-list-export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rogue-authz-rpc:cipher-allow-list-export"
                  ]
                },
                "description": "Execute the **cipher-allow-list-export** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filename\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute akm-allow-list-export",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rogue-authz-rpc:akm-allow-list-export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rogue-authz-rpc:akm-allow-list-export"
                  ]
                },
                "description": "Execute the **akm-allow-list-export** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filename\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ssid-allow-list-export",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rogue-authz-rpc:ssid-allow-list-export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rogue-authz-rpc:ssid-allow-list-export"
                  ]
                },
                "description": "Execute the **ssid-allow-list-export** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filename\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute cipher-allow-list-import",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rogue-authz-rpc:cipher-allow-list-import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rogue-authz-rpc:cipher-allow-list-import"
                  ]
                },
                "description": "Execute the **cipher-allow-list-import** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filename\": \"example-1\",\n  \"checksum\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute akm-allow-list-import",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rogue-authz-rpc:akm-allow-list-import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rogue-authz-rpc:akm-allow-list-import"
                  ]
                },
                "description": "Execute the **akm-allow-list-import** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filename\": \"example-1\",\n  \"checksum\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute ssid-allow-list-import",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rogue-authz-rpc:ssid-allow-list-import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rogue-authz-rpc:ssid-allow-list-import"
                  ]
                },
                "description": "Execute the **ssid-allow-list-import** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"filename\": \"example-1\",\n  \"checksum\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-wireless-rrm-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-wireless-rrm-rpc\n\nRPC operations from `Cisco-IOS-XE-wireless-rrm-rpc` module.\n\n**RPCs:** 5 (rrm-80211-dca-restart, rrm-80211-grouping-restart, rrm-rldr-reset, rrm-rldr-heartbeat, rrm-rldr-set)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 5 | Operations: 5",
          "item": [
            {
              "name": "POST Execute rrm-80211-dca-restart",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rrm-rpc:rrm-80211-dca-restart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rrm-rpc:rrm-80211-dca-restart"
                  ]
                },
                "description": "Execute the **rrm-80211-dca-restart** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"band\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute rrm-80211-grouping-restart",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rrm-rpc:rrm-80211-grouping-restart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rrm-rpc:rrm-80211-grouping-restart"
                  ]
                },
                "description": "Execute the **rrm-80211-grouping-restart** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"band\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute rrm-rldr-reset",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rrm-rpc:rrm-rldr-reset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rrm-rpc:rrm-rldr-reset"
                  ]
                },
                "description": "Execute the **rrm-rldr-reset** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"reason\": \"administrative\",\n  \"enable-6ghz\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute rrm-rldr-heartbeat",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rrm-rpc:rrm-rldr-heartbeat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rrm-rpc:rrm-rldr-heartbeat"
                  ]
                },
                "description": "Execute the **rrm-rldr-heartbeat** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"timer\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute rrm-rldr-set",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-rrm-rpc:rrm-rldr-set",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-rrm-rpc:rrm-rldr-set"
                  ]
                },
                "description": "Execute the **rrm-rldr-set** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ip-addr\": \"configured-value\",\n  \"leader-name\": \"example-1\",\n  \"rf-network-name\": \"example-1\",\n  \"enable-6ghz\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-wireless-tech-support-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-wireless-tech-support-rpc\n\nRPC operations from `Cisco-IOS-XE-wireless-tech-support-rpc` module.\n\n**RPCs:** 2 (tech-support-wireless-archive, tech-support-wireless-file)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 2 | Operations: 2",
          "item": [
            {
              "name": "POST Execute tech-support-wireless-archive",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-tech-support-rpc:tech-support-wireless-archive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-tech-support-rpc:tech-support-wireless-archive"
                  ]
                },
                "description": "Execute the **tech-support-wireless-archive** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"archive\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "POST Execute tech-support-wireless-file",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-wireless-tech-support-rpc:tech-support-wireless-file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-wireless-tech-support-rpc:tech-support-wireless-file"
                  ]
                },
                "description": "Execute the **tech-support-wireless-file** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"(info-type-choice)\": {\n    \"wireless-info\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-xcopy-rpc",
          "description": "Cisco IOS-XE RPC - Cisco-IOS-XE-xcopy-rpc\n\nRPC operations from `Cisco-IOS-XE-xcopy-rpc` module.\n\n**RPCs:** 1 (xcopy)\n\nAll endpoints use POST on `/operations/`.\n\nEndpoints: 1 | Operations: 1",
          "item": [
            {
              "name": "POST Execute xcopy",
              "request": {
                "method": "POST",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/operations/Cisco-IOS-XE-xcopy-rpc:xcopy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "operations",
                    "Cisco-IOS-XE-xcopy-rpc:xcopy"
                  ]
                },
                "description": "Execute the **xcopy** RPC operation.\n\nSends a POST request to invoke this action on the device. The request body contains input parameters; the response contains any output values.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"uuid\": \"1\",\n  \"source-path\": \"/data/example\",\n  \"destination-path\": \"/data/example\",\n  \"username\": \"admin\",\n  \"password\": \"***\",\n  \"vrf\": \"default\",\n  \"trustpoint\": \"configured-value\",\n  \"timeout\": 1,\n  \"scheduled-start\": \"configured-value\",\n  \"scheduled-end\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Success (no output)",
                  "status": "Success (no output)",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "8b - Event Streams v2 (Deep Paths)",
      "description": "38 YANG specs | 861 endpoints | 861 operations\n\nTree-based deep-path specs with full depth coverage.",
      "item": [
        {
          "name": "Cisco-IOS-XE-aaa-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-aaa-events\n\nEvent/notification data from `Cisco-IOS-XE-aaa-events` module.\n\n**Endpoints:** 3 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 3 | Operations: 3",
          "item": [
            {
              "name": "GET Notification: test-aaa-authentication-update",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-aaa-events:test-aaa-authentication-update",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-aaa-events:test-aaa-authentication-update"
                  ]
                },
                "description": "YANG notification `test-aaa-authentication-update` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-aaa-events:test-aaa-authentication-update/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-aaa-events:test-aaa-authentication-update",
                    "id"
                  ]
                },
                "description": "YANG notification `id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: auth-result",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-aaa-events:test-aaa-authentication-update/auth-result",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-aaa-events:test-aaa-authentication-update",
                    "auth-result"
                  ]
                },
                "description": "YANG notification `auth-result` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-appqoe-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-appqoe-events\n\nEvent/notification data from `Cisco-IOS-XE-appqoe-events` module.\n\n**Endpoints:** 27 | **Notifications:** 2\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 27 | Operations: 27",
          "item": [
            {
              "name": "GET Notification: appqoe-alarm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-alarm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-alarm"
                  ]
                },
                "description": "YANG notification `appqoe-alarm` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-alarm/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-alarm",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-alarm/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-alarm",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-alarm/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-alarm",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: alarm-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-alarm/alarm-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-alarm",
                    "alarm-id"
                  ]
                },
                "description": "YANG notification `alarm-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: device-mode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-alarm/device-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-alarm",
                    "device-mode"
                  ]
                },
                "description": "YANG notification `device-mode` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: module",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-alarm/module",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-alarm",
                    "module"
                  ]
                },
                "description": "YANG notification `module` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: headline",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-alarm/headline",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-alarm",
                    "headline"
                  ]
                },
                "description": "YANG notification `headline` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: cause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-alarm/cause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-alarm",
                    "cause"
                  ]
                },
                "description": "YANG notification `cause` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: action",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-alarm/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-alarm",
                    "action"
                  ]
                },
                "description": "YANG notification `action` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: detail",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-alarm/detail",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-alarm",
                    "detail"
                  ]
                },
                "description": "YANG notification `detail` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sn-system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-alarm/sn-system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-alarm",
                    "sn-system-ip"
                  ]
                },
                "description": "YANG notification `sn-system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: clear",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-alarm/clear",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-alarm",
                    "clear"
                  ]
                },
                "description": "YANG notification `clear` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sng-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-alarm/sng-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-alarm",
                    "sng-name"
                  ]
                },
                "description": "YANG notification `sng-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: appqoe-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-event"
                  ]
                },
                "description": "YANG notification `appqoe-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-event/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-event",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-event/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-event",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-event/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-event",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-event/event-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-event",
                    "event-id"
                  ]
                },
                "description": "YANG notification `event-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: device-mode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-event/device-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-event",
                    "device-mode"
                  ]
                },
                "description": "YANG notification `device-mode` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: module",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-event/module",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-event",
                    "module"
                  ]
                },
                "description": "YANG notification `module` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: headline",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-event/headline",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-event",
                    "headline"
                  ]
                },
                "description": "YANG notification `headline` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: cause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-event/cause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-event",
                    "cause"
                  ]
                },
                "description": "YANG notification `cause` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: action",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-event/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-event",
                    "action"
                  ]
                },
                "description": "YANG notification `action` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: detail",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-event/detail",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-event",
                    "detail"
                  ]
                },
                "description": "YANG notification `detail` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sn-system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-event/sn-system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-event",
                    "sn-system-ip"
                  ]
                },
                "description": "YANG notification `sn-system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sng-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-appqoe-events:appqoe-event/sng-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-appqoe-events:appqoe-event",
                    "sng-name"
                  ]
                },
                "description": "YANG notification `sng-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-controller-shdsl-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-controller-shdsl-events\n\nEvent/notification data from `Cisco-IOS-XE-controller-shdsl-events` module.\n\n**Endpoints:** 29 | **Notifications:** 6\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 29 | Operations: 29",
          "item": [
            {
              "name": "GET Notification: shdsl-dslgrp-state-update",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-dslgrp-state-update",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-dslgrp-state-update"
                  ]
                },
                "description": "YANG notification `shdsl-dslgrp-state-update` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-dslgrp-state-update/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-dslgrp-state-update",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: shdsl-controller",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-dslgrp-state-update/shdsl-controller",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-dslgrp-state-update",
                    "shdsl-controller"
                  ]
                },
                "description": "YANG notification `shdsl-controller` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: group",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-dslgrp-state-update/group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-dslgrp-state-update",
                    "group"
                  ]
                },
                "description": "YANG notification `group` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: group-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-dslgrp-state-update/group-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-dslgrp-state-update",
                    "group-state"
                  ]
                },
                "description": "YANG notification `group-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: shdsl-efmbond-link-rate-update",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-link-rate-update",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-link-rate-update"
                  ]
                },
                "description": "YANG notification `shdsl-efmbond-link-rate-update` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-link-rate-update/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-link-rate-update",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: shdsl-controller",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-link-rate-update/shdsl-controller",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-link-rate-update",
                    "shdsl-controller"
                  ]
                },
                "description": "YANG notification `shdsl-controller` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: group",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-link-rate-update/group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-link-rate-update",
                    "group"
                  ]
                },
                "description": "YANG notification `group` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: link",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-link-rate-update/link",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-link-rate-update",
                    "link"
                  ]
                },
                "description": "YANG notification `link` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: link-rate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-link-rate-update/link-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-link-rate-update",
                    "link-rate"
                  ]
                },
                "description": "YANG notification `link-rate` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: shdsl-efmbond-config-mismatch-notification",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-config-mismatch-notification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-config-mismatch-notification"
                  ]
                },
                "description": "YANG notification `shdsl-efmbond-config-mismatch-notification` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-config-mismatch-notification/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-config-mismatch-notification",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: shdsl-controller",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-config-mismatch-notification/shdsl-controller",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-config-mismatch-notification",
                    "shdsl-controller"
                  ]
                },
                "description": "YANG notification `shdsl-controller` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: link",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-config-mismatch-notification/link",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-efmbond-config-mismatch-notification",
                    "link"
                  ]
                },
                "description": "YANG notification `link` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: shdsl-tclayer-mismatch-notification",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-tclayer-mismatch-notification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-tclayer-mismatch-notification"
                  ]
                },
                "description": "YANG notification `shdsl-tclayer-mismatch-notification` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-tclayer-mismatch-notification/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-tclayer-mismatch-notification",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: shdsl-controller",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-tclayer-mismatch-notification/shdsl-controller",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-tclayer-mismatch-notification",
                    "shdsl-controller"
                  ]
                },
                "description": "YANG notification `shdsl-controller` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: group",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-tclayer-mismatch-notification/group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-tclayer-mismatch-notification",
                    "group"
                  ]
                },
                "description": "YANG notification `group` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: link",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-tclayer-mismatch-notification/link",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-tclayer-mismatch-notification",
                    "link"
                  ]
                },
                "description": "YANG notification `link` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: configured-mode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-tclayer-mismatch-notification/configured-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-tclayer-mismatch-notification",
                    "configured-mode"
                  ]
                },
                "description": "YANG notification `configured-mode` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: shdsl-dying-gasp-notification",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-dying-gasp-notification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-dying-gasp-notification"
                  ]
                },
                "description": "YANG notification `shdsl-dying-gasp-notification` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-dying-gasp-notification/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-dying-gasp-notification",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: shdsl-controller",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-dying-gasp-notification/shdsl-controller",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-dying-gasp-notification",
                    "shdsl-controller"
                  ]
                },
                "description": "YANG notification `shdsl-controller` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: group",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-dying-gasp-notification/group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-dying-gasp-notification",
                    "group"
                  ]
                },
                "description": "YANG notification `group` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: link",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-dying-gasp-notification/link",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-dying-gasp-notification",
                    "link"
                  ]
                },
                "description": "YANG notification `link` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: shdsl-efm-frame-size-internal-error-notification",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-efm-frame-size-internal-error-notification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-efm-frame-size-internal-error-notification"
                  ]
                },
                "description": "YANG notification `shdsl-efm-frame-size-internal-error-notification` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-efm-frame-size-internal-error-notification/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-efm-frame-size-internal-error-notification",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: shdsl-controller",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-controller-shdsl-events:shdsl-efm-frame-size-internal-error-notification/shdsl-controller",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-controller-shdsl-events:shdsl-efm-frame-size-internal-error-notification",
                    "shdsl-controller"
                  ]
                },
                "description": "YANG notification `shdsl-controller` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-crypto-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-crypto-events\n\nEvent/notification data from `Cisco-IOS-XE-crypto-events` module.\n\n**Endpoints:** 35 | **Notifications:** 3\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 35 | Operations: 35",
          "item": [
            {
              "name": "GET Notification: ike-ipsec-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:ike-ipsec-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:ike-ipsec-event"
                  ]
                },
                "description": "YANG notification `ike-ipsec-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:ike-ipsec-event/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:ike-ipsec-event",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:ike-ipsec-event/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:ike-ipsec-event",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:ike-ipsec-event/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:ike-ipsec-event",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:ike-ipsec-event/event-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:ike-ipsec-event",
                    "event-id"
                  ]
                },
                "description": "YANG notification `event-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: cause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:ike-ipsec-event/cause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:ike-ipsec-event",
                    "cause"
                  ]
                },
                "description": "YANG notification `cause` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: action",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:ike-ipsec-event/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:ike-ipsec-event",
                    "action"
                  ]
                },
                "description": "YANG notification `action` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: local-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:ike-ipsec-event/local-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:ike-ipsec-event",
                    "local-ip"
                  ]
                },
                "description": "YANG notification `local-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: remote-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:ike-ipsec-event/remote-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:ike-ipsec-event",
                    "remote-ip"
                  ]
                },
                "description": "YANG notification `remote-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: resp-port",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:ike-ipsec-event/resp-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:ike-ipsec-event",
                    "resp-port"
                  ]
                },
                "description": "YANG notification `resp-port` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: init-port",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:ike-ipsec-event/init-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:ike-ipsec-event",
                    "init-port"
                  ]
                },
                "description": "YANG notification `init-port` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: detail",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:ike-ipsec-event/detail",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:ike-ipsec-event",
                    "detail"
                  ]
                },
                "description": "YANG notification `detail` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: nhrp-alarm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-alarm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-alarm"
                  ]
                },
                "description": "YANG notification `nhrp-alarm` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-alarm/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-alarm",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-alarm/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-alarm",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-alarm/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-alarm",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: alarm-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-alarm/alarm-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-alarm",
                    "alarm-id"
                  ]
                },
                "description": "YANG notification `alarm-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: cause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-alarm/cause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-alarm",
                    "cause"
                  ]
                },
                "description": "YANG notification `cause` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: action",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-alarm/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-alarm",
                    "action"
                  ]
                },
                "description": "YANG notification `action` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: local-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-alarm/local-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-alarm",
                    "local-ip"
                  ]
                },
                "description": "YANG notification `local-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: remote-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-alarm/remote-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-alarm",
                    "remote-ip"
                  ]
                },
                "description": "YANG notification `remote-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-alarm/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-alarm",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: detail",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-alarm/detail",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-alarm",
                    "detail"
                  ]
                },
                "description": "YANG notification `detail` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-alarm/state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-alarm",
                    "state"
                  ]
                },
                "description": "YANG notification `state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: nhrp-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-event"
                  ]
                },
                "description": "YANG notification `nhrp-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-event/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-event",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-event/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-event",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-event/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-event",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-event/event-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-event",
                    "event-id"
                  ]
                },
                "description": "YANG notification `event-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: cause",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-event/cause",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-event",
                    "cause"
                  ]
                },
                "description": "YANG notification `cause` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: action",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-event/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-event",
                    "action"
                  ]
                },
                "description": "YANG notification `action` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: local-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-event/local-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-event",
                    "local-ip"
                  ]
                },
                "description": "YANG notification `local-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: remote-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-event/remote-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-event",
                    "remote-ip"
                  ]
                },
                "description": "YANG notification `remote-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-event/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-event",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: detail",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-events:nhrp-event/detail",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-events:nhrp-event",
                    "detail"
                  ]
                },
                "description": "YANG notification `detail` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-crypto-pki-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-crypto-pki-events\n\nEvent/notification data from `Cisco-IOS-XE-crypto-pki-events` module.\n\n**Endpoints:** 20 | **Notifications:** 2\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 20 | Operations: 20",
          "item": [
            {
              "name": "GET Notification: pki-certificate-expiry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry"
                  ]
                },
                "description": "YANG notification `pki-certificate-expiry` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: trust-point",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry/trust-point",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry",
                    "trust-point"
                  ]
                },
                "description": "YANG notification `trust-point` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: expires-at",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry/expires-at",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry",
                    "expires-at"
                  ]
                },
                "description": "YANG notification `expires-at` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: is-ca-cert",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry/is-ca-cert",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry",
                    "is-ca-cert"
                  ]
                },
                "description": "YANG notification `is-ca-cert` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: subject-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry/subject-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry",
                    "subject-name"
                  ]
                },
                "description": "YANG notification `subject-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: issuer-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry/issuer-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry",
                    "issuer-name"
                  ]
                },
                "description": "YANG notification `issuer-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: serial-number",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry/serial-number",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry",
                    "serial-number"
                  ]
                },
                "description": "YANG notification `serial-number` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-expiry",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: pki-certificate-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-event"
                  ]
                },
                "description": "YANG notification `pki-certificate-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-event/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-event",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-event/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-event",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: trust-point",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-event/trust-point",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-event",
                    "trust-point"
                  ]
                },
                "description": "YANG notification `trust-point` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-event/event-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-event",
                    "event-type"
                  ]
                },
                "description": "YANG notification `event-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: valid-from",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-event/valid-from",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-event",
                    "valid-from"
                  ]
                },
                "description": "YANG notification `valid-from` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: expires-at",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-event/expires-at",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-event",
                    "expires-at"
                  ]
                },
                "description": "YANG notification `expires-at` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: is-ca-cert",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-event/is-ca-cert",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-event",
                    "is-ca-cert"
                  ]
                },
                "description": "YANG notification `is-ca-cert` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: subject-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-event/subject-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-event",
                    "subject-name"
                  ]
                },
                "description": "YANG notification `subject-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: issuer-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-event/issuer-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-event",
                    "issuer-name"
                  ]
                },
                "description": "YANG notification `issuer-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: serial-number",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-crypto-pki-events:pki-certificate-event/serial-number",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-crypto-pki-events:pki-certificate-event",
                    "serial-number"
                  ]
                },
                "description": "YANG notification `serial-number` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-dca-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-dca-events\n\nEvent/notification data from `Cisco-IOS-XE-dca-events` module.\n\n**Endpoints:** 6 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 6 | Operations: 6",
          "item": [
            {
              "name": "GET Notification: dca-change-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-dca-events:dca-change-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-dca-events:dca-change-event"
                  ]
                },
                "description": "YANG notification `dca-change-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-dca-events:dca-change-event/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-dca-events:dca-change-event",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-dca-events:dca-change-event/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-dca-events:dca-change-event",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-dca-events:dca-change-event/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-dca-events:dca-change-event",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: dca-change-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-dca-events:dca-change-event/dca-change-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-dca-events:dca-change-event",
                    "dca-change-type"
                  ]
                },
                "description": "YANG notification `dca-change-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: result",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-dca-events:dca-change-event/result",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-dca-events:dca-change-event",
                    "result"
                  ]
                },
                "description": "YANG notification `result` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-endpoint-tracker-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-endpoint-tracker-events\n\nEvent/notification data from `Cisco-IOS-XE-endpoint-tracker-events` module.\n\n**Endpoints:** 19 | **Notifications:** 2\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 19 | Operations: 19",
          "item": [
            {
              "name": "GET Notification: tracker-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change"
                  ]
                },
                "description": "YANG notification `tracker-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: attach-point-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change/attach-point-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change",
                    "attach-point-name"
                  ]
                },
                "description": "YANG notification `attach-point-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: tracker-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change/tracker-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change",
                    "tracker-name"
                  ]
                },
                "description": "YANG notification `tracker-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: address-family",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change/address-family",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:tracker-state-change",
                    "address-family"
                  ]
                },
                "description": "YANG notification `address-family` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sc-status-change-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event"
                  ]
                },
                "description": "YANG notification `sc-status-change-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event",
                    "name"
                  ]
                },
                "description": "YANG notification `name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vpn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event/vpn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event",
                    "vpn"
                  ]
                },
                "description": "YANG notification `vpn` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event",
                    "status"
                  ]
                },
                "description": "YANG notification `status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: reason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event/reason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event",
                    "reason"
                  ]
                },
                "description": "YANG notification `reason` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: tracker-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event/tracker-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-endpoint-tracker-events:sc-status-change-event",
                    "tracker-name"
                  ]
                },
                "description": "YANG notification `tracker-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-fib-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-fib-events\n\nEvent/notification data from `Cisco-IOS-XE-fib-events` module.\n\n**Endpoints:** 12 | **Notifications:** 2\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 12 | Operations: 12",
          "item": [
            {
              "name": "GET Notification: fib-updates",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-fib-events:fib-updates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-fib-events:fib-updates"
                  ]
                },
                "description": "YANG notification `fib-updates` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-fib-events:fib-updates/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-fib-events:fib-updates",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-fib-events:fib-updates/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-fib-events:fib-updates",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-fib-events:fib-updates/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-fib-events:fib-updates",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-fib-events:fib-updates/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-fib-events:fib-updates",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: address-family-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-fib-events:fib-updates/address-family-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-fib-events:fib-updates",
                    "address-family-type"
                  ]
                },
                "description": "YANG notification `address-family-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: fib-last-update-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-fib-events:fib-updates/fib-last-update-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-fib-events:fib-updates",
                    "fib-last-update-time"
                  ]
                },
                "description": "YANG notification `fib-last-update-time` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: fib-default-route-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-fib-events:fib-default-route-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-fib-events:fib-default-route-state-change"
                  ]
                },
                "description": "YANG notification `fib-default-route-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: table-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-fib-events:fib-default-route-state-change/table-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-fib-events:fib-default-route-state-change",
                    "table-name"
                  ]
                },
                "description": "YANG notification `table-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-fib-events:fib-default-route-state-change/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-fib-events:fib-default-route-state-change",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: af",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-fib-events:fib-default-route-state-change/af",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-fib-events:fib-default-route-state-change",
                    "af"
                  ]
                },
                "description": "YANG notification `af` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: drh-override",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-fib-events:fib-default-route-state-change/drh-override",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-fib-events:fib-default-route-state-change",
                    "drh-override"
                  ]
                },
                "description": "YANG notification `drh-override` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-geo-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-geo-events\n\nEvent/notification data from `Cisco-IOS-XE-geo-events` module.\n\n**Endpoints:** 4 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 4 | Operations: 4",
          "item": [
            {
              "name": "GET Notification: geo-db-update-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-geo-events:geo-db-update-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-geo-events:geo-db-update-event"
                  ]
                },
                "description": "YANG notification `geo-db-update-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-geo-events:geo-db-update-event/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-geo-events:geo-db-update-event",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: db-file",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-geo-events:geo-db-update-event/db-file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-geo-events:geo-db-update-event",
                    "db-file"
                  ]
                },
                "description": "YANG notification `db-file` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-geo-events:geo-db-update-event/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-geo-events:geo-db-update-event",
                    "status"
                  ]
                },
                "description": "YANG notification `status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-hsrp-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-hsrp-events\n\nEvent/notification data from `Cisco-IOS-XE-hsrp-events` module.\n\n**Endpoints:** 8 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 8 | Operations: 8",
          "item": [
            {
              "name": "GET Notification: hsrp-group-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-hsrp-events:hsrp-group-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-hsrp-events:hsrp-group-state-change"
                  ]
                },
                "description": "YANG notification `hsrp-group-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-hsrp-events:hsrp-group-state-change/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-hsrp-events:hsrp-group-state-change",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-hsrp-events:hsrp-group-state-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-hsrp-events:hsrp-group-state-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-hsrp-events:hsrp-group-state-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-hsrp-events:hsrp-group-state-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: group-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-hsrp-events:hsrp-group-state-change/group-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-hsrp-events:hsrp-group-state-change",
                    "group-id"
                  ]
                },
                "description": "YANG notification `group-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: addr-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-hsrp-events:hsrp-group-state-change/addr-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-hsrp-events:hsrp-group-state-change",
                    "addr-type"
                  ]
                },
                "description": "YANG notification `addr-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-hsrp-events:hsrp-group-state-change/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-hsrp-events:hsrp-group-state-change",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: hsrp-group-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-hsrp-events:hsrp-group-state-change/hsrp-group-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-hsrp-events:hsrp-group-state-change",
                    "hsrp-group-state"
                  ]
                },
                "description": "YANG notification `hsrp-group-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-im-events-oper",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-im-events-oper\n\nEvent/notification data from `Cisco-IOS-XE-im-events-oper` module.\n\n**Endpoints:** 10 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 10 | Operations: 10",
          "item": [
            {
              "name": "GET Notification: im-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-im-events-oper:im-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-im-events-oper:im-event"
                  ]
                },
                "description": "YANG notification `im-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-im-events-oper:im-event/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-im-events-oper:im-event",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-im-events-oper:im-event/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-im-events-oper:im-event",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-im-events-oper:im-event/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-im-events-oper:im-event",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-im-events-oper:im-event/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-im-events-oper:im-event",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: app-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-im-events-oper:im-event/app-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-im-events-oper:im-event",
                    "app-id"
                  ]
                },
                "description": "YANG notification `app-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ev-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-im-events-oper:im-event/ev-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-im-events-oper:im-event",
                    "ev-type"
                  ]
                },
                "description": "YANG notification `ev-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-im-events-oper:im-event/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-im-events-oper:im-event",
                    "status"
                  ]
                },
                "description": "YANG notification `status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: message",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-im-events-oper:im-event/message",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-im-events-oper:im-event",
                    "message"
                  ]
                },
                "description": "YANG notification `message` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: app-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-im-events-oper:im-event/app-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-im-events-oper:im-event",
                    "app-state"
                  ]
                },
                "description": "YANG notification `app-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-install-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-install-events\n\nEvent/notification data from `Cisco-IOS-XE-install-events` module.\n\n**Endpoints:** 7 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 7 | Operations: 7",
          "item": [
            {
              "name": "GET Notification: install-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-install-events:install-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-install-events:install-status"
                  ]
                },
                "description": "YANG notification `install-status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-install-events:install-status/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-install-events:install-status",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-install-events:install-status/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-install-events:install-status",
                    "status"
                  ]
                },
                "description": "YANG notification `status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: action-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-install-events:install-status/action-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-install-events:install-status",
                    "action-type"
                  ]
                },
                "description": "YANG notification `action-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sub-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-install-events:install-status/sub-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-install-events:install-status",
                    "sub-state"
                  ]
                },
                "description": "YANG notification `sub-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: uuid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-install-events:install-status/uuid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-install-events:install-status",
                    "uuid"
                  ]
                },
                "description": "YANG notification `uuid` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: percentage-completed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-install-events:install-status/percentage-completed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-install-events:install-status",
                    "percentage-completed"
                  ]
                },
                "description": "YANG notification `percentage-completed` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-interface-bw-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-interface-bw-events\n\nEvent/notification data from `Cisco-IOS-XE-interface-bw-events` module.\n\n**Endpoints:** 9 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 9 | Operations: 9",
          "item": [
            {
              "name": "GET Notification: interface-bw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-interface-bw-events:interface-bw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-interface-bw-events:interface-bw"
                  ]
                },
                "description": "YANG notification `interface-bw` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-interface-bw-events:interface-bw/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-interface-bw-events:interface-bw",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-interface-bw-events:interface-bw/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-interface-bw-events:interface-bw",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-interface-bw-events:interface-bw/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-interface-bw-events:interface-bw",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vpn-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-interface-bw-events:interface-bw/vpn-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-interface-bw-events:interface-bw",
                    "vpn-id"
                  ]
                },
                "description": "YANG notification `vpn-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-interface-bw-events:interface-bw/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-interface-bw-events:interface-bw",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-cfg-bw-kbps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-interface-bw-events:interface-bw/if-cfg-bw-kbps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-interface-bw-events:interface-bw",
                    "if-cfg-bw-kbps"
                  ]
                },
                "description": "YANG notification `if-cfg-bw-kbps` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: traffic-direction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-interface-bw-events:interface-bw/traffic-direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-interface-bw-events:interface-bw",
                    "traffic-direction"
                  ]
                },
                "description": "YANG notification `traffic-direction` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: duration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-interface-bw-events:interface-bw/duration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-interface-bw-events:interface-bw",
                    "duration"
                  ]
                },
                "description": "YANG notification `duration` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-ios-events-oper",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-ios-events-oper\n\nEvent/notification data from `Cisco-IOS-XE-ios-events-oper` module.\n\n**Endpoints:** 394 | **Notifications:** 52\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 394 | Operations: 394",
          "item": [
            {
              "name": "GET Notification: bgp-peer-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change"
                  ]
                },
                "description": "YANG notification `bgp-peer-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: peer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change/peer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change",
                    "peer"
                  ]
                },
                "description": "YANG notification `peer` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: bgp-new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change/bgp-new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change",
                    "bgp-new-state"
                  ]
                },
                "description": "YANG notification `bgp-new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: local-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change/local-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change",
                    "local-address"
                  ]
                },
                "description": "YANG notification `local-address` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: local-routerid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change/local-routerid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change",
                    "local-routerid"
                  ]
                },
                "description": "YANG notification `local-routerid` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: peer-routerid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change/peer-routerid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bgp-peer-state-change",
                    "peer-routerid"
                  ]
                },
                "description": "YANG notification `peer-routerid` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ospf-neighbor-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change"
                  ]
                },
                "description": "YANG notification `ospf-neighbor-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: neighbor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change/neighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change",
                    "neighbor"
                  ]
                },
                "description": "YANG notification `neighbor` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: router-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change/router-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change",
                    "router-id"
                  ]
                },
                "description": "YANG notification `router-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-addr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change/if-addr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change",
                    "if-addr"
                  ]
                },
                "description": "YANG notification `if-addr` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ospf-new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change/ospf-new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change",
                    "ospf-new-state"
                  ]
                },
                "description": "YANG notification `ospf-new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: neighbor-router-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change/neighbor-router-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-neighbor-state-change",
                    "neighbor-router-id"
                  ]
                },
                "description": "YANG notification `neighbor-router-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ospf-interface-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-interface-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-interface-state-change"
                  ]
                },
                "description": "YANG notification `ospf-interface-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-interface-state-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-interface-state-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-interface-state-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-interface-state-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-interface-state-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-interface-state-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-interface-state-change/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-interface-state-change",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-interface-state-change/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-interface-state-change",
                    "interface"
                  ]
                },
                "description": "YANG notification `interface` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ospf-interface-new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:ospf-interface-state-change/ospf-interface-new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:ospf-interface-state-change",
                    "ospf-interface-new-state"
                  ]
                },
                "description": "YANG notification `ospf-interface-new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: interface-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:interface-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:interface-state-change"
                  ]
                },
                "description": "YANG notification `interface-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:interface-state-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:interface-state-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:interface-state-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:interface-state-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:interface-state-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:interface-state-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:interface-state-change/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:interface-state-change",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:interface-state-change/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:interface-state-change",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:interface-state-change/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:interface-state-change",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: memory-usage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:memory-usage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:memory-usage"
                  ]
                },
                "description": "YANG notification `memory-usage` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:memory-usage/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:memory-usage",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:memory-usage/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:memory-usage",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:memory-usage/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:memory-usage",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: warning",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:memory-usage/warning",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:memory-usage",
                    "warning"
                  ]
                },
                "description": "YANG notification `warning` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: total-mb",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:memory-usage/total-mb",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:memory-usage",
                    "total-mb"
                  ]
                },
                "description": "YANG notification `total-mb` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: free-mb",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:memory-usage/free-mb",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:memory-usage",
                    "free-mb"
                  ]
                },
                "description": "YANG notification `free-mb` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: memory-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:memory-usage/memory-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:memory-usage",
                    "memory-status"
                  ]
                },
                "description": "YANG notification `memory-status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: cpu-usage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cpu-usage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cpu-usage"
                  ]
                },
                "description": "YANG notification `cpu-usage` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cpu-usage/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cpu-usage",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cpu-usage/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cpu-usage",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cpu-usage/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cpu-usage",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: warning",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cpu-usage/warning",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cpu-usage",
                    "warning"
                  ]
                },
                "description": "YANG notification `warning` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: one-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cpu-usage/one-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cpu-usage",
                    "one-min"
                  ]
                },
                "description": "YANG notification `one-min` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: five-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cpu-usage/five-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cpu-usage",
                    "five-min"
                  ]
                },
                "description": "YANG notification `five-min` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: fifteen-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cpu-usage/fifteen-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cpu-usage",
                    "fifteen-min"
                  ]
                },
                "description": "YANG notification `fifteen-min` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: cpu-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cpu-usage/cpu-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cpu-usage",
                    "cpu-status"
                  ]
                },
                "description": "YANG notification `cpu-status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: interface-admin-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:interface-admin-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:interface-admin-state-change"
                  ]
                },
                "description": "YANG notification `interface-admin-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:interface-admin-state-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:interface-admin-state-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:interface-admin-state-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:interface-admin-state-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:interface-admin-state-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:interface-admin-state-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:interface-admin-state-change/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:interface-admin-state-change",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:interface-admin-state-change/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:interface-admin-state-change",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-admin-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:interface-admin-state-change/new-admin-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:interface-admin-state-change",
                    "new-admin-state"
                  ]
                },
                "description": "YANG notification `new-admin-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: dhcp-server-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-server-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-server-state-change"
                  ]
                },
                "description": "YANG notification `dhcp-server-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-server-state-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-server-state-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-server-state-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-server-state-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-server-state-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-server-state-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-server-state-change/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-server-state-change",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-server-state-change/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-server-state-change",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-server-state-change/state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-server-state-change",
                    "state"
                  ]
                },
                "description": "YANG notification `state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: dhcp-address-assigned",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-assigned",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-assigned"
                  ]
                },
                "description": "YANG notification `dhcp-address-assigned` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-assigned/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-assigned",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-assigned/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-assigned",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-assigned/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-assigned",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-assigned/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-assigned",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-assigned/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-assigned",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: client-mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-assigned/client-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-assigned",
                    "client-mac"
                  ]
                },
                "description": "YANG notification `client-mac` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-assigned/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-assigned",
                    "ip"
                  ]
                },
                "description": "YANG notification `ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: dhcp-address-renewed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-renewed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-renewed"
                  ]
                },
                "description": "YANG notification `dhcp-address-renewed` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-renewed/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-renewed",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-renewed/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-renewed",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-renewed/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-renewed",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-renewed/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-renewed",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-renewed/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-renewed",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: client-mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-renewed/client-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-renewed",
                    "client-mac"
                  ]
                },
                "description": "YANG notification `client-mac` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-renewed/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-renewed",
                    "ip"
                  ]
                },
                "description": "YANG notification `ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: dhcp-address-released",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-released",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-released"
                  ]
                },
                "description": "YANG notification `dhcp-address-released` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-released/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-released",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-released/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-released",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-released/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-released",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-released/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-released",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-released/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-released",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: client-mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-released/client-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-released",
                    "client-mac"
                  ]
                },
                "description": "YANG notification `client-mac` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-released/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-released",
                    "ip"
                  ]
                },
                "description": "YANG notification `ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: reason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-released/reason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-released",
                    "reason"
                  ]
                },
                "description": "YANG notification `reason` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: dhcp-address-rejected",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected"
                  ]
                },
                "description": "YANG notification `dhcp-address-rejected` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: client-mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected/client-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected",
                    "client-mac"
                  ]
                },
                "description": "YANG notification `client-mac` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected",
                    "ip"
                  ]
                },
                "description": "YANG notification `ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: reason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected/reason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:dhcp-address-rejected",
                    "reason"
                  ]
                },
                "description": "YANG notification `reason` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-reboot-complete",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-reboot-complete",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-reboot-complete"
                  ]
                },
                "description": "YANG notification `system-reboot-complete` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-reboot-complete/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-reboot-complete",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-reboot-complete/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-reboot-complete",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-reboot-complete/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-reboot-complete",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: flash-fault",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:flash-fault",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:flash-fault"
                  ]
                },
                "description": "YANG notification `flash-fault` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:flash-fault/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:flash-fault",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:flash-fault/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:flash-fault",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:flash-fault/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:flash-fault",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:flash-fault/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:flash-fault",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: emmc-fault",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:emmc-fault",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:emmc-fault"
                  ]
                },
                "description": "YANG notification `emmc-fault` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:emmc-fault/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:emmc-fault",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:emmc-fault/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:emmc-fault",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:emmc-fault/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:emmc-fault",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:emmc-fault/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:emmc-fault",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sdcard-fault",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sdcard-fault",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sdcard-fault"
                  ]
                },
                "description": "YANG notification `sdcard-fault` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sdcard-fault/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sdcard-fault",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sdcard-fault/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sdcard-fault",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sdcard-fault/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sdcard-fault",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sdcard-fault/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sdcard-fault",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: tempsensor-fault",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-fault",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-fault"
                  ]
                },
                "description": "YANG notification `tempsensor-fault` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-fault/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-fault",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-fault/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-fault",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-fault/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-fault",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: hw-sensor-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-fault/hw-sensor-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-fault",
                    "hw-sensor-type"
                  ]
                },
                "description": "YANG notification `hw-sensor-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: hw-dev-index",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-fault/hw-dev-index",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-fault",
                    "hw-dev-index"
                  ]
                },
                "description": "YANG notification `hw-dev-index` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-fault/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-fault",
                    "name"
                  ]
                },
                "description": "YANG notification `name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-fault/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-fault",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: tempsensor-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-state"
                  ]
                },
                "description": "YANG notification `tempsensor-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-state/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-state",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-state/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-state",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-state/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-state",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: hw-sensor-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-state/hw-sensor-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-state",
                    "hw-sensor-type"
                  ]
                },
                "description": "YANG notification `hw-sensor-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: hw-dev-index",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-state/hw-dev-index",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-state",
                    "hw-dev-index"
                  ]
                },
                "description": "YANG notification `hw-dev-index` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-state/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-state",
                    "name"
                  ]
                },
                "description": "YANG notification `name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: temp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-state/temp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-state",
                    "temp"
                  ]
                },
                "description": "YANG notification `temp` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sensor-new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:tempsensor-state/sensor-new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:tempsensor-state",
                    "sensor-new-state"
                  ]
                },
                "description": "YANG notification `sensor-new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: fan-fault",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:fan-fault",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:fan-fault"
                  ]
                },
                "description": "YANG notification `fan-fault` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:fan-fault/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:fan-fault",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:fan-fault/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:fan-fault",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:fan-fault/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:fan-fault",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: fantray-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:fan-fault/fantray-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:fan-fault",
                    "fantray-id"
                  ]
                },
                "description": "YANG notification `fantray-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: fan-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:fan-fault/fan-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:fan-fault",
                    "fan-id"
                  ]
                },
                "description": "YANG notification `fan-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:fan-fault/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:fan-fault",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: fantray-fault",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:fantray-fault",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:fantray-fault"
                  ]
                },
                "description": "YANG notification `fantray-fault` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:fantray-fault/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:fantray-fault",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:fantray-fault/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:fantray-fault",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:fantray-fault/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:fantray-fault",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: fantray-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:fantray-fault/fantray-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:fantray-fault",
                    "fantray-id"
                  ]
                },
                "description": "YANG notification `fantray-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:fantray-fault/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:fantray-fault",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: pem-fault",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pem-fault",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pem-fault"
                  ]
                },
                "description": "YANG notification `pem-fault` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pem-fault/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pem-fault",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pem-fault/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pem-fault",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pem-fault/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pem-fault",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: pem-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pem-fault/pem-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pem-fault",
                    "pem-id"
                  ]
                },
                "description": "YANG notification `pem-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pem-fault/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pem-fault",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: pem-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pem-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pem-state-change"
                  ]
                },
                "description": "YANG notification `pem-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pem-state-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pem-state-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pem-state-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pem-state-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pem-state-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pem-state-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: pem-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pem-state-change/pem-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pem-state-change",
                    "pem-id"
                  ]
                },
                "description": "YANG notification `pem-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pem-state-change/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pem-state-change",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: pim-fault",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pim-fault",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pim-fault"
                  ]
                },
                "description": "YANG notification `pim-fault` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pim-fault/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pim-fault",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pim-fault/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pim-fault",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pim-fault/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pim-fault",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: pim-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pim-fault/pim-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pim-fault",
                    "pim-id"
                  ]
                },
                "description": "YANG notification `pim-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pim-fault/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pim-fault",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: pim-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pim-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pim-state-change"
                  ]
                },
                "description": "YANG notification `pim-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pim-state-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pim-state-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pim-state-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pim-state-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pim-state-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pim-state-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: pim-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pim-state-change/pim-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pim-state-change",
                    "pim-id"
                  ]
                },
                "description": "YANG notification `pim-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:pim-state-change/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:pim-state-change",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sfp-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sfp-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sfp-state-change"
                  ]
                },
                "description": "YANG notification `sfp-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sfp-state-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sfp-state-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sfp-state-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sfp-state-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sfp-state-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sfp-state-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sfp-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sfp-state-change/sfp-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sfp-state-change",
                    "sfp-name"
                  ]
                },
                "description": "YANG notification `sfp-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sfp-state-change/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sfp-state-change",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sfp-support-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sfp-support-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sfp-support-state"
                  ]
                },
                "description": "YANG notification `sfp-support-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sfp-support-state/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sfp-support-state",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sfp-support-state/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sfp-support-state",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sfp-support-state/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sfp-support-state",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sfp-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sfp-support-state/sfp-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sfp-support-state",
                    "sfp-name"
                  ]
                },
                "description": "YANG notification `sfp-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:sfp-support-state/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:sfp-support-state",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: usb-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:usb-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:usb-state-change"
                  ]
                },
                "description": "YANG notification `usb-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:usb-state-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:usb-state-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:usb-state-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:usb-state-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:usb-state-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:usb-state-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: usb-slot",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:usb-state-change/usb-slot",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:usb-state-change",
                    "usb-slot"
                  ]
                },
                "description": "YANG notification `usb-slot` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:usb-state-change/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:usb-state-change",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrrp-group-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change"
                  ]
                },
                "description": "YANG notification `vrrp-group-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-number",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change/if-number",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change",
                    "if-number"
                  ]
                },
                "description": "YANG notification `if-number` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: grp-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change/grp-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change",
                    "grp-id"
                  ]
                },
                "description": "YANG notification `grp-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: addr-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change/addr-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change",
                    "addr-type"
                  ]
                },
                "description": "YANG notification `addr-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrrp-group-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change/vrrp-group-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change",
                    "vrrp-group-state"
                  ]
                },
                "description": "YANG notification `vrrp-group-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: state-change-reason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change/state-change-reason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:vrrp-group-state-change",
                    "state-change-reason"
                  ]
                },
                "description": "YANG notification `state-change-reason` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-reboot-issued",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-reboot-issued",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-reboot-issued"
                  ]
                },
                "description": "YANG notification `system-reboot-issued` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-reboot-issued/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-reboot-issued",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-reboot-issued/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-reboot-issued",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-reboot-issued/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-reboot-issued",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: reboot-reason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-reboot-issued/reboot-reason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-reboot-issued",
                    "reboot-reason"
                  ]
                },
                "description": "YANG notification `reboot-reason` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: disk-usage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:disk-usage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:disk-usage"
                  ]
                },
                "description": "YANG notification `disk-usage` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:disk-usage/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:disk-usage",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:disk-usage/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:disk-usage",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:disk-usage/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:disk-usage",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: warning",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:disk-usage/warning",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:disk-usage",
                    "warning"
                  ]
                },
                "description": "YANG notification `warning` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: total-mb",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:disk-usage/total-mb",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:disk-usage",
                    "total-mb"
                  ]
                },
                "description": "YANG notification `total-mb` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: free-mb",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:disk-usage/free-mb",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:disk-usage",
                    "free-mb"
                  ]
                },
                "description": "YANG notification `free-mb` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: filesystem",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:disk-usage/filesystem",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:disk-usage",
                    "filesystem"
                  ]
                },
                "description": "YANG notification `filesystem` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: disk-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:disk-usage/disk-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:disk-usage",
                    "disk-status"
                  ]
                },
                "description": "YANG notification `disk-status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:disk-usage/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:disk-usage",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: address-family-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:disk-usage/address-family-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:disk-usage",
                    "address-family-type"
                  ]
                },
                "description": "YANG notification `address-family-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: fib-last-update-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:disk-usage/fib-last-update-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:disk-usage",
                    "fib-last-update-time"
                  ]
                },
                "description": "YANG notification `fib-last-update-time` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-login-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-login-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-login-change"
                  ]
                },
                "description": "YANG notification `system-login-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-login-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-login-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-login-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-login-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-login-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-login-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: user-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-login-change/user-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-login-change",
                    "user-name"
                  ]
                },
                "description": "YANG notification `user-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: user-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-login-change/user-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-login-change",
                    "user-id"
                  ]
                },
                "description": "YANG notification `user-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-logout-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-logout-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-logout-change"
                  ]
                },
                "description": "YANG notification `system-logout-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-logout-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-logout-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-logout-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-logout-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-logout-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-logout-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: user-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-logout-change/user-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-logout-change",
                    "user-name"
                  ]
                },
                "description": "YANG notification `user-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: user-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-logout-change/user-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-logout-change",
                    "user-id"
                  ]
                },
                "description": "YANG notification `user-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-aaa-login-fail",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-aaa-login-fail",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-aaa-login-fail"
                  ]
                },
                "description": "YANG notification `system-aaa-login-fail` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-aaa-login-fail/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-aaa-login-fail",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-aaa-login-fail/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-aaa-login-fail",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-aaa-login-fail/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-aaa-login-fail",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: user-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-aaa-login-fail/user-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-aaa-login-fail",
                    "user-name"
                  ]
                },
                "description": "YANG notification `user-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: remote-host",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:system-aaa-login-fail/remote-host",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:system-aaa-login-fail",
                    "remote-host"
                  ]
                },
                "description": "YANG notification `remote-host` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: aaa-admin-pwd-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:aaa-admin-pwd-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:aaa-admin-pwd-change"
                  ]
                },
                "description": "YANG notification `aaa-admin-pwd-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:aaa-admin-pwd-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:aaa-admin-pwd-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:aaa-admin-pwd-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:aaa-admin-pwd-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:aaa-admin-pwd-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:aaa-admin-pwd-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: cellular-sim-status-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-sim-status-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-sim-status-change"
                  ]
                },
                "description": "YANG notification `cellular-sim-status-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-sim-status-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-sim-status-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-sim-status-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-sim-status-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-sim-status-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-sim-status-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-sim-status-change/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-sim-status-change",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: reason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-sim-status-change/reason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-sim-status-change",
                    "reason"
                  ]
                },
                "description": "YANG notification `reason` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: cellular-modem-status-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-modem-status-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-modem-status-change"
                  ]
                },
                "description": "YANG notification `cellular-modem-status-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-modem-status-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-modem-status-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-modem-status-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-modem-status-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-modem-status-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-modem-status-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-modem-status-change/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-modem-status-change",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: reason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-modem-status-change/reason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-modem-status-change",
                    "reason"
                  ]
                },
                "description": "YANG notification `reason` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: cellular-network-status-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-network-status-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-network-status-change"
                  ]
                },
                "description": "YANG notification `cellular-network-status-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-network-status-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-network-status-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-network-status-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-network-status-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-network-status-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-network-status-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-network-status-change/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-network-status-change",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: reason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:cellular-network-status-change/reason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:cellular-network-status-change",
                    "reason"
                  ]
                },
                "description": "YANG notification `reason` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: app-dpi-flows-out-of-memory",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:app-dpi-flows-out-of-memory",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:app-dpi-flows-out-of-memory"
                  ]
                },
                "description": "YANG notification `app-dpi-flows-out-of-memory` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:app-dpi-flows-out-of-memory/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:app-dpi-flows-out-of-memory",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:app-dpi-flows-out-of-memory/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:app-dpi-flows-out-of-memory",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:app-dpi-flows-out-of-memory/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:app-dpi-flows-out-of-memory",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: dpi-out-of-memory-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:app-dpi-flows-out-of-memory/dpi-out-of-memory-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:app-dpi-flows-out-of-memory",
                    "dpi-out-of-memory-state"
                  ]
                },
                "description": "YANG notification `dpi-out-of-memory-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: utd-ips-alert",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert"
                  ]
                },
                "description": "YANG notification `utd-ips-alert` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: timestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/timestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "timestamp"
                  ]
                },
                "description": "YANG notification `timestamp` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: action",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "action"
                  ]
                },
                "description": "YANG notification `action` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/sid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "sid"
                  ]
                },
                "description": "YANG notification `sid` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: gid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/gid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "gid"
                  ]
                },
                "description": "YANG notification `gid` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: rev",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/rev",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "rev"
                  ]
                },
                "description": "YANG notification `rev` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: classification",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/classification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "classification"
                  ]
                },
                "description": "YANG notification `classification` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: message",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/message",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "message"
                  ]
                },
                "description": "YANG notification `message` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: priority",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/priority",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "priority"
                  ]
                },
                "description": "YANG notification `priority` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: src-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/src-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "src-ip"
                  ]
                },
                "description": "YANG notification `src-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: dst-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/dst-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "dst-ip"
                  ]
                },
                "description": "YANG notification `dst-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: src-port",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/src-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "src-port"
                  ]
                },
                "description": "YANG notification `src-port` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: dst-port",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/dst-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "dst-port"
                  ]
                },
                "description": "YANG notification `dst-port` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: protocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "protocol"
                  ]
                },
                "description": "YANG notification `protocol` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/vrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "vrf"
                  ]
                },
                "description": "YANG notification `vrf` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: policy-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/policy-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "policy-name"
                  ]
                },
                "description": "YANG notification `policy-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: src-username",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/src-username",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "src-username"
                  ]
                },
                "description": "YANG notification `src-username` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: dst-username",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-ips-alert/dst-username",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-ips-alert",
                    "dst-username"
                  ]
                },
                "description": "YANG notification `dst-username` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: utd-update",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-update",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-update"
                  ]
                },
                "description": "YANG notification `utd-update` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-update/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-update",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-update/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-update",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-update/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-update",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-update/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-update",
                    "type"
                  ]
                },
                "description": "YANG notification `type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: timestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-update/timestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-update",
                    "timestamp"
                  ]
                },
                "description": "YANG notification `timestamp` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: version",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-update/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-update",
                    "version"
                  ]
                },
                "description": "YANG notification `version` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-update/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-update",
                    "status"
                  ]
                },
                "description": "YANG notification `status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: reason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-update/reason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-update",
                    "reason"
                  ]
                },
                "description": "YANG notification `reason` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: utd-version-mismatch",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-version-mismatch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-version-mismatch"
                  ]
                },
                "description": "YANG notification `utd-version-mismatch` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-version-mismatch/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-version-mismatch",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-version-mismatch/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-version-mismatch",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-version-mismatch/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-version-mismatch",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: current-version",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-version-mismatch/current-version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-version-mismatch",
                    "current-version"
                  ]
                },
                "description": "YANG notification `current-version` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: recommended-version",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-version-mismatch/recommended-version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-version-mismatch",
                    "recommended-version"
                  ]
                },
                "description": "YANG notification `recommended-version` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: supported",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-version-mismatch/supported",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-version-mismatch",
                    "supported"
                  ]
                },
                "description": "YANG notification `supported` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: utd-file-reputation-alert",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert"
                  ]
                },
                "description": "YANG notification `utd-file-reputation-alert` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: timestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/timestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "timestamp"
                  ]
                },
                "description": "YANG notification `timestamp` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: file-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/file-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "file-name"
                  ]
                },
                "description": "YANG notification `file-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sha",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/sha",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "sha"
                  ]
                },
                "description": "YANG notification `sha` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: file-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/file-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "file-type"
                  ]
                },
                "description": "YANG notification `file-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: malware-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/malware-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "malware-name"
                  ]
                },
                "description": "YANG notification `malware-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: src-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/src-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "src-ip"
                  ]
                },
                "description": "YANG notification `src-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: dst-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/dst-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "dst-ip"
                  ]
                },
                "description": "YANG notification `dst-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: src-port",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/src-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "src-port"
                  ]
                },
                "description": "YANG notification `src-port` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: dst-port",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/dst-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "dst-port"
                  ]
                },
                "description": "YANG notification `dst-port` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: protocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "protocol"
                  ]
                },
                "description": "YANG notification `protocol` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/vrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "vrf"
                  ]
                },
                "description": "YANG notification `vrf` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: action",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "action"
                  ]
                },
                "description": "YANG notification `action` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: disposition",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/disposition",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "disposition"
                  ]
                },
                "description": "YANG notification `disposition` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: policy-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/policy-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "policy-name"
                  ]
                },
                "description": "YANG notification `policy-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: src-username",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/src-username",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "src-username"
                  ]
                },
                "description": "YANG notification `src-username` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: dst-username",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert/dst-username",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-alert",
                    "dst-username"
                  ]
                },
                "description": "YANG notification `dst-username` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: utd-file-reputation-retrospective-alert",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert"
                  ]
                },
                "description": "YANG notification `utd-file-reputation-retrospective-alert` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: file-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert/file-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert",
                    "file-name"
                  ]
                },
                "description": "YANG notification `file-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sha",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert/sha",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert",
                    "sha"
                  ]
                },
                "description": "YANG notification `sha` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: file-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert/file-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert",
                    "file-type"
                  ]
                },
                "description": "YANG notification `file-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: malware-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert/malware-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert",
                    "malware-name"
                  ]
                },
                "description": "YANG notification `malware-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: disposition",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert/disposition",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-retrospective-alert",
                    "disposition"
                  ]
                },
                "description": "YANG notification `disposition` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: utd-file-analysis-file-upload-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state"
                  ]
                },
                "description": "YANG notification `utd-file-analysis-file-upload-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: timestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state/timestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state",
                    "timestamp"
                  ]
                },
                "description": "YANG notification `timestamp` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: file-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state/file-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state",
                    "file-status"
                  ]
                },
                "description": "YANG notification `file-status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: file-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state/file-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state",
                    "file-name"
                  ]
                },
                "description": "YANG notification `file-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: file-hash",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state/file-hash",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state",
                    "file-hash"
                  ]
                },
                "description": "YANG notification `file-hash` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: file-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state/file-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state",
                    "file-type"
                  ]
                },
                "description": "YANG notification `file-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: disposition",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state/disposition",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-file-upload-state",
                    "disposition"
                  ]
                },
                "description": "YANG notification `disposition` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: utd-file-reputation-status-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-status-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-status-event"
                  ]
                },
                "description": "YANG notification `utd-file-reputation-status-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-status-event/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-status-event",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-status-event/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-status-event",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-status-event/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-status-event",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: version",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-status-event/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-status-event",
                    "version"
                  ]
                },
                "description": "YANG notification `version` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-status-event/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-status-event",
                    "status"
                  ]
                },
                "description": "YANG notification `status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: message",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-reputation-status-event/message",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-reputation-status-event",
                    "message"
                  ]
                },
                "description": "YANG notification `message` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: utd-file-analysis-status-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-status-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-status-event"
                  ]
                },
                "description": "YANG notification `utd-file-analysis-status-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-status-event/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-status-event",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-status-event/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-status-event",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-status-event/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-status-event",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-status-event/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-status-event",
                    "status"
                  ]
                },
                "description": "YANG notification `status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: backoff-interval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-status-event/backoff-interval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-status-event",
                    "backoff-interval"
                  ]
                },
                "description": "YANG notification `backoff-interval` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: message",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:utd-file-analysis-status-event/message",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:utd-file-analysis-status-event",
                    "message"
                  ]
                },
                "description": "YANG notification `message` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: aaa-event-server-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:aaa-event-server-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:aaa-event-server-state"
                  ]
                },
                "description": "YANG notification `aaa-event-server-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:aaa-event-server-state/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:aaa-event-server-state",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:aaa-event-server-state/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:aaa-event-server-state",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:aaa-event-server-state/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:aaa-event-server-state",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: server-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:aaa-event-server-state/server-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:aaa-event-server-state",
                    "server-ip"
                  ]
                },
                "description": "YANG notification `server-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: auth-port",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:aaa-event-server-state/auth-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:aaa-event-server-state",
                    "auth-port"
                  ]
                },
                "description": "YANG notification `auth-port` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: acct-port",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:aaa-event-server-state/acct-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:aaa-event-server-state",
                    "acct-port"
                  ]
                },
                "description": "YANG notification `acct-port` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: timestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:aaa-event-server-state/timestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:aaa-event-server-state",
                    "timestamp"
                  ]
                },
                "description": "YANG notification `timestamp` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: server-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:aaa-event-server-state/server-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:aaa-event-server-state",
                    "server-state"
                  ]
                },
                "description": "YANG notification `server-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: bridge-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bridge-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bridge-state-change"
                  ]
                },
                "description": "YANG notification `bridge-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bridge-state-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bridge-state-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: bridge-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bridge-state-change/bridge-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bridge-state-change",
                    "bridge-id"
                  ]
                },
                "description": "YANG notification `bridge-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: bridge-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bridge-state-change/bridge-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bridge-state-change",
                    "bridge-state"
                  ]
                },
                "description": "YANG notification `bridge-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: bridge-interface-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bridge-interface-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bridge-interface-state-change"
                  ]
                },
                "description": "YANG notification `bridge-interface-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bridge-interface-state-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bridge-interface-state-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: bridge-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bridge-interface-state-change/bridge-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bridge-interface-state-change",
                    "bridge-id"
                  ]
                },
                "description": "YANG notification `bridge-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bridge-interface-state-change/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bridge-interface-state-change",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: bridge-intf-oper-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:bridge-interface-state-change/bridge-intf-oper-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:bridge-interface-state-change",
                    "bridge-intf-oper-state"
                  ]
                },
                "description": "YANG notification `bridge-intf-oper-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: umbrella-dev-reg-update",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update"
                  ]
                },
                "description": "YANG notification `umbrella-dev-reg-update` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update",
                    "status"
                  ]
                },
                "description": "YANG notification `status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: fail-code",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update/fail-code",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update",
                    "fail-code"
                  ]
                },
                "description": "YANG notification `fail-code` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: reason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update/reason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update",
                    "reason"
                  ]
                },
                "description": "YANG notification `reason` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: registration-entity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update/registration-entity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update",
                    "registration-entity"
                  ]
                },
                "description": "YANG notification `registration-entity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: device-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update/device-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update",
                    "device-id"
                  ]
                },
                "description": "YANG notification `device-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: tag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update/tag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:umbrella-dev-reg-update",
                    "tag"
                  ]
                },
                "description": "YANG notification `tag` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: umbrella-dnscrypt-update",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:umbrella-dnscrypt-update",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:umbrella-dnscrypt-update"
                  ]
                },
                "description": "YANG notification `umbrella-dnscrypt-update` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:umbrella-dnscrypt-update/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:umbrella-dnscrypt-update",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:umbrella-dnscrypt-update/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:umbrella-dnscrypt-update",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:umbrella-dnscrypt-update/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:umbrella-dnscrypt-update",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:umbrella-dnscrypt-update/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:umbrella-dnscrypt-update",
                    "enabled"
                  ]
                },
                "description": "YANG notification `enabled` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: last-success-attempt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:umbrella-dnscrypt-update/last-success-attempt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:umbrella-dnscrypt-update",
                    "last-success-attempt"
                  ]
                },
                "description": "YANG notification `last-success-attempt` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: eem-event-publish",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:eem-event-publish",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:eem-event-publish"
                  ]
                },
                "description": "YANG notification `eem-event-publish` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:eem-event-publish/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:eem-event-publish",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: policy-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:eem-event-publish/policy-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:eem-event-publish",
                    "policy-name"
                  ]
                },
                "description": "YANG notification `policy-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:eem-event-publish/event-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:eem-event-publish",
                    "event-type"
                  ]
                },
                "description": "YANG notification `event-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event-type-string",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:eem-event-publish/event-type-string",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:eem-event-publish",
                    "event-type-string"
                  ]
                },
                "description": "YANG notification `event-type-string` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event-publish-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:eem-event-publish/event-publish-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:eem-event-publish",
                    "event-publish-time"
                  ]
                },
                "description": "YANG notification `event-publish-time` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ed-arguments",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ios-events-oper:eem-event-publish/ed-arguments",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ios-events-oper:eem-event-publish",
                    "ed-arguments"
                  ]
                },
                "description": "YANG notification `ed-arguments` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-ip-sla-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-ip-sla-events\n\nEvent/notification data from `Cisco-IOS-XE-ip-sla-events` module.\n\n**Endpoints:** 11 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 11 | Operations: 11",
          "item": [
            {
              "name": "GET Notification: ipsla-reaction-update",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update"
                  ]
                },
                "description": "YANG notification `ipsla-reaction-update` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: oper-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update/oper-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update",
                    "oper-id"
                  ]
                },
                "description": "YANG notification `oper-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: probe-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update/probe-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update",
                    "probe-type"
                  ]
                },
                "description": "YANG notification `probe-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: oper-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update/oper-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update",
                    "oper-type"
                  ]
                },
                "description": "YANG notification `oper-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: react-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update/react-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update",
                    "react-type"
                  ]
                },
                "description": "YANG notification `react-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: react-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update/react-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update",
                    "react-status"
                  ]
                },
                "description": "YANG notification `react-status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: react-value",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update/react-value",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update",
                    "react-value"
                  ]
                },
                "description": "YANG notification `react-value` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: precision",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update/precision",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update",
                    "precision"
                  ]
                },
                "description": "YANG notification `precision` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: react-data",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update/react-data",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update",
                    "react-data"
                  ]
                },
                "description": "YANG notification `react-data` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: oper-data",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update/oper-data",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ip-sla-events:ipsla-reaction-update",
                    "oper-data"
                  ]
                },
                "description": "YANG notification `oper-data` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-line-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-line-events\n\nEvent/notification data from `Cisco-IOS-XE-line-events` module.\n\n**Endpoints:** 4 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 4 | Operations: 4",
          "item": [
            {
              "name": "GET Notification: line-state-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-line-events:line-state-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-line-events:line-state-event"
                  ]
                },
                "description": "YANG notification `line-state-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-line-events:line-state-event/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-line-events:line-state-event",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-line-events:line-state-event/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-line-events:line-state-event",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: state-event-list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-line-events:line-state-event/state-event-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-line-events:line-state-event",
                    "state-event-list"
                  ]
                },
                "description": "YANG notification `state-event-list` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-loop-detect-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-loop-detect-events\n\nEvent/notification data from `Cisco-IOS-XE-loop-detect-events` module.\n\n**Endpoints:** 4 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 4 | Operations: 4",
          "item": [
            {
              "name": "GET Notification: loopdetect-intf-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-loop-detect-events:loopdetect-intf-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-loop-detect-events:loopdetect-intf-event"
                  ]
                },
                "description": "YANG notification `loopdetect-intf-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-loop-detect-events:loopdetect-intf-event/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-loop-detect-events:loopdetect-intf-event",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: recvr-if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-loop-detect-events:loopdetect-intf-event/recvr-if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-loop-detect-events:loopdetect-intf-event",
                    "recvr-if-name"
                  ]
                },
                "description": "YANG notification `recvr-if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-loop-detect-events:loopdetect-intf-event/event-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-loop-detect-events:loopdetect-intf-event",
                    "event-type"
                  ]
                },
                "description": "YANG notification `event-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-matm-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-matm-events\n\nEvent/notification data from `Cisco-IOS-XE-matm-events` module.\n\n**Endpoints:** 5 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 5 | Operations: 5",
          "item": [
            {
              "name": "GET Notification: mac-flap-intf-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-matm-events:mac-flap-intf-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-matm-events:mac-flap-intf-event"
                  ]
                },
                "description": "YANG notification `mac-flap-intf-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: prev-port-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-matm-events:mac-flap-intf-event/prev-port-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-matm-events:mac-flap-intf-event",
                    "prev-port-name"
                  ]
                },
                "description": "YANG notification `prev-port-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-port-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-matm-events:mac-flap-intf-event/new-port-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-matm-events:mac-flap-intf-event",
                    "new-port-name"
                  ]
                },
                "description": "YANG notification `new-port-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vlan-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-matm-events:mac-flap-intf-event/vlan-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-matm-events:mac-flap-intf-event",
                    "vlan-id"
                  ]
                },
                "description": "YANG notification `vlan-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: client-mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-matm-events:mac-flap-intf-event/client-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-matm-events:mac-flap-intf-event",
                    "client-mac"
                  ]
                },
                "description": "YANG notification `client-mac` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-mcast-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-mcast-events\n\nEvent/notification data from `Cisco-IOS-XE-mcast-events` module.\n\n**Endpoints:** 9 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 9 | Operations: 9",
          "item": [
            {
              "name": "GET Notification: pim-nbr-state-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-mcast-events:pim-nbr-state-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-mcast-events:pim-nbr-state-event"
                  ]
                },
                "description": "YANG notification `pim-nbr-state-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-mcast-events:pim-nbr-state-event/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-mcast-events:pim-nbr-state-event",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-mcast-events:pim-nbr-state-event/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-mcast-events:pim-nbr-state-event",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-mcast-events:pim-nbr-state-event/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-mcast-events:pim-nbr-state-event",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-mcast-events:pim-nbr-state-event/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-mcast-events:pim-nbr-state-event",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: nbr-addr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-mcast-events:pim-nbr-state-event/nbr-addr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-mcast-events:pim-nbr-state-event",
                    "nbr-addr"
                  ]
                },
                "description": "YANG notification `nbr-addr` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ni-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-mcast-events:pim-nbr-state-event/ni-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-mcast-events:pim-nbr-state-event",
                    "ni-type"
                  ]
                },
                "description": "YANG notification `ni-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ni-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-mcast-events:pim-nbr-state-event/ni-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-mcast-events:pim-nbr-state-event",
                    "ni-name"
                  ]
                },
                "description": "YANG notification `ni-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-mcast-events:pim-nbr-state-event/state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-mcast-events:pim-nbr-state-event",
                    "state"
                  ]
                },
                "description": "YANG notification `state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-nat-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-nat-events\n\nEvent/notification data from `Cisco-IOS-XE-nat-events` module.\n\n**Endpoints:** 17 | **Notifications:** 2\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 17 | Operations: 17",
          "item": [
            {
              "name": "GET Notification: nat-route-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-route-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-route-change"
                  ]
                },
                "description": "YANG notification `nat-route-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-route-change/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-route-change",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-route-change/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-route-change",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-route-change/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-route-change",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-route-change/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-route-change",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: object-tracker",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-route-change/object-tracker",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-route-change",
                    "object-tracker"
                  ]
                },
                "description": "YANG notification `object-tracker` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-route-change/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-route-change",
                    "address"
                  ]
                },
                "description": "YANG notification `address` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: mask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-route-change/mask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-route-change",
                    "mask"
                  ]
                },
                "description": "YANG notification `mask` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: route-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-route-change/route-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-route-change",
                    "route-type"
                  ]
                },
                "description": "YANG notification `route-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: update",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-route-change/update",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-route-change",
                    "update"
                  ]
                },
                "description": "YANG notification `update` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: nat-update",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-update",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-update"
                  ]
                },
                "description": "YANG notification `nat-update` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-update/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-update",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-update/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-update",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-update/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-update",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: nat-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-update/nat-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-update",
                    "nat-type"
                  ]
                },
                "description": "YANG notification `nat-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: nat-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-update/nat-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-update",
                    "nat-event"
                  ]
                },
                "description": "YANG notification `nat-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: nat-event-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-nat-events:nat-update/nat-event-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-nat-events:nat-update",
                    "nat-event-type"
                  ]
                },
                "description": "YANG notification `nat-event-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-ngfw-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-ngfw-events\n\nEvent/notification data from `Cisco-IOS-XE-ngfw-events` module.\n\n**Endpoints:** 7 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 7 | Operations: 7",
          "item": [
            {
              "name": "GET Notification: ngfw-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ngfw-events:ngfw-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ngfw-events:ngfw-event"
                  ]
                },
                "description": "YANG notification `ngfw-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity-level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ngfw-events:ngfw-event/severity-level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ngfw-events:ngfw-event",
                    "severity-level"
                  ]
                },
                "description": "YANG notification `severity-level` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ngfw-events:ngfw-event/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ngfw-events:ngfw-event",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: zp-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ngfw-events:ngfw-event/zp-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ngfw-events:ngfw-event",
                    "zp-name"
                  ]
                },
                "description": "YANG notification `zp-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: policy-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ngfw-events:ngfw-event/policy-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ngfw-events:ngfw-event",
                    "policy-name"
                  ]
                },
                "description": "YANG notification `policy-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ngfw-events:ngfw-event/event-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ngfw-events:ngfw-event",
                    "event-type"
                  ]
                },
                "description": "YANG notification `event-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: err-reason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ngfw-events:ngfw-event/err-reason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ngfw-events:ngfw-event",
                    "err-reason"
                  ]
                },
                "description": "YANG notification `err-reason` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-ospf-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-ospf-events\n\nEvent/notification data from `Cisco-IOS-XE-ospf-events` module.\n\n**Endpoints:** 20 | **Notifications:** 2\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 20 | Operations: 20",
          "item": [
            {
              "name": "GET Notification: ospfv3-nbr-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change"
                  ]
                },
                "description": "YANG notification `ospfv3-nbr-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: process-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change/process-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change",
                    "process-id"
                  ]
                },
                "description": "YANG notification `process-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: af",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change/af",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change",
                    "af"
                  ]
                },
                "description": "YANG notification `af` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: router-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change/router-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change",
                    "router-id"
                  ]
                },
                "description": "YANG notification `router-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: nbr-addr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change/nbr-addr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change",
                    "nbr-addr"
                  ]
                },
                "description": "YANG notification `nbr-addr` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: nbr-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change/nbr-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change",
                    "nbr-id"
                  ]
                },
                "description": "YANG notification `nbr-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-addr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change/if-addr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change",
                    "if-addr"
                  ]
                },
                "description": "YANG notification `if-addr` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: nbr-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change/nbr-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-nbr-state-change",
                    "nbr-state"
                  ]
                },
                "description": "YANG notification `nbr-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ospfv3-if-state-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-if-state-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-if-state-change"
                  ]
                },
                "description": "YANG notification `ospfv3-if-state-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-if-state-change/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-if-state-change",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-if-state-change/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-if-state-change",
                    "vrf-name"
                  ]
                },
                "description": "YANG notification `vrf-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: process-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-if-state-change/process-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-if-state-change",
                    "process-id"
                  ]
                },
                "description": "YANG notification `process-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: af",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-if-state-change/af",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-if-state-change",
                    "af"
                  ]
                },
                "description": "YANG notification `af` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: router-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-if-state-change/router-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-if-state-change",
                    "router-id"
                  ]
                },
                "description": "YANG notification `router-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: network-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-if-state-change/network-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-if-state-change",
                    "network-type"
                  ]
                },
                "description": "YANG notification `network-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-if-state-change/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-if-state-change",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-ospf-events:ospfv3-if-state-change/if-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-ospf-events:ospfv3-if-state-change",
                    "if-state"
                  ]
                },
                "description": "YANG notification `if-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-perf-measure-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-perf-measure-events\n\nEvent/notification data from `Cisco-IOS-XE-perf-measure-events` module.\n\n**Endpoints:** 12 | **Notifications:** 6\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 12 | Operations: 12",
          "item": [
            {
              "name": "GET Notification: pm-dm-probe-end-notif",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-perf-measure-events:pm-dm-probe-end-notif",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-perf-measure-events:pm-dm-probe-end-notif"
                  ]
                },
                "description": "YANG notification `pm-dm-probe-end-notif` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-perf-measure-events:pm-dm-probe-end-notif/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-perf-measure-events:pm-dm-probe-end-notif",
                    "name"
                  ]
                },
                "description": "YANG notification `name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: pm-dm-aggr-end-notif",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-perf-measure-events:pm-dm-aggr-end-notif",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-perf-measure-events:pm-dm-aggr-end-notif"
                  ]
                },
                "description": "YANG notification `pm-dm-aggr-end-notif` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-perf-measure-events:pm-dm-aggr-end-notif/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-perf-measure-events:pm-dm-aggr-end-notif",
                    "name"
                  ]
                },
                "description": "YANG notification `name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: pm-dm-adv-event-notif",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-perf-measure-events:pm-dm-adv-event-notif",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-perf-measure-events:pm-dm-adv-event-notif"
                  ]
                },
                "description": "YANG notification `pm-dm-adv-event-notif` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-perf-measure-events:pm-dm-adv-event-notif/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-perf-measure-events:pm-dm-adv-event-notif",
                    "name"
                  ]
                },
                "description": "YANG notification `name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: pm-dm-ep-probe-end-notif",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-perf-measure-events:pm-dm-ep-probe-end-notif",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-perf-measure-events:pm-dm-ep-probe-end-notif"
                  ]
                },
                "description": "YANG notification `pm-dm-ep-probe-end-notif` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-perf-measure-events:pm-dm-ep-probe-end-notif/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-perf-measure-events:pm-dm-ep-probe-end-notif",
                    "name"
                  ]
                },
                "description": "YANG notification `name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: pm-dm-ep-aggr-end-notif",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-perf-measure-events:pm-dm-ep-aggr-end-notif",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-perf-measure-events:pm-dm-ep-aggr-end-notif"
                  ]
                },
                "description": "YANG notification `pm-dm-ep-aggr-end-notif` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-perf-measure-events:pm-dm-ep-aggr-end-notif/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-perf-measure-events:pm-dm-ep-aggr-end-notif",
                    "name"
                  ]
                },
                "description": "YANG notification `name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: pm-dm-ep-adv-event-notif",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-perf-measure-events:pm-dm-ep-adv-event-notif",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-perf-measure-events:pm-dm-ep-adv-event-notif"
                  ]
                },
                "description": "YANG notification `pm-dm-ep-adv-event-notif` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-perf-measure-events:pm-dm-ep-adv-event-notif/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-perf-measure-events:pm-dm-ep-adv-event-notif",
                    "name"
                  ]
                },
                "description": "YANG notification `name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-platform-events-oper",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-platform-events-oper\n\nEvent/notification data from `Cisco-IOS-XE-platform-events-oper` module.\n\n**Endpoints:** 22 | **Notifications:** 2\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 22 | Operations: 22",
          "item": [
            {
              "name": "GET Notification: platform-sensor-state-update",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update"
                  ]
                },
                "description": "YANG notification `platform-sensor-state-update` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: comp-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update/comp-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update",
                    "comp-type"
                  ]
                },
                "description": "YANG notification `comp-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sensor-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update/sensor-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update",
                    "sensor-type"
                  ]
                },
                "description": "YANG notification `sensor-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: description",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update",
                    "description"
                  ]
                },
                "description": "YANG notification `description` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: location",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update/location",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update",
                    "location"
                  ]
                },
                "description": "YANG notification `location` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update",
                    "id"
                  ]
                },
                "description": "YANG notification `id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sensor-val",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update/sensor-val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update",
                    "sensor-val"
                  ]
                },
                "description": "YANG notification `sensor-val` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: alarm-data",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update/alarm-data",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update",
                    "alarm-data"
                  ]
                },
                "description": "YANG notification `alarm-data` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: time-stamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update/time-stamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-sensor-state-update",
                    "time-stamp"
                  ]
                },
                "description": "YANG notification `time-stamp` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: platform-component-state-update",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-component-state-update",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-component-state-update"
                  ]
                },
                "description": "YANG notification `platform-component-state-update` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-component-state-update/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-component-state-update",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: comp-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-component-state-update/comp-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-component-state-update",
                    "comp-type"
                  ]
                },
                "description": "YANG notification `comp-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: description",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-component-state-update/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-component-state-update",
                    "description"
                  ]
                },
                "description": "YANG notification `description` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: location",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-component-state-update/location",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-component-state-update",
                    "location"
                  ]
                },
                "description": "YANG notification `location` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-component-state-update/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-component-state-update",
                    "id"
                  ]
                },
                "description": "YANG notification `id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: part-no",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-component-state-update/part-no",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-component-state-update",
                    "part-no"
                  ]
                },
                "description": "YANG notification `part-no` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: comp-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-component-state-update/comp-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-component-state-update",
                    "comp-state"
                  ]
                },
                "description": "YANG notification `comp-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-component-state-update/new-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-component-state-update",
                    "new-status"
                  ]
                },
                "description": "YANG notification `new-status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: status-desc",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-component-state-update/status-desc",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-component-state-update",
                    "status-desc"
                  ]
                },
                "description": "YANG notification `status-desc` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: time-stamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-events-oper:platform-component-state-update/time-stamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-events-oper:platform-component-state-update",
                    "time-stamp"
                  ]
                },
                "description": "YANG notification `time-stamp` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-platform-software-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-platform-software-events\n\nEvent/notification data from `Cisco-IOS-XE-platform-software-events` module.\n\n**Endpoints:** 6 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 6 | Operations: 6",
          "item": [
            {
              "name": "GET Notification: process-state-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-software-events:process-state-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-software-events:process-state-event"
                  ]
                },
                "description": "YANG notification `process-state-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-software-events:process-state-event/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-software-events:process-state-event",
                    "name"
                  ]
                },
                "description": "YANG notification `name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: location",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-software-events:process-state-event/location",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-software-events:process-state-event",
                    "location"
                  ]
                },
                "description": "YANG notification `location` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: new-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-software-events:process-state-event/new-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-software-events:process-state-event",
                    "new-state"
                  ]
                },
                "description": "YANG notification `new-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: instance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-software-events:process-state-event/instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-software-events:process-state-event",
                    "instance"
                  ]
                },
                "description": "YANG notification `instance` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: pid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-platform-software-events:process-state-event/pid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-platform-software-events:process-state-event",
                    "pid"
                  ]
                },
                "description": "YANG notification `pid` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-port-bounce-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-port-bounce-events\n\nEvent/notification data from `Cisco-IOS-XE-port-bounce-events` module.\n\n**Endpoints:** 4 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 4 | Operations: 4",
          "item": [
            {
              "name": "GET Notification: port-bounce-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-port-bounce-events:port-bounce-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-port-bounce-events:port-bounce-event"
                  ]
                },
                "description": "YANG notification `port-bounce-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-port-bounce-events:port-bounce-event/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-port-bounce-events:port-bounce-event",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-port-bounce-events:port-bounce-event/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-port-bounce-events:port-bounce-event",
                    "status"
                  ]
                },
                "description": "YANG notification `status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: err-code",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-port-bounce-events:port-bounce-event/err-code",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-port-bounce-events:port-bounce-event",
                    "err-code"
                  ]
                },
                "description": "YANG notification `err-code` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-qfp-resource-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-qfp-resource-events\n\nEvent/notification data from `Cisco-IOS-XE-qfp-resource-events` module.\n\n**Endpoints:** 18 | **Notifications:** 2\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 18 | Operations: 18",
          "item": [
            {
              "name": "GET Notification: qfp-resource-usage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage"
                  ]
                },
                "description": "YANG notification `qfp-resource-usage` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: warning-string",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage/warning-string",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage",
                    "warning-string"
                  ]
                },
                "description": "YANG notification `warning-string` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: five-sec",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage/five-sec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage",
                    "five-sec"
                  ]
                },
                "description": "YANG notification `five-sec` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: one-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage/one-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage",
                    "one-min"
                  ]
                },
                "description": "YANG notification `one-min` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: five-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage/five-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage",
                    "five-min"
                  ]
                },
                "description": "YANG notification `five-min` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sixty-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage/sixty-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage",
                    "sixty-min"
                  ]
                },
                "description": "YANG notification `sixty-min` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: qfp-resource-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage/qfp-resource-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-resource-usage",
                    "qfp-resource-status"
                  ]
                },
                "description": "YANG notification `qfp-resource-status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: qfp-exmem-usage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-exmem-usage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-exmem-usage"
                  ]
                },
                "description": "YANG notification `qfp-exmem-usage` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-exmem-usage/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-exmem-usage",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-exmem-usage/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-exmem-usage",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-exmem-usage/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-exmem-usage",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: warning-string",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-exmem-usage/warning-string",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-exmem-usage",
                    "warning-string"
                  ]
                },
                "description": "YANG notification `warning-string` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: total",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-exmem-usage/total",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-exmem-usage",
                    "total"
                  ]
                },
                "description": "YANG notification `total` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: in-use",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-exmem-usage/in-use",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-exmem-usage",
                    "in-use"
                  ]
                },
                "description": "YANG notification `in-use` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: qfp-exmem-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-qfp-resource-events:qfp-exmem-usage/qfp-exmem-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-qfp-resource-events:qfp-exmem-usage",
                    "qfp-exmem-status"
                  ]
                },
                "description": "YANG notification `qfp-exmem-status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-red-app-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-red-app-events\n\nEvent/notification data from `Cisco-IOS-XE-red-app-events` module.\n\n**Endpoints:** 6 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 6 | Operations: 6",
          "item": [
            {
              "name": "GET Notification: red-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-red-app-events:red-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-red-app-events:red-event"
                  ]
                },
                "description": "YANG notification `red-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: rg-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-red-app-events:red-event/rg-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-red-app-events:red-event",
                    "rg-id"
                  ]
                },
                "description": "YANG notification `rg-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sys-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-red-app-events:red-event/sys-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-red-app-events:red-event",
                    "sys-time"
                  ]
                },
                "description": "YANG notification `sys-time` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: site-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-red-app-events:red-event/site-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-red-app-events:red-event",
                    "site-id"
                  ]
                },
                "description": "YANG notification `site-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: sys-ip-addr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-red-app-events:red-event/sys-ip-addr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-red-app-events:red-event",
                    "sys-ip-addr"
                  ]
                },
                "description": "YANG notification `sys-ip-addr` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: role",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-red-app-events:red-event/role",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-red-app-events:red-event",
                    "role"
                  ]
                },
                "description": "YANG notification `role` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-sm-events-oper",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-sm-events-oper\n\nEvent/notification data from `Cisco-IOS-XE-sm-events-oper` module.\n\n**Endpoints:** 9 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 9 | Operations: 9",
          "item": [
            {
              "name": "GET Notification: sessionevent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-sm-events-oper:sessionevent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-sm-events-oper:sessionevent"
                  ]
                },
                "description": "YANG notification `sessionevent` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: client-mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-sm-events-oper:sessionevent/client-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-sm-events-oper:sessionevent",
                    "client-mac"
                  ]
                },
                "description": "YANG notification `client-mac` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: audit-session-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-sm-events-oper:sessionevent/audit-session-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-sm-events-oper:sessionevent",
                    "audit-session-id"
                  ]
                },
                "description": "YANG notification `audit-session-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: method-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-sm-events-oper:sessionevent/method-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-sm-events-oper:sessionevent",
                    "method-id"
                  ]
                },
                "description": "YANG notification `method-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: username",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-sm-events-oper:sessionevent/username",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-sm-events-oper:sessionevent",
                    "username"
                  ]
                },
                "description": "YANG notification `username` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: client-join-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-sm-events-oper:sessionevent/client-join-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-sm-events-oper:sessionevent",
                    "client-join-time"
                  ]
                },
                "description": "YANG notification `client-join-time` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: server-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-sm-events-oper:sessionevent/server-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-sm-events-oper:sessionevent",
                    "server-address"
                  ]
                },
                "description": "YANG notification `server-address` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: interface-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-sm-events-oper:sessionevent/interface-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-sm-events-oper:sessionevent",
                    "interface-name"
                  ]
                },
                "description": "YANG notification `interface-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: session-event-choice",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-sm-events-oper:sessionevent/session-event-choice",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-sm-events-oper:sessionevent",
                    "session-event-choice"
                  ]
                },
                "description": "YANG notification `session-event-choice` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-spanning-tree-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-spanning-tree-events\n\nEvent/notification data from `Cisco-IOS-XE-spanning-tree-events` module.\n\n**Endpoints:** 24 | **Notifications:** 4\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 24 | Operations: 24",
          "item": [
            {
              "name": "GET Notification: stp-intf-guard-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event"
                  ]
                },
                "description": "YANG notification `stp-intf-guard-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: port-num",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event/port-num",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event",
                    "port-num"
                  ]
                },
                "description": "YANG notification `port-num` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: guard-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event/guard-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event",
                    "guard-type"
                  ]
                },
                "description": "YANG notification `guard-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: guard-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event/guard-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event",
                    "guard-state"
                  ]
                },
                "description": "YANG notification `guard-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: action",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event",
                    "action"
                  ]
                },
                "description": "YANG notification `action` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: mac-type-choice",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event/mac-type-choice",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event",
                    "mac-type-choice"
                  ]
                },
                "description": "YANG notification `mac-type-choice` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vlan-type-choice",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event/vlan-type-choice",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event",
                    "vlan-type-choice"
                  ]
                },
                "description": "YANG notification `vlan-type-choice` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: instance-type-choice",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event/instance-type-choice",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-guard-event",
                    "instance-type-choice"
                  ]
                },
                "description": "YANG notification `instance-type-choice` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: stp-intf-role-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-role-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-role-change"
                  ]
                },
                "description": "YANG notification `stp-intf-role-change` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-role-change/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-role-change",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: port-num",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-role-change/port-num",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-role-change",
                    "port-num"
                  ]
                },
                "description": "YANG notification `port-num` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: role",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-role-change/role",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-role-change",
                    "role"
                  ]
                },
                "description": "YANG notification `role` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-role-change/state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-role-change",
                    "state"
                  ]
                },
                "description": "YANG notification `state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: stp-intf-bpdu-sender-conflict-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-sender-conflict-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-sender-conflict-event"
                  ]
                },
                "description": "YANG notification `stp-intf-bpdu-sender-conflict-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-sender-conflict-event/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-sender-conflict-event",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: port-num",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-sender-conflict-event/port-num",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-sender-conflict-event",
                    "port-num"
                  ]
                },
                "description": "YANG notification `port-num` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: exp-mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-sender-conflict-event/exp-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-sender-conflict-event",
                    "exp-mac"
                  ]
                },
                "description": "YANG notification `exp-mac` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: rcvd-mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-sender-conflict-event/rcvd-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-sender-conflict-event",
                    "rcvd-mac"
                  ]
                },
                "description": "YANG notification `rcvd-mac` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-sender-conflict-event/event-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-sender-conflict-event",
                    "event-type"
                  ]
                },
                "description": "YANG notification `event-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: stp-intf-bpdu-delay-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-delay-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-delay-event"
                  ]
                },
                "description": "YANG notification `stp-intf-bpdu-delay-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-delay-event/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-delay-event",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: port-num",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-delay-event/port-num",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-delay-event",
                    "port-num"
                  ]
                },
                "description": "YANG notification `port-num` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-delay-event/event-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-spanning-tree-events:stp-intf-bpdu-delay-event",
                    "event-type"
                  ]
                },
                "description": "YANG notification `event-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-stack-mgr-events-oper",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-stack-mgr-events-oper\n\nEvent/notification data from `Cisco-IOS-XE-stack-mgr-events-oper` module.\n\n**Endpoints:** 9 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 9 | Operations: 9",
          "item": [
            {
              "name": "GET Notification: stkmevent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-stack-mgr-events-oper:stkmevent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-stack-mgr-events-oper:stkmevent"
                  ]
                },
                "description": "YANG notification `stkmevent` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-stack-mgr-events-oper:stkmevent/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-stack-mgr-events-oper:stkmevent",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-stack-mgr-events-oper:stkmevent/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-stack-mgr-events-oper:stkmevent",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-stack-mgr-events-oper:stkmevent/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-stack-mgr-events-oper:stkmevent",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-stack-mgr-events-oper:stkmevent/event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-stack-mgr-events-oper:stkmevent",
                    "event"
                  ]
                },
                "description": "YANG notification `event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: member-number",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-stack-mgr-events-oper:stkmevent/member-number",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-stack-mgr-events-oper:stkmevent",
                    "member-number"
                  ]
                },
                "description": "YANG notification `member-number` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: serial-number",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-stack-mgr-events-oper:stkmevent/serial-number",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-stack-mgr-events-oper:stkmevent",
                    "serial-number"
                  ]
                },
                "description": "YANG notification `serial-number` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: pid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-stack-mgr-events-oper:stkmevent/pid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-stack-mgr-events-oper:stkmevent",
                    "pid"
                  ]
                },
                "description": "YANG notification `pid` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event-detail-type-choice",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-stack-mgr-events-oper:stkmevent/event-detail-type-choice",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-stack-mgr-events-oper:stkmevent",
                    "event-detail-type-choice"
                  ]
                },
                "description": "YANG notification `event-detail-type-choice` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-tech-support-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-tech-support-events\n\nEvent/notification data from `Cisco-IOS-XE-tech-support-events` module.\n\n**Endpoints:** 4 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 4 | Operations: 4",
          "item": [
            {
              "name": "GET Notification: tech-support-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-tech-support-events:tech-support-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-tech-support-events:tech-support-event"
                  ]
                },
                "description": "YANG notification `tech-support-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: file-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-tech-support-events:tech-support-event/file-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-tech-support-events:tech-support-event",
                    "file-name"
                  ]
                },
                "description": "YANG notification `file-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-tech-support-events:tech-support-event/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-tech-support-events:tech-support-event",
                    "status"
                  ]
                },
                "description": "YANG notification `status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: error-code",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-tech-support-events:tech-support-event/error-code",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-tech-support-events:tech-support-event",
                    "error-code"
                  ]
                },
                "description": "YANG notification `error-code` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-trace-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-trace-events\n\nEvent/notification data from `Cisco-IOS-XE-trace-events` module.\n\n**Endpoints:** 3 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 3 | Operations: 3",
          "item": [
            {
              "name": "GET Notification: trace-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-trace-events:trace-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-trace-events:trace-status"
                  ]
                },
                "description": "YANG notification `trace-status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: unique-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-trace-events:trace-status/unique-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-trace-events:trace-status",
                    "unique-id"
                  ]
                },
                "description": "YANG notification `unique-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: percentage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-trace-events:trace-status/percentage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-trace-events:trace-status",
                    "percentage"
                  ]
                },
                "description": "YANG notification `percentage` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-udld-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-udld-events\n\nEvent/notification data from `Cisco-IOS-XE-udld-events` module.\n\n**Endpoints:** 7 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 7 | Operations: 7",
          "item": [
            {
              "name": "GET Notification: udld-intf-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-udld-events:udld-intf-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-udld-events:udld-intf-event"
                  ]
                },
                "description": "YANG notification `udld-intf-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-udld-events:udld-intf-event/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-udld-events:udld-intf-event",
                    "if-name"
                  ]
                },
                "description": "YANG notification `if-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: neighbor-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-udld-events:udld-intf-event/neighbor-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-udld-events:udld-intf-event",
                    "neighbor-id"
                  ]
                },
                "description": "YANG notification `neighbor-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: port-blocked",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-udld-events:udld-intf-event/port-blocked",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-udld-events:udld-intf-event",
                    "port-blocked"
                  ]
                },
                "description": "YANG notification `port-blocked` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: neighbor-port",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-udld-events:udld-intf-event/neighbor-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-udld-events:udld-intf-event",
                    "neighbor-port"
                  ]
                },
                "description": "YANG notification `neighbor-port` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-udld-events:udld-intf-event/state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-udld-events:udld-intf-event",
                    "state"
                  ]
                },
                "description": "YANG notification `state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-udld-events:udld-intf-event/event-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-udld-events:udld-intf-event",
                    "event-type"
                  ]
                },
                "description": "YANG notification `event-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-utd-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-utd-events\n\nEvent/notification data from `Cisco-IOS-XE-utd-events` module.\n\n**Endpoints:** 8 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 8 | Operations: 8",
          "item": [
            {
              "name": "GET Notification: utd-con",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-utd-events:utd-con",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-utd-events:utd-con"
                  ]
                },
                "description": "YANG notification `utd-con` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: severity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-utd-events:utd-con/severity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-utd-events:utd-con",
                    "severity"
                  ]
                },
                "description": "YANG notification `severity` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: host-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-utd-events:utd-con/host-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-utd-events:utd-con",
                    "host-name"
                  ]
                },
                "description": "YANG notification `host-name` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: system-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-utd-events:utd-con/system-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-utd-events:utd-con",
                    "system-ip"
                  ]
                },
                "description": "YANG notification `system-ip` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-utd-events:utd-con/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-utd-events:utd-con",
                    "type"
                  ]
                },
                "description": "YANG notification `type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: timestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-utd-events:utd-con/timestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-utd-events:utd-con",
                    "timestamp"
                  ]
                },
                "description": "YANG notification `timestamp` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-utd-events:utd-con/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-utd-events:utd-con",
                    "status"
                  ]
                },
                "description": "YANG notification `status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: reason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-utd-events:utd-con/reason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-utd-events:utd-con",
                    "reason"
                  ]
                },
                "description": "YANG notification `reason` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-verify-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-verify-events\n\nEvent/notification data from `Cisco-IOS-XE-verify-events` module.\n\n**Endpoints:** 5 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 5 | Operations: 5",
          "item": [
            {
              "name": "GET Notification: verify-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-verify-events:verify-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-verify-events:verify-event"
                  ]
                },
                "description": "YANG notification `verify-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: err-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-verify-events:verify-event/err-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-verify-events:verify-event",
                    "err-type"
                  ]
                },
                "description": "YANG notification `err-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: uuid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-verify-events:verify-event/uuid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-verify-events:verify-event",
                    "uuid"
                  ]
                },
                "description": "YANG notification `uuid` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-verify-events:verify-event/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-verify-events:verify-event",
                    "status"
                  ]
                },
                "description": "YANG notification `status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: computed-hash",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-verify-events:verify-event/computed-hash",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-verify-events:verify-event",
                    "computed-hash"
                  ]
                },
                "description": "YANG notification `computed-hash` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-wireless-events-oper",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-wireless-events-oper\n\nEvent/notification data from `Cisco-IOS-XE-wireless-events-oper` module.\n\n**Endpoints:** 50 | **Notifications:** 5\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 50 | Operations: 50",
          "item": [
            {
              "name": "GET Notification: wsa-client-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event"
                  ]
                },
                "description": "YANG notification `wsa-client-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: client-mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/client-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "client-mac"
                  ]
                },
                "description": "YANG notification `client-mac` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: wtp-mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/wtp-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "wtp-mac"
                  ]
                },
                "description": "YANG notification `wtp-mac` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: state-transition-timestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/state-transition-timestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "state-transition-timestamp"
                  ]
                },
                "description": "YANG notification `state-transition-timestamp` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: audit-session-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/audit-session-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "audit-session-id"
                  ]
                },
                "description": "YANG notification `audit-session-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ssid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/ssid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "ssid"
                  ]
                },
                "description": "YANG notification `ssid` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: client-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/client-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "client-event"
                  ]
                },
                "description": "YANG notification `client-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: client-event-result",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/client-event-result",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "client-event-result"
                  ]
                },
                "description": "YANG notification `client-event-result` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: vlan-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/vlan-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "vlan-id"
                  ]
                },
                "description": "YANG notification `vlan-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: client-vnid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/client-vnid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "client-vnid"
                  ]
                },
                "description": "YANG notification `client-vnid` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: client-sgt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/client-sgt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "client-sgt"
                  ]
                },
                "description": "YANG notification `client-sgt` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: rssi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/rssi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "rssi"
                  ]
                },
                "description": "YANG notification `rssi` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: snr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/snr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "snr"
                  ]
                },
                "description": "YANG notification `snr` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ms-ap-slot-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/ms-ap-slot-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "ms-ap-slot-id"
                  ]
                },
                "description": "YANG notification `ms-ap-slot-id` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: mm-client-role",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/mm-client-role",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "mm-client-role"
                  ]
                },
                "description": "YANG notification `mm-client-role` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ipv4-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/ipv4-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "ipv4-address"
                  ]
                },
                "description": "YANG notification `ipv4-address` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ipv6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/ipv6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "ipv6"
                  ]
                },
                "description": "YANG notification `ipv6` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: dhcp-server-ip-addr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/dhcp-server-ip-addr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "dhcp-server-ip-addr"
                  ]
                },
                "description": "YANG notification `dhcp-server-ip-addr` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: aaa-server",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/aaa-server",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "aaa-server"
                  ]
                },
                "description": "YANG notification `aaa-server` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: is-fabric-client",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/is-fabric-client",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "is-fabric-client"
                  ]
                },
                "description": "YANG notification `is-fabric-client` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: client-event-reason",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/client-event-reason",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "client-event-reason"
                  ]
                },
                "description": "YANG notification `client-event-reason` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: client-event-reason-addon",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:wsa-client-event/client-event-reason-addon",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:wsa-client-event",
                    "client-event-reason-addon"
                  ]
                },
                "description": "YANG notification `client-event-reason-addon` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: rogue-events",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:rogue-events",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:rogue-events"
                  ]
                },
                "description": "YANG notification `rogue-events` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: reporting-ap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:rogue-events/reporting-ap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:rogue-events",
                    "reporting-ap"
                  ]
                },
                "description": "YANG notification `reporting-ap` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: rogue-mac-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:rogue-events/rogue-mac-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:rogue-events",
                    "rogue-mac-address"
                  ]
                },
                "description": "YANG notification `rogue-mac-address` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event-type-choice",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:rogue-events/event-type-choice",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:rogue-events",
                    "event-type-choice"
                  ]
                },
                "description": "YANG notification `event-type-choice` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: threshold-warning-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:threshold-warning-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:threshold-warning-event"
                  ]
                },
                "description": "YANG notification `threshold-warning-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:threshold-warning-event/event-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:threshold-warning-event",
                    "event-type"
                  ]
                },
                "description": "YANG notification `event-type` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: entry-count",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:threshold-warning-event/entry-count",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:threshold-warning-event",
                    "entry-count"
                  ]
                },
                "description": "YANG notification `entry-count` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: configured-threshold",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:threshold-warning-event/configured-threshold",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:threshold-warning-event",
                    "configured-threshold"
                  ]
                },
                "description": "YANG notification `configured-threshold` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: threshold-reached-clear",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:threshold-warning-event/threshold-reached-clear",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:threshold-warning-event",
                    "threshold-reached-clear"
                  ]
                },
                "description": "YANG notification `threshold-reached-clear` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: timestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:threshold-warning-event/timestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:threshold-warning-event",
                    "timestamp"
                  ]
                },
                "description": "YANG notification `timestamp` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ap-predownload-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-predownload-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-predownload-event"
                  ]
                },
                "description": "YANG notification `ap-predownload-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: upgrade-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-predownload-event/upgrade-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-predownload-event",
                    "upgrade-state"
                  ]
                },
                "description": "YANG notification `upgrade-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: total-num-of-aps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-predownload-event/total-num-of-aps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-predownload-event",
                    "total-num-of-aps"
                  ]
                },
                "description": "YANG notification `total-num-of-aps` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: num-of-aps-predownloaded",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-predownload-event/num-of-aps-predownloaded",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-predownload-event",
                    "num-of-aps-predownloaded"
                  ]
                },
                "description": "YANG notification `num-of-aps-predownloaded` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: percentage-predownloaded",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-predownload-event/percentage-predownloaded",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-predownload-event",
                    "percentage-predownloaded"
                  ]
                },
                "description": "YANG notification `percentage-predownloaded` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: ap-upgrade-event",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event"
                  ]
                },
                "description": "YANG notification `ap-upgrade-event` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: upgrade-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event/upgrade-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event",
                    "upgrade-state"
                  ]
                },
                "description": "YANG notification `upgrade-state` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: uuid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event/uuid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event",
                    "uuid"
                  ]
                },
                "description": "YANG notification `uuid` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: percentage-completed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event/percentage-completed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event",
                    "percentage-completed"
                  ]
                },
                "description": "YANG notification `percentage-completed` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: num-of-aps-upgraded",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event/num-of-aps-upgraded",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event",
                    "num-of-aps-upgraded"
                  ]
                },
                "description": "YANG notification `num-of-aps-upgraded` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: aps-selected-for-upgd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event/aps-selected-for-upgd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event",
                    "aps-selected-for-upgd"
                  ]
                },
                "description": "YANG notification `aps-selected-for-upgd` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: num-of-iterations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event/num-of-iterations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event",
                    "num-of-iterations"
                  ]
                },
                "description": "YANG notification `num-of-iterations` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: current-iteration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event/current-iteration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event",
                    "current-iteration"
                  ]
                },
                "description": "YANG notification `current-iteration` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: from-version",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event/from-version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event",
                    "from-version"
                  ]
                },
                "description": "YANG notification `from-version` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: to-version",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event/to-version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event",
                    "to-version"
                  ]
                },
                "description": "YANG notification `to-version` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: start-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event/start-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event",
                    "start-time"
                  ]
                },
                "description": "YANG notification `start-time` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: expected-end-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event/expected-end-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event",
                    "expected-end-time"
                  ]
                },
                "description": "YANG notification `expected-end-time` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: serial-iter-num",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event/serial-iter-num",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-wireless-events-oper:ap-upgrade-event",
                    "serial-iter-num"
                  ]
                },
                "description": "YANG notification `serial-iter-num` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "Cisco-IOS-XE-xcopy-events",
          "description": "Cisco IOS-XE Events - Cisco-IOS-XE-xcopy-events\n\nEvent/notification data from `Cisco-IOS-XE-xcopy-events` module.\n\n**Endpoints:** 14 | **Notifications:** 1\n\nData endpoints use GET. Notifications are delivered via RESTCONF SSE subscriptions.\n\nEndpoints: 14 | Operations: 14",
          "item": [
            {
              "name": "GET Notification: xcopy-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-xcopy-events:xcopy-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-xcopy-events:xcopy-status"
                  ]
                },
                "description": "YANG notification `xcopy-status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: uuid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-xcopy-events:xcopy-status/uuid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-xcopy-events:xcopy-status",
                    "uuid"
                  ]
                },
                "description": "YANG notification `uuid` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-xcopy-events:xcopy-status/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-xcopy-events:xcopy-status",
                    "status"
                  ]
                },
                "description": "YANG notification `status` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: percentage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-xcopy-events:xcopy-status/percentage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-xcopy-events:xcopy-status",
                    "percentage"
                  ]
                },
                "description": "YANG notification `percentage` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: download-speed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-xcopy-events:xcopy-status/download-speed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-xcopy-events:xcopy-status",
                    "download-speed"
                  ]
                },
                "description": "YANG notification `download-speed` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: expected-duration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-xcopy-events:xcopy-status/expected-duration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-xcopy-events:xcopy-status",
                    "expected-duration"
                  ]
                },
                "description": "YANG notification `expected-duration` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: time-left",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-xcopy-events:xcopy-status/time-left",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-xcopy-events:xcopy-status",
                    "time-left"
                  ]
                },
                "description": "YANG notification `time-left` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: time-spent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-xcopy-events:xcopy-status/time-spent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-xcopy-events:xcopy-status",
                    "time-spent"
                  ]
                },
                "description": "YANG notification `time-spent` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: filesize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-xcopy-events:xcopy-status/filesize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-xcopy-events:xcopy-status",
                    "filesize"
                  ]
                },
                "description": "YANG notification `filesize` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: downloaded-size",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-xcopy-events:xcopy-status/downloaded-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-xcopy-events:xcopy-status",
                    "downloaded-size"
                  ]
                },
                "description": "YANG notification `downloaded-size` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: start-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-xcopy-events:xcopy-status/start-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-xcopy-events:xcopy-status",
                    "start-time"
                  ]
                },
                "description": "YANG notification `start-time` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: event-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-xcopy-events:xcopy-status/event-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-xcopy-events:xcopy-status",
                    "event-time"
                  ]
                },
                "description": "YANG notification `event-time` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: errcode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-xcopy-events:xcopy-status/errcode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-xcopy-events:xcopy-status",
                    "errcode"
                  ]
                },
                "description": "YANG notification `errcode` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Notification: errstr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/streams/Cisco-IOS-XE-xcopy-events:xcopy-status/errstr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "streams",
                    "Cisco-IOS-XE-xcopy-events:xcopy-status",
                    "errstr"
                  ]
                },
                "description": "YANG notification `errstr` — subscribe via RESTCONF or NETCONF to receive this event."
              },
              "response": [
                {
                  "name": "200 Notification payload (delivered via SSE/subscription)",
                  "status": "Notification payload (delivered via SSE/subscription)",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        }
      ]
    },
    {
      "name": "9b - Other v2 (Deep Paths)",
      "description": "9 YANG specs | 1374 endpoints | 4593 operations\n\nTree-based deep-path specs with full depth coverage.",
      "item": [
        {
          "name": "cisco-bridge-domain",
          "description": "Cisco IOS-XE - cisco-bridge-domain\n\nData from `cisco-bridge-domain` module.\n\n**Root containers:** 2 (bridge-domain-config, bridge-domain-state)\n**Paths:** 127 | **Operations:** 355\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 127 | Operations: 355",
          "item": [
            {
              "name": "GET Get bridge-domain-config",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config"
                  ]
                },
                "description": "Retrieve bridge-domain-config from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bridge-domain-config",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config"
                  ]
                },
                "description": "Create or replace bridge-domain-config on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"global\": {\n    \"bd-state-notification-enabled\": true,\n    \"bd-state-notification-rate\": 1,\n    \"pbb\": {\n      \"backbone-src-mac\": \"configured-value\"\n    }\n  },\n  \"bridge-groups\": {\n    \"bridge-group\": [\n      {\n        \"name\": {}\n      }\n    ]\n  },\n  \"bridge-domains\": {\n    \"bridge-domain\": [\n      {\n        \"id\": {},\n        \"bridge-group\": {},\n        \"enabled\": {},\n        \"bd-status-change-notification\": {},\n        \"members\": {},\n        \"mtu\": {},\n        \"flooding-mode\": {},\n        \"mac\": {},\n        \"dynamic-arp-inspection\": {},\n        \"ip-source-guard\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bridge-domain-config",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config"
                  ]
                },
                "description": "Partially update bridge-domain-config on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"global\": {\n    \"bd-state-notification-enabled\": true,\n    \"bd-state-notification-rate\": 1,\n    \"pbb\": {\n      \"backbone-src-mac\": \"configured-value\"\n    }\n  },\n  \"bridge-groups\": {\n    \"bridge-group\": [\n      {\n        \"name\": {}\n      }\n    ]\n  },\n  \"bridge-domains\": {\n    \"bridge-domain\": [\n      {\n        \"id\": {},\n        \"bridge-group\": {},\n        \"enabled\": {},\n        \"bd-status-change-notification\": {},\n        \"members\": {},\n        \"mtu\": {},\n        \"flooding-mode\": {},\n        \"mac\": {},\n        \"dynamic-arp-inspection\": {},\n        \"ip-source-guard\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bridge-domain-config",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config"
                  ]
                },
                "description": "Remove bridge-domain-config from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get global",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global"
                  ]
                },
                "description": "Retrieve global from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace global",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global"
                  ]
                },
                "description": "Create or replace global on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"bd-state-notification-enabled\": true,\n  \"bd-state-notification-rate\": 1,\n  \"pbb\": {\n    \"backbone-src-mac\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update global",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global"
                  ]
                },
                "description": "Partially update global on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"bd-state-notification-enabled\": true,\n  \"bd-state-notification-rate\": 1,\n  \"pbb\": {\n    \"backbone-src-mac\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete global",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global"
                  ]
                },
                "description": "Remove global from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bd-state-notification-enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global/bd-state-notification-enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global",
                    "bd-state-notification-enabled"
                  ]
                },
                "description": "Retrieve bd-state-notification-enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bd-state-notification-enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global/bd-state-notification-enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global",
                    "bd-state-notification-enabled"
                  ]
                },
                "description": "Create or replace bd-state-notification-enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bd-state-notification-enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global/bd-state-notification-enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global",
                    "bd-state-notification-enabled"
                  ]
                },
                "description": "Partially update bd-state-notification-enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bd-state-notification-enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global/bd-state-notification-enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global",
                    "bd-state-notification-enabled"
                  ]
                },
                "description": "Remove bd-state-notification-enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bd-state-notification-rate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global/bd-state-notification-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global",
                    "bd-state-notification-rate"
                  ]
                },
                "description": "Retrieve bd-state-notification-rate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bd-state-notification-rate",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global/bd-state-notification-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global",
                    "bd-state-notification-rate"
                  ]
                },
                "description": "Create or replace bd-state-notification-rate on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bd-state-notification-rate",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global/bd-state-notification-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global",
                    "bd-state-notification-rate"
                  ]
                },
                "description": "Partially update bd-state-notification-rate on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bd-state-notification-rate",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global/bd-state-notification-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global",
                    "bd-state-notification-rate"
                  ]
                },
                "description": "Remove bd-state-notification-rate from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pbb",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global/pbb",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global",
                    "pbb"
                  ]
                },
                "description": "Retrieve pbb from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pbb",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global/pbb",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global",
                    "pbb"
                  ]
                },
                "description": "Create or replace pbb on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"backbone-src-mac\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pbb",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global/pbb",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global",
                    "pbb"
                  ]
                },
                "description": "Partially update pbb on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"backbone-src-mac\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pbb",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global/pbb",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global",
                    "pbb"
                  ]
                },
                "description": "Remove pbb from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get backbone-src-mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global/pbb/backbone-src-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global",
                    "pbb",
                    "backbone-src-mac"
                  ]
                },
                "description": "Retrieve backbone-src-mac from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace backbone-src-mac",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global/pbb/backbone-src-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global",
                    "pbb",
                    "backbone-src-mac"
                  ]
                },
                "description": "Create or replace backbone-src-mac on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update backbone-src-mac",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global/pbb/backbone-src-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global",
                    "pbb",
                    "backbone-src-mac"
                  ]
                },
                "description": "Partially update backbone-src-mac on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete backbone-src-mac",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/global/pbb/backbone-src-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "global",
                    "pbb",
                    "backbone-src-mac"
                  ]
                },
                "description": "Remove backbone-src-mac from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bridge-groups",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-groups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-groups"
                  ]
                },
                "description": "Retrieve bridge-groups from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bridge-groups",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-groups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-groups"
                  ]
                },
                "description": "Create or replace bridge-groups on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"bridge-group\": [\n    {\n      \"name\": \"example-1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bridge-groups",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-groups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-groups"
                  ]
                },
                "description": "Partially update bridge-groups on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"bridge-group\": [\n    {\n      \"name\": \"example-1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bridge-groups",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-groups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-groups"
                  ]
                },
                "description": "Remove bridge-groups from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bridge-group",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-groups/bridge-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-groups",
                    "bridge-group"
                  ]
                },
                "description": "Retrieve bridge-group from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bridge-group",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-groups/bridge-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-groups",
                    "bridge-group"
                  ]
                },
                "description": "Create or replace bridge-group on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bridge-group",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-groups/bridge-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-groups",
                    "bridge-group"
                  ]
                },
                "description": "Partially update bridge-group on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bridge-group",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-groups/bridge-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-groups",
                    "bridge-group"
                  ]
                },
                "description": "Remove bridge-group from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bridge-group",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-groups/bridge-group={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-groups",
                    "bridge-group=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve bridge-group from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bridge-group",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-groups/bridge-group={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-groups",
                    "bridge-group=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace bridge-group on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bridge-group",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-groups/bridge-group={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-groups",
                    "bridge-group=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update bridge-group on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bridge-group",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-groups/bridge-group={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-groups",
                    "bridge-group=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove bridge-group from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-groups/bridge-group/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-groups",
                    "bridge-group",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-groups/bridge-group/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-groups",
                    "bridge-group",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-groups/bridge-group/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-groups",
                    "bridge-group",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-groups/bridge-group/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-groups",
                    "bridge-group",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bridge-domains",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains"
                  ]
                },
                "description": "Retrieve bridge-domains from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bridge-domains",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains"
                  ]
                },
                "description": "Create or replace bridge-domains on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"bridge-domain\": [\n    {\n      \"id\": \"1\",\n      \"bridge-group\": \"1\",\n      \"enabled\": true,\n      \"bd-status-change-notification\": true,\n      \"members\": {\n        \"ac-member\": {},\n        \"vfi-member\": {},\n        \"access-pw-member\": {}\n      },\n      \"mtu\": 1500,\n      \"flooding-mode\": \"configured-value\",\n      \"mac\": {\n        \"learning-enabled\": {},\n        \"limit\": {},\n        \"aging\": {},\n        \"port-down\": {},\n        \"flooding\": {},\n        \"secure\": {},\n        \"static\": {}\n      },\n      \"dynamic-arp-inspection\": {\n        \"address-validation\": {},\n        \"logging\": {}\n      },\n      \"ip-source-guard\": {\n        \"logging\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bridge-domains",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains"
                  ]
                },
                "description": "Partially update bridge-domains on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"bridge-domain\": [\n    {\n      \"id\": \"1\",\n      \"bridge-group\": \"1\",\n      \"enabled\": true,\n      \"bd-status-change-notification\": true,\n      \"members\": {\n        \"ac-member\": {},\n        \"vfi-member\": {},\n        \"access-pw-member\": {}\n      },\n      \"mtu\": 1500,\n      \"flooding-mode\": \"configured-value\",\n      \"mac\": {\n        \"learning-enabled\": {},\n        \"limit\": {},\n        \"aging\": {},\n        \"port-down\": {},\n        \"flooding\": {},\n        \"secure\": {},\n        \"static\": {}\n      },\n      \"dynamic-arp-inspection\": {\n        \"address-validation\": {},\n        \"logging\": {}\n      },\n      \"ip-source-guard\": {\n        \"logging\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bridge-domains",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains"
                  ]
                },
                "description": "Remove bridge-domains from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bridge-domain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain"
                  ]
                },
                "description": "Retrieve bridge-domain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bridge-domain",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain"
                  ]
                },
                "description": "Create or replace bridge-domain on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\",\n    \"bridge-group\": \"1\",\n    \"enabled\": true,\n    \"bd-status-change-notification\": true,\n    \"members\": {\n      \"ac-member\": [\n        {}\n      ],\n      \"vfi-member\": [\n        {}\n      ],\n      \"access-pw-member\": {\n        \"access-pw-if-member\": {},\n        \"pw-neighbor-spec\": {}\n      }\n    },\n    \"mtu\": 1500,\n    \"flooding-mode\": \"configured-value\",\n    \"mac\": {\n      \"learning-enabled\": true,\n      \"limit\": {\n        \"maximum\": {},\n        \"action\": {},\n        \"notification\": {}\n      },\n      \"aging\": {\n        \"time\": {},\n        \"type\": {}\n      },\n      \"port-down\": {\n        \"flush\": {}\n      },\n      \"flooding\": {\n        \"disabled\": {},\n        \"disabled-unknown-unicast\": {}\n      },\n      \"secure\": {\n        \"action\": {},\n        \"logging\": {}\n      },\n      \"static\": {\n        \"mac-addresses\": {}\n      }\n    },\n    \"dynamic-arp-inspection\": {\n      \"address-validation\": {\n        \"dst-mac\": {},\n        \"src-mac\": {},\n        \"ipv4\": {}\n      },\n      \"logging\": true\n    },\n    \"ip-source-guard\": {\n      \"logging\": true\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bridge-domain",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain"
                  ]
                },
                "description": "Partially update bridge-domain on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\",\n    \"bridge-group\": \"1\",\n    \"enabled\": true,\n    \"bd-status-change-notification\": true,\n    \"members\": {\n      \"ac-member\": [\n        {}\n      ],\n      \"vfi-member\": [\n        {}\n      ],\n      \"access-pw-member\": {\n        \"access-pw-if-member\": {},\n        \"pw-neighbor-spec\": {}\n      }\n    },\n    \"mtu\": 1500,\n    \"flooding-mode\": \"configured-value\",\n    \"mac\": {\n      \"learning-enabled\": true,\n      \"limit\": {\n        \"maximum\": {},\n        \"action\": {},\n        \"notification\": {}\n      },\n      \"aging\": {\n        \"time\": {},\n        \"type\": {}\n      },\n      \"port-down\": {\n        \"flush\": {}\n      },\n      \"flooding\": {\n        \"disabled\": {},\n        \"disabled-unknown-unicast\": {}\n      },\n      \"secure\": {\n        \"action\": {},\n        \"logging\": {}\n      },\n      \"static\": {\n        \"mac-addresses\": {}\n      }\n    },\n    \"dynamic-arp-inspection\": {\n      \"address-validation\": {\n        \"dst-mac\": {},\n        \"src-mac\": {},\n        \"ipv4\": {}\n      },\n      \"logging\": true\n    },\n    \"ip-source-guard\": {\n      \"logging\": true\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bridge-domain",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain"
                  ]
                },
                "description": "Remove bridge-domain from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bridge-domain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Retrieve bridge-domain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bridge-domain",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Create or replace bridge-domain on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\",\n    \"bridge-group\": \"1\",\n    \"enabled\": true,\n    \"bd-status-change-notification\": true,\n    \"members\": {\n      \"ac-member\": [\n        {}\n      ],\n      \"vfi-member\": [\n        {}\n      ],\n      \"access-pw-member\": {\n        \"access-pw-if-member\": {},\n        \"pw-neighbor-spec\": {}\n      }\n    },\n    \"mtu\": 1500,\n    \"flooding-mode\": \"configured-value\",\n    \"mac\": {\n      \"learning-enabled\": true,\n      \"limit\": {\n        \"maximum\": {},\n        \"action\": {},\n        \"notification\": {}\n      },\n      \"aging\": {\n        \"time\": {},\n        \"type\": {}\n      },\n      \"port-down\": {\n        \"flush\": {}\n      },\n      \"flooding\": {\n        \"disabled\": {},\n        \"disabled-unknown-unicast\": {}\n      },\n      \"secure\": {\n        \"action\": {},\n        \"logging\": {}\n      },\n      \"static\": {\n        \"mac-addresses\": {}\n      }\n    },\n    \"dynamic-arp-inspection\": {\n      \"address-validation\": {\n        \"dst-mac\": {},\n        \"src-mac\": {},\n        \"ipv4\": {}\n      },\n      \"logging\": true\n    },\n    \"ip-source-guard\": {\n      \"logging\": true\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bridge-domain",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Partially update bridge-domain on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\",\n    \"bridge-group\": \"1\",\n    \"enabled\": true,\n    \"bd-status-change-notification\": true,\n    \"members\": {\n      \"ac-member\": [\n        {}\n      ],\n      \"vfi-member\": [\n        {}\n      ],\n      \"access-pw-member\": {\n        \"access-pw-if-member\": {},\n        \"pw-neighbor-spec\": {}\n      }\n    },\n    \"mtu\": 1500,\n    \"flooding-mode\": \"configured-value\",\n    \"mac\": {\n      \"learning-enabled\": true,\n      \"limit\": {\n        \"maximum\": {},\n        \"action\": {},\n        \"notification\": {}\n      },\n      \"aging\": {\n        \"time\": {},\n        \"type\": {}\n      },\n      \"port-down\": {\n        \"flush\": {}\n      },\n      \"flooding\": {\n        \"disabled\": {},\n        \"disabled-unknown-unicast\": {}\n      },\n      \"secure\": {\n        \"action\": {},\n        \"logging\": {}\n      },\n      \"static\": {\n        \"mac-addresses\": {}\n      }\n    },\n    \"dynamic-arp-inspection\": {\n      \"address-validation\": {\n        \"dst-mac\": {},\n        \"src-mac\": {},\n        \"ipv4\": {}\n      },\n      \"logging\": true\n    },\n    \"ip-source-guard\": {\n      \"logging\": true\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bridge-domain",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Remove bridge-domain from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "id"
                  ]
                },
                "description": "Retrieve id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "id"
                  ]
                },
                "description": "Create or replace id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "id"
                  ]
                },
                "description": "Partially update id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "id"
                  ]
                },
                "description": "Remove id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bridge-group",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/bridge-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "bridge-group"
                  ]
                },
                "description": "Retrieve bridge-group from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bridge-group",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/bridge-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "bridge-group"
                  ]
                },
                "description": "Create or replace bridge-group on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bridge-group",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/bridge-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "bridge-group"
                  ]
                },
                "description": "Partially update bridge-group on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bridge-group",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/bridge-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "bridge-group"
                  ]
                },
                "description": "Remove bridge-group from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bd-status-change-notification",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/bd-status-change-notification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "bd-status-change-notification"
                  ]
                },
                "description": "Retrieve bd-status-change-notification from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bd-status-change-notification",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/bd-status-change-notification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "bd-status-change-notification"
                  ]
                },
                "description": "Create or replace bd-status-change-notification on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bd-status-change-notification",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/bd-status-change-notification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "bd-status-change-notification"
                  ]
                },
                "description": "Partially update bd-status-change-notification on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bd-status-change-notification",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/bd-status-change-notification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "bd-status-change-notification"
                  ]
                },
                "description": "Remove bd-status-change-notification from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get members",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members"
                  ]
                },
                "description": "Retrieve members from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace members",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members"
                  ]
                },
                "description": "Create or replace members on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ac-member\": [\n    {\n      \"interface\": \"GigabitEthernet1/0/1\",\n      \"split-horizon-group\": {\n        \"id\": {}\n      },\n      \"mac\": {\n        \"learning-enabled\": {},\n        \"limit\": {},\n        \"aging\": {},\n        \"port-down\": {},\n        \"secure\": {}\n      },\n      \"igmp-snooping\": {\n        \"profile-name\": {}\n      },\n      \"mld-snooping\": {\n        \"profile-name\": {}\n      },\n      \"dhcp-ipv4-snooping\": {\n        \"profile-name\": {}\n      },\n      \"flooding\": {\n        \"disabled\": {},\n        \"disabled-unknown-unicast\": {}\n      },\n      \"storm-control\": {\n        \"thresholds\": {},\n        \"action\": {}\n      },\n      \"dynamic-arp-inspection\": {\n        \"address-validation\": {},\n        \"logging\": {},\n        \"enable\": {}\n      },\n      \"ip-source-guard\": {\n        \"logging\": {},\n        \"enable\": {}\n      }\n    }\n  ],\n  \"vfi-member\": [\n    {\n      \"interface\": \"GigabitEthernet1/0/1\"\n    }\n  ],\n  \"access-pw-member\": {\n    \"access-pw-if-member\": [\n      {\n        \"interface\": {}\n      }\n    ],\n    \"pw-neighbor-spec\": {\n      \"neighbor-ip-address\": \"10.1.1.1\",\n      \"vc-id\": 1,\n      \"static-label\": {\n        \"local-label\": {},\n        \"remote-label\": {}\n      },\n      \"pw-class-template\": \"45\",\n      \"split-horizon-group\": {\n        \"id\": {}\n      },\n      \"mac\": {\n        \"learning-enabled\": {},\n        \"limit\": {},\n        \"aging\": {},\n        \"port-down\": {},\n        \"secure\": {}\n      },\n      \"igmp-snooping\": {\n        \"profile-name\": {}\n      },\n      \"mld-snooping\": {\n        \"profile-name\": {}\n      },\n      \"dhcp-ipv4-snooping\": {\n        \"profile-name\": {}\n      },\n      \"flooding\": {\n        \"disabled\": {},\n        \"disabled-unknown-unicast\": {}\n      }\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update members",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members"
                  ]
                },
                "description": "Partially update members on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ac-member\": [\n    {\n      \"interface\": \"GigabitEthernet1/0/1\",\n      \"split-horizon-group\": {\n        \"id\": {}\n      },\n      \"mac\": {\n        \"learning-enabled\": {},\n        \"limit\": {},\n        \"aging\": {},\n        \"port-down\": {},\n        \"secure\": {}\n      },\n      \"igmp-snooping\": {\n        \"profile-name\": {}\n      },\n      \"mld-snooping\": {\n        \"profile-name\": {}\n      },\n      \"dhcp-ipv4-snooping\": {\n        \"profile-name\": {}\n      },\n      \"flooding\": {\n        \"disabled\": {},\n        \"disabled-unknown-unicast\": {}\n      },\n      \"storm-control\": {\n        \"thresholds\": {},\n        \"action\": {}\n      },\n      \"dynamic-arp-inspection\": {\n        \"address-validation\": {},\n        \"logging\": {},\n        \"enable\": {}\n      },\n      \"ip-source-guard\": {\n        \"logging\": {},\n        \"enable\": {}\n      }\n    }\n  ],\n  \"vfi-member\": [\n    {\n      \"interface\": \"GigabitEthernet1/0/1\"\n    }\n  ],\n  \"access-pw-member\": {\n    \"access-pw-if-member\": [\n      {\n        \"interface\": {}\n      }\n    ],\n    \"pw-neighbor-spec\": {\n      \"neighbor-ip-address\": \"10.1.1.1\",\n      \"vc-id\": 1,\n      \"static-label\": {\n        \"local-label\": {},\n        \"remote-label\": {}\n      },\n      \"pw-class-template\": \"45\",\n      \"split-horizon-group\": {\n        \"id\": {}\n      },\n      \"mac\": {\n        \"learning-enabled\": {},\n        \"limit\": {},\n        \"aging\": {},\n        \"port-down\": {},\n        \"secure\": {}\n      },\n      \"igmp-snooping\": {\n        \"profile-name\": {}\n      },\n      \"mld-snooping\": {\n        \"profile-name\": {}\n      },\n      \"dhcp-ipv4-snooping\": {\n        \"profile-name\": {}\n      },\n      \"flooding\": {\n        \"disabled\": {},\n        \"disabled-unknown-unicast\": {}\n      }\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete members",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members"
                  ]
                },
                "description": "Remove members from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ac-member",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member"
                  ]
                },
                "description": "Retrieve ac-member from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ac-member",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member"
                  ]
                },
                "description": "Create or replace ac-member on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"interface\": \"GigabitEthernet1/0/1\",\n    \"split-horizon-group\": {\n      \"id\": 1\n    },\n    \"mac\": {\n      \"learning-enabled\": true,\n      \"limit\": {\n        \"maximum\": {},\n        \"action\": {},\n        \"notification\": {}\n      },\n      \"aging\": {\n        \"time\": {},\n        \"type\": {}\n      },\n      \"port-down\": {\n        \"flush\": {}\n      },\n      \"secure\": {\n        \"action\": {},\n        \"logging\": {},\n        \"enabled\": {}\n      }\n    },\n    \"igmp-snooping\": {\n      \"profile-name\": \"example-1\"\n    },\n    \"mld-snooping\": {\n      \"profile-name\": \"example-1\"\n    },\n    \"dhcp-ipv4-snooping\": {\n      \"profile-name\": \"example-1\"\n    },\n    \"flooding\": {\n      \"disabled\": false,\n      \"disabled-unknown-unicast\": true\n    },\n    \"storm-control\": {\n      \"thresholds\": [\n        {}\n      ],\n      \"action\": \"configured-value\"\n    },\n    \"dynamic-arp-inspection\": {\n      \"address-validation\": {\n        \"dst-mac\": {},\n        \"src-mac\": {},\n        \"ipv4\": {}\n      },\n      \"logging\": true,\n      \"enable\": true\n    },\n    \"ip-source-guard\": {\n      \"logging\": true,\n      \"enable\": true\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ac-member",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member"
                  ]
                },
                "description": "Partially update ac-member on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"interface\": \"GigabitEthernet1/0/1\",\n    \"split-horizon-group\": {\n      \"id\": 1\n    },\n    \"mac\": {\n      \"learning-enabled\": true,\n      \"limit\": {\n        \"maximum\": {},\n        \"action\": {},\n        \"notification\": {}\n      },\n      \"aging\": {\n        \"time\": {},\n        \"type\": {}\n      },\n      \"port-down\": {\n        \"flush\": {}\n      },\n      \"secure\": {\n        \"action\": {},\n        \"logging\": {},\n        \"enabled\": {}\n      }\n    },\n    \"igmp-snooping\": {\n      \"profile-name\": \"example-1\"\n    },\n    \"mld-snooping\": {\n      \"profile-name\": \"example-1\"\n    },\n    \"dhcp-ipv4-snooping\": {\n      \"profile-name\": \"example-1\"\n    },\n    \"flooding\": {\n      \"disabled\": false,\n      \"disabled-unknown-unicast\": true\n    },\n    \"storm-control\": {\n      \"thresholds\": [\n        {}\n      ],\n      \"action\": \"configured-value\"\n    },\n    \"dynamic-arp-inspection\": {\n      \"address-validation\": {\n        \"dst-mac\": {},\n        \"src-mac\": {},\n        \"ipv4\": {}\n      },\n      \"logging\": true,\n      \"enable\": true\n    },\n    \"ip-source-guard\": {\n      \"logging\": true,\n      \"enable\": true\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ac-member",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member"
                  ]
                },
                "description": "Remove ac-member from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "interface"
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "interface"
                  ]
                },
                "description": "Create or replace interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"GigabitEthernet1/0/1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "interface"
                  ]
                },
                "description": "Partially update interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"GigabitEthernet1/0/1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "interface"
                  ]
                },
                "description": "Remove interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get split-horizon-group",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/split-horizon-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "split-horizon-group"
                  ]
                },
                "description": "Retrieve split-horizon-group from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace split-horizon-group",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/split-horizon-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "split-horizon-group"
                  ]
                },
                "description": "Create or replace split-horizon-group on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update split-horizon-group",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/split-horizon-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "split-horizon-group"
                  ]
                },
                "description": "Partially update split-horizon-group on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete split-horizon-group",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/split-horizon-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "split-horizon-group"
                  ]
                },
                "description": "Remove split-horizon-group from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "mac"
                  ]
                },
                "description": "Retrieve mac from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mac",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "mac"
                  ]
                },
                "description": "Create or replace mac on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"learning-enabled\": true,\n  \"limit\": {\n    \"maximum\": 1000,\n    \"action\": \"configured-value\",\n    \"notification\": \"configured-value\"\n  },\n  \"aging\": {\n    \"time\": 1,\n    \"type\": \"default\"\n  },\n  \"port-down\": {\n    \"flush\": true\n  },\n  \"secure\": {\n    \"action\": \"configured-value\",\n    \"logging\": true,\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mac",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "mac"
                  ]
                },
                "description": "Partially update mac on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"learning-enabled\": true,\n  \"limit\": {\n    \"maximum\": 1000,\n    \"action\": \"configured-value\",\n    \"notification\": \"configured-value\"\n  },\n  \"aging\": {\n    \"time\": 1,\n    \"type\": \"default\"\n  },\n  \"port-down\": {\n    \"flush\": true\n  },\n  \"secure\": {\n    \"action\": \"configured-value\",\n    \"logging\": true,\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mac",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "mac"
                  ]
                },
                "description": "Remove mac from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmp-snooping",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/igmp-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "igmp-snooping"
                  ]
                },
                "description": "Retrieve igmp-snooping from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace igmp-snooping",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/igmp-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "igmp-snooping"
                  ]
                },
                "description": "Create or replace igmp-snooping on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"profile-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update igmp-snooping",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/igmp-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "igmp-snooping"
                  ]
                },
                "description": "Partially update igmp-snooping on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"profile-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete igmp-snooping",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/igmp-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "igmp-snooping"
                  ]
                },
                "description": "Remove igmp-snooping from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mld-snooping",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/mld-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "mld-snooping"
                  ]
                },
                "description": "Retrieve mld-snooping from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mld-snooping",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/mld-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "mld-snooping"
                  ]
                },
                "description": "Create or replace mld-snooping on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"profile-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mld-snooping",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/mld-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "mld-snooping"
                  ]
                },
                "description": "Partially update mld-snooping on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"profile-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mld-snooping",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/mld-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "mld-snooping"
                  ]
                },
                "description": "Remove mld-snooping from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dhcp-ipv4-snooping",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/dhcp-ipv4-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "dhcp-ipv4-snooping"
                  ]
                },
                "description": "Retrieve dhcp-ipv4-snooping from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dhcp-ipv4-snooping",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/dhcp-ipv4-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "dhcp-ipv4-snooping"
                  ]
                },
                "description": "Create or replace dhcp-ipv4-snooping on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"profile-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dhcp-ipv4-snooping",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/dhcp-ipv4-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "dhcp-ipv4-snooping"
                  ]
                },
                "description": "Partially update dhcp-ipv4-snooping on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"profile-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dhcp-ipv4-snooping",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/dhcp-ipv4-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "dhcp-ipv4-snooping"
                  ]
                },
                "description": "Remove dhcp-ipv4-snooping from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get flooding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/flooding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "flooding"
                  ]
                },
                "description": "Retrieve flooding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace flooding",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/flooding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "flooding"
                  ]
                },
                "description": "Create or replace flooding on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"disabled\": false,\n  \"disabled-unknown-unicast\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update flooding",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/flooding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "flooding"
                  ]
                },
                "description": "Partially update flooding on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"disabled\": false,\n  \"disabled-unknown-unicast\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete flooding",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/flooding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "flooding"
                  ]
                },
                "description": "Remove flooding from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get storm-control",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/storm-control",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "storm-control"
                  ]
                },
                "description": "Retrieve storm-control from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace storm-control",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/storm-control",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "storm-control"
                  ]
                },
                "description": "Create or replace storm-control on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"thresholds\": [\n    {\n      \"traffic-class\": \"configured-value\",\n      \"value\": 1,\n      \"unit\": \"configured-value\"\n    }\n  ],\n  \"action\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update storm-control",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/storm-control",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "storm-control"
                  ]
                },
                "description": "Partially update storm-control on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"thresholds\": [\n    {\n      \"traffic-class\": \"configured-value\",\n      \"value\": 1,\n      \"unit\": \"configured-value\"\n    }\n  ],\n  \"action\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete storm-control",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/storm-control",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "storm-control"
                  ]
                },
                "description": "Remove storm-control from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dynamic-arp-inspection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/dynamic-arp-inspection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "dynamic-arp-inspection"
                  ]
                },
                "description": "Retrieve dynamic-arp-inspection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dynamic-arp-inspection",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/dynamic-arp-inspection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "dynamic-arp-inspection"
                  ]
                },
                "description": "Create or replace dynamic-arp-inspection on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"address-validation\": {\n    \"dst-mac\": true,\n    \"src-mac\": true,\n    \"ipv4\": true\n  },\n  \"logging\": true,\n  \"enable\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dynamic-arp-inspection",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/dynamic-arp-inspection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "dynamic-arp-inspection"
                  ]
                },
                "description": "Partially update dynamic-arp-inspection on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"address-validation\": {\n    \"dst-mac\": true,\n    \"src-mac\": true,\n    \"ipv4\": true\n  },\n  \"logging\": true,\n  \"enable\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dynamic-arp-inspection",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/dynamic-arp-inspection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "dynamic-arp-inspection"
                  ]
                },
                "description": "Remove dynamic-arp-inspection from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip-source-guard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/ip-source-guard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "ip-source-guard"
                  ]
                },
                "description": "Retrieve ip-source-guard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ip-source-guard",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/ip-source-guard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "ip-source-guard"
                  ]
                },
                "description": "Create or replace ip-source-guard on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"logging\": true,\n  \"enable\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ip-source-guard",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/ip-source-guard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "ip-source-guard"
                  ]
                },
                "description": "Partially update ip-source-guard on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"logging\": true,\n  \"enable\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ip-source-guard",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/ac-member/ip-source-guard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "ip-source-guard"
                  ]
                },
                "description": "Remove ip-source-guard from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vfi-member",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/vfi-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "vfi-member"
                  ]
                },
                "description": "Retrieve vfi-member from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vfi-member",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/vfi-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "vfi-member"
                  ]
                },
                "description": "Create or replace vfi-member on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"interface\": \"GigabitEthernet1/0/1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vfi-member",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/vfi-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "vfi-member"
                  ]
                },
                "description": "Partially update vfi-member on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"interface\": \"GigabitEthernet1/0/1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vfi-member",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/vfi-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "vfi-member"
                  ]
                },
                "description": "Remove vfi-member from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/vfi-member/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "vfi-member",
                    "interface"
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/vfi-member/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "vfi-member",
                    "interface"
                  ]
                },
                "description": "Create or replace interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"GigabitEthernet1/0/1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/vfi-member/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "vfi-member",
                    "interface"
                  ]
                },
                "description": "Partially update interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"GigabitEthernet1/0/1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/vfi-member/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "vfi-member",
                    "interface"
                  ]
                },
                "description": "Remove interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get access-pw-member",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/access-pw-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "access-pw-member"
                  ]
                },
                "description": "Retrieve access-pw-member from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace access-pw-member",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/access-pw-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "access-pw-member"
                  ]
                },
                "description": "Create or replace access-pw-member on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"access-pw-if-member\": [\n    {\n      \"interface\": \"GigabitEthernet1/0/1\"\n    }\n  ],\n  \"pw-neighbor-spec\": {\n    \"neighbor-ip-address\": \"10.1.1.1\",\n    \"vc-id\": 1,\n    \"static-label\": {\n      \"local-label\": 1,\n      \"remote-label\": 1\n    },\n    \"pw-class-template\": \"45\",\n    \"split-horizon-group\": {\n      \"id\": 1\n    },\n    \"mac\": {\n      \"learning-enabled\": true,\n      \"limit\": {\n        \"maximum\": {},\n        \"action\": {},\n        \"notification\": {}\n      },\n      \"aging\": {\n        \"time\": {},\n        \"type\": {}\n      },\n      \"port-down\": {\n        \"flush\": {}\n      },\n      \"secure\": {\n        \"action\": {},\n        \"logging\": {},\n        \"enabled\": {}\n      }\n    },\n    \"igmp-snooping\": {\n      \"profile-name\": \"example-1\"\n    },\n    \"mld-snooping\": {\n      \"profile-name\": \"example-1\"\n    },\n    \"dhcp-ipv4-snooping\": {\n      \"profile-name\": \"example-1\"\n    },\n    \"flooding\": {\n      \"disabled\": false,\n      \"disabled-unknown-unicast\": true\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update access-pw-member",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/access-pw-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "access-pw-member"
                  ]
                },
                "description": "Partially update access-pw-member on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"access-pw-if-member\": [\n    {\n      \"interface\": \"GigabitEthernet1/0/1\"\n    }\n  ],\n  \"pw-neighbor-spec\": {\n    \"neighbor-ip-address\": \"10.1.1.1\",\n    \"vc-id\": 1,\n    \"static-label\": {\n      \"local-label\": 1,\n      \"remote-label\": 1\n    },\n    \"pw-class-template\": \"45\",\n    \"split-horizon-group\": {\n      \"id\": 1\n    },\n    \"mac\": {\n      \"learning-enabled\": true,\n      \"limit\": {\n        \"maximum\": {},\n        \"action\": {},\n        \"notification\": {}\n      },\n      \"aging\": {\n        \"time\": {},\n        \"type\": {}\n      },\n      \"port-down\": {\n        \"flush\": {}\n      },\n      \"secure\": {\n        \"action\": {},\n        \"logging\": {},\n        \"enabled\": {}\n      }\n    },\n    \"igmp-snooping\": {\n      \"profile-name\": \"example-1\"\n    },\n    \"mld-snooping\": {\n      \"profile-name\": \"example-1\"\n    },\n    \"dhcp-ipv4-snooping\": {\n      \"profile-name\": \"example-1\"\n    },\n    \"flooding\": {\n      \"disabled\": false,\n      \"disabled-unknown-unicast\": true\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete access-pw-member",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/access-pw-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "access-pw-member"
                  ]
                },
                "description": "Remove access-pw-member from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get access-pw-if-member",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/access-pw-member/access-pw-if-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "access-pw-member",
                    "access-pw-if-member"
                  ]
                },
                "description": "Retrieve access-pw-if-member from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace access-pw-if-member",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/access-pw-member/access-pw-if-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "access-pw-member",
                    "access-pw-if-member"
                  ]
                },
                "description": "Create or replace access-pw-if-member on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"interface\": \"GigabitEthernet1/0/1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update access-pw-if-member",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/access-pw-member/access-pw-if-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "access-pw-member",
                    "access-pw-if-member"
                  ]
                },
                "description": "Partially update access-pw-if-member on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"interface\": \"GigabitEthernet1/0/1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete access-pw-if-member",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/access-pw-member/access-pw-if-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "access-pw-member",
                    "access-pw-if-member"
                  ]
                },
                "description": "Remove access-pw-if-member from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pw-neighbor-spec",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/access-pw-member/pw-neighbor-spec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "access-pw-member",
                    "pw-neighbor-spec"
                  ]
                },
                "description": "Retrieve pw-neighbor-spec from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pw-neighbor-spec",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/access-pw-member/pw-neighbor-spec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "access-pw-member",
                    "pw-neighbor-spec"
                  ]
                },
                "description": "Create or replace pw-neighbor-spec on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"neighbor-ip-address\": \"10.1.1.1\",\n  \"vc-id\": 1,\n  \"static-label\": {\n    \"local-label\": 1,\n    \"remote-label\": 1\n  },\n  \"pw-class-template\": \"45\",\n  \"split-horizon-group\": {\n    \"id\": 1\n  },\n  \"mac\": {\n    \"learning-enabled\": true,\n    \"limit\": {\n      \"maximum\": 1000,\n      \"action\": \"configured-value\",\n      \"notification\": \"configured-value\"\n    },\n    \"aging\": {\n      \"time\": 1,\n      \"type\": \"default\"\n    },\n    \"port-down\": {\n      \"flush\": true\n    },\n    \"secure\": {\n      \"action\": \"configured-value\",\n      \"logging\": true,\n      \"enabled\": true\n    }\n  },\n  \"igmp-snooping\": {\n    \"profile-name\": \"example-1\"\n  },\n  \"mld-snooping\": {\n    \"profile-name\": \"example-1\"\n  },\n  \"dhcp-ipv4-snooping\": {\n    \"profile-name\": \"example-1\"\n  },\n  \"flooding\": {\n    \"disabled\": false,\n    \"disabled-unknown-unicast\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pw-neighbor-spec",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/access-pw-member/pw-neighbor-spec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "access-pw-member",
                    "pw-neighbor-spec"
                  ]
                },
                "description": "Partially update pw-neighbor-spec on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"neighbor-ip-address\": \"10.1.1.1\",\n  \"vc-id\": 1,\n  \"static-label\": {\n    \"local-label\": 1,\n    \"remote-label\": 1\n  },\n  \"pw-class-template\": \"45\",\n  \"split-horizon-group\": {\n    \"id\": 1\n  },\n  \"mac\": {\n    \"learning-enabled\": true,\n    \"limit\": {\n      \"maximum\": 1000,\n      \"action\": \"configured-value\",\n      \"notification\": \"configured-value\"\n    },\n    \"aging\": {\n      \"time\": 1,\n      \"type\": \"default\"\n    },\n    \"port-down\": {\n      \"flush\": true\n    },\n    \"secure\": {\n      \"action\": \"configured-value\",\n      \"logging\": true,\n      \"enabled\": true\n    }\n  },\n  \"igmp-snooping\": {\n    \"profile-name\": \"example-1\"\n  },\n  \"mld-snooping\": {\n    \"profile-name\": \"example-1\"\n  },\n  \"dhcp-ipv4-snooping\": {\n    \"profile-name\": \"example-1\"\n  },\n  \"flooding\": {\n    \"disabled\": false,\n    \"disabled-unknown-unicast\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pw-neighbor-spec",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/members/access-pw-member/pw-neighbor-spec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "access-pw-member",
                    "pw-neighbor-spec"
                  ]
                },
                "description": "Remove pw-neighbor-spec from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mtu"
                  ]
                },
                "description": "Retrieve mtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mtu",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mtu"
                  ]
                },
                "description": "Create or replace mtu on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1500",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mtu",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mtu"
                  ]
                },
                "description": "Partially update mtu on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1500",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mtu",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mtu"
                  ]
                },
                "description": "Remove mtu from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get flooding-mode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/flooding-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "flooding-mode"
                  ]
                },
                "description": "Retrieve flooding-mode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace flooding-mode",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/flooding-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "flooding-mode"
                  ]
                },
                "description": "Create or replace flooding-mode on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update flooding-mode",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/flooding-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "flooding-mode"
                  ]
                },
                "description": "Partially update flooding-mode on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete flooding-mode",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/flooding-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "flooding-mode"
                  ]
                },
                "description": "Remove flooding-mode from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac"
                  ]
                },
                "description": "Retrieve mac from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mac",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac"
                  ]
                },
                "description": "Create or replace mac on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"learning-enabled\": true,\n  \"limit\": {\n    \"maximum\": 1000,\n    \"action\": \"configured-value\",\n    \"notification\": \"configured-value\"\n  },\n  \"aging\": {\n    \"time\": 1,\n    \"type\": \"default\"\n  },\n  \"port-down\": {\n    \"flush\": true\n  },\n  \"flooding\": {\n    \"disabled\": false,\n    \"disabled-unknown-unicast\": true\n  },\n  \"secure\": {\n    \"action\": \"configured-value\",\n    \"logging\": true\n  },\n  \"static\": {\n    \"mac-addresses\": [\n      {\n        \"mac-addr\": {},\n        \"drop\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mac",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac"
                  ]
                },
                "description": "Partially update mac on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"learning-enabled\": true,\n  \"limit\": {\n    \"maximum\": 1000,\n    \"action\": \"configured-value\",\n    \"notification\": \"configured-value\"\n  },\n  \"aging\": {\n    \"time\": 1,\n    \"type\": \"default\"\n  },\n  \"port-down\": {\n    \"flush\": true\n  },\n  \"flooding\": {\n    \"disabled\": false,\n    \"disabled-unknown-unicast\": true\n  },\n  \"secure\": {\n    \"action\": \"configured-value\",\n    \"logging\": true\n  },\n  \"static\": {\n    \"mac-addresses\": [\n      {\n        \"mac-addr\": {},\n        \"drop\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mac",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac"
                  ]
                },
                "description": "Remove mac from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get learning-enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/learning-enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "learning-enabled"
                  ]
                },
                "description": "Retrieve learning-enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace learning-enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/learning-enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "learning-enabled"
                  ]
                },
                "description": "Create or replace learning-enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update learning-enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/learning-enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "learning-enabled"
                  ]
                },
                "description": "Partially update learning-enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete learning-enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/learning-enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "learning-enabled"
                  ]
                },
                "description": "Remove learning-enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get limit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/limit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "limit"
                  ]
                },
                "description": "Retrieve limit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace limit",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/limit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "limit"
                  ]
                },
                "description": "Create or replace limit on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"maximum\": 1000,\n  \"action\": \"configured-value\",\n  \"notification\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update limit",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/limit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "limit"
                  ]
                },
                "description": "Partially update limit on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"maximum\": 1000,\n  \"action\": \"configured-value\",\n  \"notification\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete limit",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/limit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "limit"
                  ]
                },
                "description": "Remove limit from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maximum",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/limit/maximum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "limit",
                    "maximum"
                  ]
                },
                "description": "Retrieve maximum from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maximum",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/limit/maximum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "limit",
                    "maximum"
                  ]
                },
                "description": "Create or replace maximum on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1000",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maximum",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/limit/maximum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "limit",
                    "maximum"
                  ]
                },
                "description": "Partially update maximum on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1000",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maximum",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/limit/maximum",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "limit",
                    "maximum"
                  ]
                },
                "description": "Remove maximum from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get action",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/limit/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "limit",
                    "action"
                  ]
                },
                "description": "Retrieve action from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace action",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/limit/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "limit",
                    "action"
                  ]
                },
                "description": "Create or replace action on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update action",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/limit/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "limit",
                    "action"
                  ]
                },
                "description": "Partially update action on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete action",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/limit/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "limit",
                    "action"
                  ]
                },
                "description": "Remove action from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get notification",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/limit/notification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "limit",
                    "notification"
                  ]
                },
                "description": "Retrieve notification from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace notification",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/limit/notification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "limit",
                    "notification"
                  ]
                },
                "description": "Create or replace notification on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update notification",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/limit/notification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "limit",
                    "notification"
                  ]
                },
                "description": "Partially update notification on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete notification",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/limit/notification",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "limit",
                    "notification"
                  ]
                },
                "description": "Remove notification from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get aging",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/aging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "aging"
                  ]
                },
                "description": "Retrieve aging from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace aging",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/aging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "aging"
                  ]
                },
                "description": "Create or replace aging on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"time\": 1,\n  \"type\": \"default\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update aging",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/aging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "aging"
                  ]
                },
                "description": "Partially update aging on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"time\": 1,\n  \"type\": \"default\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete aging",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/aging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "aging"
                  ]
                },
                "description": "Remove aging from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/aging/time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "aging",
                    "time"
                  ]
                },
                "description": "Retrieve time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace time",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/aging/time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "aging",
                    "time"
                  ]
                },
                "description": "Create or replace time on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update time",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/aging/time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "aging",
                    "time"
                  ]
                },
                "description": "Partially update time on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete time",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/aging/time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "aging",
                    "time"
                  ]
                },
                "description": "Remove time from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/aging/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "aging",
                    "type"
                  ]
                },
                "description": "Retrieve type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace type",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/aging/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "aging",
                    "type"
                  ]
                },
                "description": "Create or replace type on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update type",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/aging/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "aging",
                    "type"
                  ]
                },
                "description": "Partially update type on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete type",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/aging/type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "aging",
                    "type"
                  ]
                },
                "description": "Remove type from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get port-down",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/port-down",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "port-down"
                  ]
                },
                "description": "Retrieve port-down from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace port-down",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/port-down",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "port-down"
                  ]
                },
                "description": "Create or replace port-down on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"flush\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update port-down",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/port-down",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "port-down"
                  ]
                },
                "description": "Partially update port-down on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"flush\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete port-down",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/port-down",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "port-down"
                  ]
                },
                "description": "Remove port-down from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get flush",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/port-down/flush",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "port-down",
                    "flush"
                  ]
                },
                "description": "Retrieve flush from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace flush",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/port-down/flush",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "port-down",
                    "flush"
                  ]
                },
                "description": "Create or replace flush on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update flush",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/port-down/flush",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "port-down",
                    "flush"
                  ]
                },
                "description": "Partially update flush on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete flush",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/port-down/flush",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "port-down",
                    "flush"
                  ]
                },
                "description": "Remove flush from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get flooding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/flooding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "flooding"
                  ]
                },
                "description": "Retrieve flooding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace flooding",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/flooding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "flooding"
                  ]
                },
                "description": "Create or replace flooding on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"disabled\": false,\n  \"disabled-unknown-unicast\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update flooding",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/flooding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "flooding"
                  ]
                },
                "description": "Partially update flooding on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"disabled\": false,\n  \"disabled-unknown-unicast\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete flooding",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/flooding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "flooding"
                  ]
                },
                "description": "Remove flooding from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get disabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/flooding/disabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "flooding",
                    "disabled"
                  ]
                },
                "description": "Retrieve disabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace disabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/flooding/disabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "flooding",
                    "disabled"
                  ]
                },
                "description": "Create or replace disabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update disabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/flooding/disabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "flooding",
                    "disabled"
                  ]
                },
                "description": "Partially update disabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete disabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/flooding/disabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "flooding",
                    "disabled"
                  ]
                },
                "description": "Remove disabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get disabled-unknown-unicast",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/flooding/disabled-unknown-unicast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "flooding",
                    "disabled-unknown-unicast"
                  ]
                },
                "description": "Retrieve disabled-unknown-unicast from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace disabled-unknown-unicast",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/flooding/disabled-unknown-unicast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "flooding",
                    "disabled-unknown-unicast"
                  ]
                },
                "description": "Create or replace disabled-unknown-unicast on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update disabled-unknown-unicast",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/flooding/disabled-unknown-unicast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "flooding",
                    "disabled-unknown-unicast"
                  ]
                },
                "description": "Partially update disabled-unknown-unicast on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete disabled-unknown-unicast",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/flooding/disabled-unknown-unicast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "flooding",
                    "disabled-unknown-unicast"
                  ]
                },
                "description": "Remove disabled-unknown-unicast from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get secure",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/secure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "secure"
                  ]
                },
                "description": "Retrieve secure from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace secure",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/secure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "secure"
                  ]
                },
                "description": "Create or replace secure on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"action\": \"configured-value\",\n  \"logging\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update secure",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/secure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "secure"
                  ]
                },
                "description": "Partially update secure on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"action\": \"configured-value\",\n  \"logging\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete secure",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/secure",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "secure"
                  ]
                },
                "description": "Remove secure from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get action",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/secure/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "secure",
                    "action"
                  ]
                },
                "description": "Retrieve action from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace action",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/secure/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "secure",
                    "action"
                  ]
                },
                "description": "Create or replace action on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update action",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/secure/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "secure",
                    "action"
                  ]
                },
                "description": "Partially update action on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete action",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/secure/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "secure",
                    "action"
                  ]
                },
                "description": "Remove action from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get logging",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/secure/logging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "secure",
                    "logging"
                  ]
                },
                "description": "Retrieve logging from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace logging",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/secure/logging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "secure",
                    "logging"
                  ]
                },
                "description": "Create or replace logging on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update logging",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/secure/logging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "secure",
                    "logging"
                  ]
                },
                "description": "Partially update logging on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete logging",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/secure/logging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "secure",
                    "logging"
                  ]
                },
                "description": "Remove logging from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get static",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "static"
                  ]
                },
                "description": "Retrieve static from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace static",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "static"
                  ]
                },
                "description": "Create or replace static on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mac-addresses\": [\n    {\n      \"mac-addr\": \"configured-value\",\n      \"drop\": false\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update static",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "static"
                  ]
                },
                "description": "Partially update static on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mac-addresses\": [\n    {\n      \"mac-addr\": \"configured-value\",\n      \"drop\": false\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete static",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "static"
                  ]
                },
                "description": "Remove static from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac-addresses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/static/mac-addresses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "static",
                    "mac-addresses"
                  ]
                },
                "description": "Retrieve mac-addresses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mac-addresses",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/static/mac-addresses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "static",
                    "mac-addresses"
                  ]
                },
                "description": "Create or replace mac-addresses on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"mac-addr\": \"configured-value\",\n    \"drop\": false\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mac-addresses",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/static/mac-addresses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "static",
                    "mac-addresses"
                  ]
                },
                "description": "Partially update mac-addresses on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"mac-addr\": \"configured-value\",\n    \"drop\": false\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mac-addresses",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mac/static/mac-addresses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mac",
                    "static",
                    "mac-addresses"
                  ]
                },
                "description": "Remove mac-addresses from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dynamic-arp-inspection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection"
                  ]
                },
                "description": "Retrieve dynamic-arp-inspection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dynamic-arp-inspection",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection"
                  ]
                },
                "description": "Create or replace dynamic-arp-inspection on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"address-validation\": {\n    \"dst-mac\": true,\n    \"src-mac\": true,\n    \"ipv4\": true\n  },\n  \"logging\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dynamic-arp-inspection",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection"
                  ]
                },
                "description": "Partially update dynamic-arp-inspection on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"address-validation\": {\n    \"dst-mac\": true,\n    \"src-mac\": true,\n    \"ipv4\": true\n  },\n  \"logging\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dynamic-arp-inspection",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection"
                  ]
                },
                "description": "Remove dynamic-arp-inspection from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get address-validation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/address-validation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "address-validation"
                  ]
                },
                "description": "Retrieve address-validation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace address-validation",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/address-validation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "address-validation"
                  ]
                },
                "description": "Create or replace address-validation on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dst-mac\": true,\n  \"src-mac\": true,\n  \"ipv4\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update address-validation",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/address-validation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "address-validation"
                  ]
                },
                "description": "Partially update address-validation on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dst-mac\": true,\n  \"src-mac\": true,\n  \"ipv4\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete address-validation",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/address-validation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "address-validation"
                  ]
                },
                "description": "Remove address-validation from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dst-mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/address-validation/dst-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "address-validation",
                    "dst-mac"
                  ]
                },
                "description": "Retrieve dst-mac from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dst-mac",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/address-validation/dst-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "address-validation",
                    "dst-mac"
                  ]
                },
                "description": "Create or replace dst-mac on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dst-mac",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/address-validation/dst-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "address-validation",
                    "dst-mac"
                  ]
                },
                "description": "Partially update dst-mac on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dst-mac",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/address-validation/dst-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "address-validation",
                    "dst-mac"
                  ]
                },
                "description": "Remove dst-mac from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get src-mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/address-validation/src-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "address-validation",
                    "src-mac"
                  ]
                },
                "description": "Retrieve src-mac from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace src-mac",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/address-validation/src-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "address-validation",
                    "src-mac"
                  ]
                },
                "description": "Create or replace src-mac on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update src-mac",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/address-validation/src-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "address-validation",
                    "src-mac"
                  ]
                },
                "description": "Partially update src-mac on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete src-mac",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/address-validation/src-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "address-validation",
                    "src-mac"
                  ]
                },
                "description": "Remove src-mac from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/address-validation/ipv4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "address-validation",
                    "ipv4"
                  ]
                },
                "description": "Retrieve ipv4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv4",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/address-validation/ipv4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "address-validation",
                    "ipv4"
                  ]
                },
                "description": "Create or replace ipv4 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv4",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/address-validation/ipv4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "address-validation",
                    "ipv4"
                  ]
                },
                "description": "Partially update ipv4 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv4",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/address-validation/ipv4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "address-validation",
                    "ipv4"
                  ]
                },
                "description": "Remove ipv4 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get logging",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/logging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "logging"
                  ]
                },
                "description": "Retrieve logging from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace logging",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/logging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "logging"
                  ]
                },
                "description": "Create or replace logging on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update logging",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/logging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "logging"
                  ]
                },
                "description": "Partially update logging on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete logging",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dynamic-arp-inspection/logging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dynamic-arp-inspection",
                    "logging"
                  ]
                },
                "description": "Remove logging from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip-source-guard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/ip-source-guard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "ip-source-guard"
                  ]
                },
                "description": "Retrieve ip-source-guard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ip-source-guard",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/ip-source-guard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "ip-source-guard"
                  ]
                },
                "description": "Create or replace ip-source-guard on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"logging\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ip-source-guard",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/ip-source-guard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "ip-source-guard"
                  ]
                },
                "description": "Partially update ip-source-guard on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"logging\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ip-source-guard",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/ip-source-guard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "ip-source-guard"
                  ]
                },
                "description": "Remove ip-source-guard from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get logging",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/ip-source-guard/logging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "ip-source-guard",
                    "logging"
                  ]
                },
                "description": "Retrieve logging from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace logging",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/ip-source-guard/logging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "ip-source-guard",
                    "logging"
                  ]
                },
                "description": "Create or replace logging on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update logging",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/ip-source-guard/logging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "ip-source-guard",
                    "logging"
                  ]
                },
                "description": "Partially update logging on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete logging",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/ip-source-guard/logging",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "ip-source-guard",
                    "logging"
                  ]
                },
                "description": "Remove logging from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get storm-control",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control"
                  ]
                },
                "description": "Retrieve storm-control from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace storm-control",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control"
                  ]
                },
                "description": "Create or replace storm-control on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"thresholds\": [\n    {\n      \"traffic-class\": \"configured-value\",\n      \"value\": 1,\n      \"unit\": \"configured-value\"\n    }\n  ],\n  \"action\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update storm-control",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control"
                  ]
                },
                "description": "Partially update storm-control on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"thresholds\": [\n    {\n      \"traffic-class\": \"configured-value\",\n      \"value\": 1,\n      \"unit\": \"configured-value\"\n    }\n  ],\n  \"action\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete storm-control",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control"
                  ]
                },
                "description": "Remove storm-control from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get thresholds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/thresholds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "thresholds"
                  ]
                },
                "description": "Retrieve thresholds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace thresholds",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/thresholds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "thresholds"
                  ]
                },
                "description": "Create or replace thresholds on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"traffic-class\": \"configured-value\",\n    \"value\": 1,\n    \"unit\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update thresholds",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/thresholds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "thresholds"
                  ]
                },
                "description": "Partially update thresholds on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"traffic-class\": \"configured-value\",\n    \"value\": 1,\n    \"unit\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete thresholds",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/thresholds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "thresholds"
                  ]
                },
                "description": "Remove thresholds from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get traffic-class",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/thresholds/traffic-class",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "thresholds",
                    "traffic-class"
                  ]
                },
                "description": "Retrieve traffic-class from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace traffic-class",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/thresholds/traffic-class",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "thresholds",
                    "traffic-class"
                  ]
                },
                "description": "Create or replace traffic-class on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update traffic-class",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/thresholds/traffic-class",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "thresholds",
                    "traffic-class"
                  ]
                },
                "description": "Partially update traffic-class on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete traffic-class",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/thresholds/traffic-class",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "thresholds",
                    "traffic-class"
                  ]
                },
                "description": "Remove traffic-class from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get value",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/thresholds/value",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "thresholds",
                    "value"
                  ]
                },
                "description": "Retrieve value from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace value",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/thresholds/value",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "thresholds",
                    "value"
                  ]
                },
                "description": "Create or replace value on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update value",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/thresholds/value",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "thresholds",
                    "value"
                  ]
                },
                "description": "Partially update value on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete value",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/thresholds/value",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "thresholds",
                    "value"
                  ]
                },
                "description": "Remove value from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get unit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/thresholds/unit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "thresholds",
                    "unit"
                  ]
                },
                "description": "Retrieve unit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace unit",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/thresholds/unit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "thresholds",
                    "unit"
                  ]
                },
                "description": "Create or replace unit on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update unit",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/thresholds/unit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "thresholds",
                    "unit"
                  ]
                },
                "description": "Partially update unit on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete unit",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/thresholds/unit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "thresholds",
                    "unit"
                  ]
                },
                "description": "Remove unit from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get action",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "action"
                  ]
                },
                "description": "Retrieve action from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace action",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "action"
                  ]
                },
                "description": "Create or replace action on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update action",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "action"
                  ]
                },
                "description": "Partially update action on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete action",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/storm-control/action",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "storm-control",
                    "action"
                  ]
                },
                "description": "Remove action from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get igmp-snooping",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/igmp-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "igmp-snooping"
                  ]
                },
                "description": "Retrieve igmp-snooping from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace igmp-snooping",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/igmp-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "igmp-snooping"
                  ]
                },
                "description": "Create or replace igmp-snooping on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"profile-name\": \"example-1\",\n  \"disabled\": false\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update igmp-snooping",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/igmp-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "igmp-snooping"
                  ]
                },
                "description": "Partially update igmp-snooping on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"profile-name\": \"example-1\",\n  \"disabled\": false\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete igmp-snooping",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/igmp-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "igmp-snooping"
                  ]
                },
                "description": "Remove igmp-snooping from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get profile-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/igmp-snooping/profile-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "igmp-snooping",
                    "profile-name"
                  ]
                },
                "description": "Retrieve profile-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace profile-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/igmp-snooping/profile-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "igmp-snooping",
                    "profile-name"
                  ]
                },
                "description": "Create or replace profile-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update profile-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/igmp-snooping/profile-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "igmp-snooping",
                    "profile-name"
                  ]
                },
                "description": "Partially update profile-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete profile-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/igmp-snooping/profile-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "igmp-snooping",
                    "profile-name"
                  ]
                },
                "description": "Remove profile-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get disabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/igmp-snooping/disabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "igmp-snooping",
                    "disabled"
                  ]
                },
                "description": "Retrieve disabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace disabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/igmp-snooping/disabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "igmp-snooping",
                    "disabled"
                  ]
                },
                "description": "Create or replace disabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update disabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/igmp-snooping/disabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "igmp-snooping",
                    "disabled"
                  ]
                },
                "description": "Partially update disabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete disabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/igmp-snooping/disabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "igmp-snooping",
                    "disabled"
                  ]
                },
                "description": "Remove disabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mld-snooping",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mld-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mld-snooping"
                  ]
                },
                "description": "Retrieve mld-snooping from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mld-snooping",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mld-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mld-snooping"
                  ]
                },
                "description": "Create or replace mld-snooping on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"profile-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mld-snooping",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mld-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mld-snooping"
                  ]
                },
                "description": "Partially update mld-snooping on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"profile-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mld-snooping",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mld-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mld-snooping"
                  ]
                },
                "description": "Remove mld-snooping from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get profile-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mld-snooping/profile-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mld-snooping",
                    "profile-name"
                  ]
                },
                "description": "Retrieve profile-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace profile-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mld-snooping/profile-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mld-snooping",
                    "profile-name"
                  ]
                },
                "description": "Create or replace profile-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update profile-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mld-snooping/profile-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mld-snooping",
                    "profile-name"
                  ]
                },
                "description": "Partially update profile-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete profile-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/mld-snooping/profile-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "mld-snooping",
                    "profile-name"
                  ]
                },
                "description": "Remove profile-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dhcp-ipv4-snooping",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dhcp-ipv4-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dhcp-ipv4-snooping"
                  ]
                },
                "description": "Retrieve dhcp-ipv4-snooping from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dhcp-ipv4-snooping",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dhcp-ipv4-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dhcp-ipv4-snooping"
                  ]
                },
                "description": "Create or replace dhcp-ipv4-snooping on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"profile-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dhcp-ipv4-snooping",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dhcp-ipv4-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dhcp-ipv4-snooping"
                  ]
                },
                "description": "Partially update dhcp-ipv4-snooping on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"profile-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dhcp-ipv4-snooping",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dhcp-ipv4-snooping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dhcp-ipv4-snooping"
                  ]
                },
                "description": "Remove dhcp-ipv4-snooping from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get profile-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dhcp-ipv4-snooping/profile-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dhcp-ipv4-snooping",
                    "profile-name"
                  ]
                },
                "description": "Retrieve profile-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace profile-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dhcp-ipv4-snooping/profile-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dhcp-ipv4-snooping",
                    "profile-name"
                  ]
                },
                "description": "Create or replace profile-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update profile-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dhcp-ipv4-snooping/profile-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dhcp-ipv4-snooping",
                    "profile-name"
                  ]
                },
                "description": "Partially update profile-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete profile-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-config/bridge-domains/bridge-domain/dhcp-ipv4-snooping/profile-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-config",
                    "bridge-domains",
                    "bridge-domain",
                    "dhcp-ipv4-snooping",
                    "profile-name"
                  ]
                },
                "description": "Remove profile-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bridge-domain-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state"
                  ]
                },
                "description": "Retrieve bridge-domain-state from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get system-capabilities",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/system-capabilities",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "system-capabilities"
                  ]
                },
                "description": "Retrieve system-capabilities from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-bd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/system-capabilities/max-bd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "system-capabilities",
                    "max-bd"
                  ]
                },
                "description": "Retrieve max-bd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-ac-per-bd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/system-capabilities/max-ac-per-bd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "system-capabilities",
                    "max-ac-per-bd"
                  ]
                },
                "description": "Retrieve max-ac-per-bd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-pw-per-bd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/system-capabilities/max-pw-per-bd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "system-capabilities",
                    "max-pw-per-bd"
                  ]
                },
                "description": "Retrieve max-pw-per-bd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-vfi-per-bd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/system-capabilities/max-vfi-per-bd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "system-capabilities",
                    "max-vfi-per-bd"
                  ]
                },
                "description": "Retrieve max-vfi-per-bd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-sh-group-per-bd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/system-capabilities/max-sh-group-per-bd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "system-capabilities",
                    "max-sh-group-per-bd"
                  ]
                },
                "description": "Retrieve max-sh-group-per-bd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-interflex-if-per-bd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/system-capabilities/max-interflex-if-per-bd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "system-capabilities",
                    "max-interflex-if-per-bd"
                  ]
                },
                "description": "Retrieve max-interflex-if-per-bd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get module-capabilities",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/module-capabilities",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "module-capabilities"
                  ]
                },
                "description": "Retrieve module-capabilities from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get modules",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/module-capabilities/modules",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "module-capabilities",
                    "modules"
                  ]
                },
                "description": "Retrieve modules from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get modules",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/module-capabilities/modules={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "module-capabilities",
                    "modules=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve modules from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/module-capabilities/modules/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "module-capabilities",
                    "modules",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-mac-per-bd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/module-capabilities/modules/max-mac-per-bd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "module-capabilities",
                    "modules",
                    "max-mac-per-bd"
                  ]
                },
                "description": "Retrieve max-mac-per-bd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-pdd-edge-bd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/module-capabilities/modules/max-pdd-edge-bd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "module-capabilities",
                    "modules",
                    "max-pdd-edge-bd"
                  ]
                },
                "description": "Retrieve max-pdd-edge-bd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-bd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/module-capabilities/modules/max-bd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "module-capabilities",
                    "modules",
                    "max-bd"
                  ]
                },
                "description": "Retrieve max-bd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-ac-per-bd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/module-capabilities/modules/max-ac-per-bd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "module-capabilities",
                    "modules",
                    "max-ac-per-bd"
                  ]
                },
                "description": "Retrieve max-ac-per-bd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-pw-per-bd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/module-capabilities/modules/max-pw-per-bd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "module-capabilities",
                    "modules",
                    "max-pw-per-bd"
                  ]
                },
                "description": "Retrieve max-pw-per-bd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-vfi-per-bd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/module-capabilities/modules/max-vfi-per-bd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "module-capabilities",
                    "modules",
                    "max-vfi-per-bd"
                  ]
                },
                "description": "Retrieve max-vfi-per-bd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-sh-group-per-bd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/module-capabilities/modules/max-sh-group-per-bd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "module-capabilities",
                    "modules",
                    "max-sh-group-per-bd"
                  ]
                },
                "description": "Retrieve max-sh-group-per-bd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bridge-domains",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains"
                  ]
                },
                "description": "Retrieve bridge-domains from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bridge-domain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain"
                  ]
                },
                "description": "Retrieve bridge-domain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bridge-domain",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Retrieve bridge-domain from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "id"
                  ]
                },
                "description": "Retrieve id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bd-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/bd-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "bd-state"
                  ]
                },
                "description": "Retrieve bd-state from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get create-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/create-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "create-time"
                  ]
                },
                "description": "Retrieve create-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get last-status-change",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/last-status-change",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "last-status-change"
                  ]
                },
                "description": "Retrieve last-status-change from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac-limit-reached",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/mac-limit-reached",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "mac-limit-reached"
                  ]
                },
                "description": "Retrieve mac-limit-reached from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get p2mp-pw-disabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/p2mp-pw-disabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "p2mp-pw-disabled"
                  ]
                },
                "description": "Retrieve p2mp-pw-disabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get members",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/members",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "members"
                  ]
                },
                "description": "Retrieve members from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ac-member",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/members/ac-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member"
                  ]
                },
                "description": "Retrieve ac-member from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/members/ac-member/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "interface"
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get static-mac-count",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/members/ac-member/static-mac-count",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "static-mac-count"
                  ]
                },
                "description": "Retrieve static-mac-count from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dai-stats",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/members/ac-member/dai-stats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "dai-stats"
                  ]
                },
                "description": "Retrieve dai-stats from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipsg-stats",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/members/ac-member/ipsg-stats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "ipsg-stats"
                  ]
                },
                "description": "Retrieve ipsg-stats from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get storm-control",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/members/ac-member/storm-control",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "ac-member",
                    "storm-control"
                  ]
                },
                "description": "Retrieve storm-control from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vfi-member",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/members/vfi-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "vfi-member"
                  ]
                },
                "description": "Retrieve vfi-member from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/members/vfi-member/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "vfi-member",
                    "interface"
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get flooding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/members/vfi-member/flooding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "vfi-member",
                    "flooding"
                  ]
                },
                "description": "Retrieve flooding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get access-pw-member",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/members/access-pw-member",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "access-pw-member"
                  ]
                },
                "description": "Retrieve access-pw-member from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-peer-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/members/access-pw-member/vc-peer-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "access-pw-member",
                    "vc-peer-address"
                  ]
                },
                "description": "Retrieve vc-peer-address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/members/access-pw-member/vc-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "access-pw-member",
                    "vc-id"
                  ]
                },
                "description": "Retrieve vc-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get flooding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/bridge-domains/bridge-domain/members/access-pw-member/flooding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "bridge-domains",
                    "bridge-domain",
                    "members",
                    "access-pw-member",
                    "flooding"
                  ]
                },
                "description": "Retrieve flooding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac-table",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/mac-table",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "mac-table"
                  ]
                },
                "description": "Retrieve mac-table from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bd-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/mac-table/bd-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "mac-table",
                    "bd-id"
                  ]
                },
                "description": "Retrieve bd-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/mac-table/mac-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "mac-table",
                    "mac-address"
                  ]
                },
                "description": "Retrieve mac-address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/mac-table/mac-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "mac-table",
                    "mac-type"
                  ]
                },
                "description": "Retrieve mac-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/mac-table/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "mac-table",
                    "interface"
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get secure-mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/mac-table/secure-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "mac-table",
                    "secure-mac"
                  ]
                },
                "description": "Retrieve secure-mac from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ntfy-mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/mac-table/ntfy-mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "mac-table",
                    "ntfy-mac"
                  ]
                },
                "description": "Retrieve ntfy-mac from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get age",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/mac-table/age",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "mac-table",
                    "age"
                  ]
                },
                "description": "Retrieve age from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get location",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-bridge-domain:bridge-domain-state/mac-table/location",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-bridge-domain:bridge-domain-state",
                    "mac-table",
                    "location"
                  ]
                },
                "description": "Retrieve location from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "cisco-ethernet",
          "description": "Cisco IOS-XE - cisco-ethernet\n\nData from `cisco-ethernet` module.\n\n**Root containers:** 2 (ethernet, ethernet)\n**Paths:** 8 | **Operations:** 20\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 8 | Operations: 20",
          "item": [
            {
              "name": "GET Get ethernet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet"
                  ]
                },
                "description": "Retrieve ethernet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ethernet",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet"
                  ]
                },
                "description": "Create or replace ethernet on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"transmission-params\": {\n    \"auto-negotiate\": true\n  },\n  \"mtu-size\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ethernet",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet"
                  ]
                },
                "description": "Partially update ethernet on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"transmission-params\": {\n    \"auto-negotiate\": true\n  },\n  \"mtu-size\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ethernet",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet"
                  ]
                },
                "description": "Remove ethernet from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get transmission-params",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet/transmission-params",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet",
                    "transmission-params"
                  ]
                },
                "description": "Retrieve transmission-params from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace transmission-params",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet/transmission-params",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet",
                    "transmission-params"
                  ]
                },
                "description": "Create or replace transmission-params on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"auto-negotiate\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update transmission-params",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet/transmission-params",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet",
                    "transmission-params"
                  ]
                },
                "description": "Partially update transmission-params on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"auto-negotiate\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete transmission-params",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet/transmission-params",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet",
                    "transmission-params"
                  ]
                },
                "description": "Remove transmission-params from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get auto-negotiate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet/transmission-params/auto-negotiate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet",
                    "transmission-params",
                    "auto-negotiate"
                  ]
                },
                "description": "Retrieve auto-negotiate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace auto-negotiate",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet/transmission-params/auto-negotiate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet",
                    "transmission-params",
                    "auto-negotiate"
                  ]
                },
                "description": "Create or replace auto-negotiate on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update auto-negotiate",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet/transmission-params/auto-negotiate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet",
                    "transmission-params",
                    "auto-negotiate"
                  ]
                },
                "description": "Partially update auto-negotiate on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete auto-negotiate",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet/transmission-params/auto-negotiate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet",
                    "transmission-params",
                    "auto-negotiate"
                  ]
                },
                "description": "Remove auto-negotiate from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mtu-size",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet/mtu-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet",
                    "mtu-size"
                  ]
                },
                "description": "Retrieve mtu-size from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mtu-size",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet/mtu-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet",
                    "mtu-size"
                  ]
                },
                "description": "Create or replace mtu-size on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mtu-size",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet/mtu-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet",
                    "mtu-size"
                  ]
                },
                "description": "Partially update mtu-size on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mtu-size",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet/mtu-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet",
                    "mtu-size"
                  ]
                },
                "description": "Remove mtu-size from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get duplex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet/duplex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet",
                    "duplex"
                  ]
                },
                "description": "Retrieve duplex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get supported-mtu-range",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet/supported-mtu-range",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet",
                    "supported-mtu-range"
                  ]
                },
                "description": "Retrieve supported-mtu-range from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get min-mtu-size",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet/supported-mtu-range/min-mtu-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet",
                    "supported-mtu-range",
                    "min-mtu-size"
                  ]
                },
                "description": "Retrieve min-mtu-size from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-mtu-size",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-ethernet:ethernet/supported-mtu-range/max-mtu-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-ethernet:ethernet",
                    "supported-mtu-range",
                    "max-mtu-size"
                  ]
                },
                "description": "Retrieve max-mtu-size from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "cisco-evpn-service",
          "description": "Cisco IOS-XE - cisco-evpn-service\n\nData from `cisco-evpn-service` module.\n\n**Root containers:** 1 (evpn-service)\n**Paths:** 102 | **Operations:** 408\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 102 | Operations: 408",
          "item": [
            {
              "name": "GET Get evpn-service",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service"
                  ]
                },
                "description": "Retrieve evpn-service from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace evpn-service",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service"
                  ]
                },
                "description": "Create or replace evpn-service on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"evpn-config\": {\n    \"global-configs\": {\n      \"peer-config\": {\n        \"bgp\": {}\n      },\n      \"loopback-id\": 1,\n      \"loopback-ip\": \"configured-value\",\n      \"dot1x-interfaces\": {\n        \"interface\": {}\n      },\n      \"acl-configurations\": {\n        \"acls\": {}\n      },\n      \"dns-configuration\": {\n        \"name-server\": {},\n        \"domain-name\": {}\n      },\n      \"dhcp-relay\": {\n        \"source-interface\": {},\n        \"vrf-name\": {},\n        \"ipv4-dhcp-helper\": {},\n        \"ipv6-dhcp-relay\": {}\n      }\n    },\n    \"l3-instances\": {\n      \"l3-instance\": [\n        {}\n      ]\n    },\n    \"l2-instances\": {\n      \"l2-instance\": [\n        {}\n      ]\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update evpn-service",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service"
                  ]
                },
                "description": "Partially update evpn-service on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"evpn-config\": {\n    \"global-configs\": {\n      \"peer-config\": {\n        \"bgp\": {}\n      },\n      \"loopback-id\": 1,\n      \"loopback-ip\": \"configured-value\",\n      \"dot1x-interfaces\": {\n        \"interface\": {}\n      },\n      \"acl-configurations\": {\n        \"acls\": {}\n      },\n      \"dns-configuration\": {\n        \"name-server\": {},\n        \"domain-name\": {}\n      },\n      \"dhcp-relay\": {\n        \"source-interface\": {},\n        \"vrf-name\": {},\n        \"ipv4-dhcp-helper\": {},\n        \"ipv6-dhcp-relay\": {}\n      }\n    },\n    \"l3-instances\": {\n      \"l3-instance\": [\n        {}\n      ]\n    },\n    \"l2-instances\": {\n      \"l2-instance\": [\n        {}\n      ]\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete evpn-service",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service"
                  ]
                },
                "description": "Remove evpn-service from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get evpn-config",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config"
                  ]
                },
                "description": "Retrieve evpn-config from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace evpn-config",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config"
                  ]
                },
                "description": "Create or replace evpn-config on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"global-configs\": {\n    \"peer-config\": {\n      \"bgp\": [\n        {}\n      ]\n    },\n    \"loopback-id\": 1,\n    \"loopback-ip\": \"configured-value\",\n    \"dot1x-interfaces\": {\n      \"interface\": [\n        {}\n      ]\n    },\n    \"acl-configurations\": {\n      \"acls\": [\n        {}\n      ]\n    },\n    \"dns-configuration\": {\n      \"name-server\": {\n        \"server\": {}\n      },\n      \"domain-name\": \"example-1\"\n    },\n    \"dhcp-relay\": {\n      \"source-interface\": 1,\n      \"vrf-name\": \"default\",\n      \"ipv4-dhcp-helper\": \"configured-value\",\n      \"ipv6-dhcp-relay\": \"2001:db8::1\"\n    }\n  },\n  \"l3-instances\": {\n    \"l3-instance\": [\n      {\n        \"id\": {},\n        \"vrf-name\": {},\n        \"evpn-extension\": {},\n        \"enable-trm\": {},\n        \"core-vlan-id\": {},\n        \"mcast-group\": {},\n        \"rp-address\": {},\n        \"rp-is-local\": {},\n        \"route-distinquisher\": {},\n        \"rt-imports\": {}\n      }\n    ]\n  },\n  \"l2-instances\": {\n    \"l2-instance\": [\n      {\n        \"id\": {},\n        \"evi-id\": {},\n        \"vrf-name\": {},\n        \"vlan-name\": {},\n        \"vni-id\": {},\n        \"evpn-extension\": {},\n        \"irb-gw-mode\": {},\n        \"suppression\": {},\n        \"mac-address\": {},\n        \"ipv4-address\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update evpn-config",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config"
                  ]
                },
                "description": "Partially update evpn-config on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"global-configs\": {\n    \"peer-config\": {\n      \"bgp\": [\n        {}\n      ]\n    },\n    \"loopback-id\": 1,\n    \"loopback-ip\": \"configured-value\",\n    \"dot1x-interfaces\": {\n      \"interface\": [\n        {}\n      ]\n    },\n    \"acl-configurations\": {\n      \"acls\": [\n        {}\n      ]\n    },\n    \"dns-configuration\": {\n      \"name-server\": {\n        \"server\": {}\n      },\n      \"domain-name\": \"example-1\"\n    },\n    \"dhcp-relay\": {\n      \"source-interface\": 1,\n      \"vrf-name\": \"default\",\n      \"ipv4-dhcp-helper\": \"configured-value\",\n      \"ipv6-dhcp-relay\": \"2001:db8::1\"\n    }\n  },\n  \"l3-instances\": {\n    \"l3-instance\": [\n      {\n        \"id\": {},\n        \"vrf-name\": {},\n        \"evpn-extension\": {},\n        \"enable-trm\": {},\n        \"core-vlan-id\": {},\n        \"mcast-group\": {},\n        \"rp-address\": {},\n        \"rp-is-local\": {},\n        \"route-distinquisher\": {},\n        \"rt-imports\": {}\n      }\n    ]\n  },\n  \"l2-instances\": {\n    \"l2-instance\": [\n      {\n        \"id\": {},\n        \"evi-id\": {},\n        \"vrf-name\": {},\n        \"vlan-name\": {},\n        \"vni-id\": {},\n        \"evpn-extension\": {},\n        \"irb-gw-mode\": {},\n        \"suppression\": {},\n        \"mac-address\": {},\n        \"ipv4-address\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete evpn-config",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config"
                  ]
                },
                "description": "Remove evpn-config from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get global-configs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs"
                  ]
                },
                "description": "Retrieve global-configs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace global-configs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs"
                  ]
                },
                "description": "Create or replace global-configs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"peer-config\": {\n    \"bgp\": [\n      {\n        \"bgp-local-as\": {},\n        \"router-id\": {},\n        \"enable-evpn\": {},\n        \"enable-trm\": {},\n        \"control-node\": {},\n        \"peers\": {},\n        \"l3-vpn-neighbors\": {}\n      }\n    ]\n  },\n  \"loopback-id\": 1,\n  \"loopback-ip\": \"configured-value\",\n  \"dot1x-interfaces\": {\n    \"interface\": [\n      {\n        \"id\": {},\n        \"auth-mode\": {},\n        \"wake-on-lan\": {},\n        \"multi-host\": {},\n        \"timeout\": {}\n      }\n    ]\n  },\n  \"acl-configurations\": {\n    \"acls\": [\n      {\n        \"acl-name\": {},\n        \"contract\": {}\n      }\n    ]\n  },\n  \"dns-configuration\": {\n    \"name-server\": {\n      \"server\": [\n        {}\n      ]\n    },\n    \"domain-name\": \"example-1\"\n  },\n  \"dhcp-relay\": {\n    \"source-interface\": 1,\n    \"vrf-name\": \"default\",\n    \"ipv4-dhcp-helper\": \"configured-value\",\n    \"ipv6-dhcp-relay\": \"2001:db8::1\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update global-configs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs"
                  ]
                },
                "description": "Partially update global-configs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"peer-config\": {\n    \"bgp\": [\n      {\n        \"bgp-local-as\": {},\n        \"router-id\": {},\n        \"enable-evpn\": {},\n        \"enable-trm\": {},\n        \"control-node\": {},\n        \"peers\": {},\n        \"l3-vpn-neighbors\": {}\n      }\n    ]\n  },\n  \"loopback-id\": 1,\n  \"loopback-ip\": \"configured-value\",\n  \"dot1x-interfaces\": {\n    \"interface\": [\n      {\n        \"id\": {},\n        \"auth-mode\": {},\n        \"wake-on-lan\": {},\n        \"multi-host\": {},\n        \"timeout\": {}\n      }\n    ]\n  },\n  \"acl-configurations\": {\n    \"acls\": [\n      {\n        \"acl-name\": {},\n        \"contract\": {}\n      }\n    ]\n  },\n  \"dns-configuration\": {\n    \"name-server\": {\n      \"server\": [\n        {}\n      ]\n    },\n    \"domain-name\": \"example-1\"\n  },\n  \"dhcp-relay\": {\n    \"source-interface\": 1,\n    \"vrf-name\": \"default\",\n    \"ipv4-dhcp-helper\": \"configured-value\",\n    \"ipv6-dhcp-relay\": \"2001:db8::1\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete global-configs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs"
                  ]
                },
                "description": "Remove global-configs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get peer-config",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config"
                  ]
                },
                "description": "Retrieve peer-config from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace peer-config",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config"
                  ]
                },
                "description": "Create or replace peer-config on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"bgp\": [\n    {\n      \"bgp-local-as\": 1,\n      \"router-id\": \"10.1.1.1\",\n      \"enable-evpn\": true,\n      \"enable-trm\": true,\n      \"control-node\": true,\n      \"peers\": {\n        \"peer\": {}\n      },\n      \"l3-vpn-neighbors\": {\n        \"vpnv4-neighbors\": {},\n        \"vpnv6-neighbors\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update peer-config",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config"
                  ]
                },
                "description": "Partially update peer-config on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"bgp\": [\n    {\n      \"bgp-local-as\": 1,\n      \"router-id\": \"10.1.1.1\",\n      \"enable-evpn\": true,\n      \"enable-trm\": true,\n      \"control-node\": true,\n      \"peers\": {\n        \"peer\": {}\n      },\n      \"l3-vpn-neighbors\": {\n        \"vpnv4-neighbors\": {},\n        \"vpnv6-neighbors\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete peer-config",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config"
                  ]
                },
                "description": "Remove peer-config from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp"
                  ]
                },
                "description": "Retrieve bgp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bgp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp"
                  ]
                },
                "description": "Create or replace bgp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"bgp-local-as\": 1,\n    \"router-id\": \"10.1.1.1\",\n    \"enable-evpn\": true,\n    \"enable-trm\": true,\n    \"control-node\": true,\n    \"peers\": {\n      \"peer\": [\n        {}\n      ]\n    },\n    \"l3-vpn-neighbors\": {\n      \"vpnv4-neighbors\": {\n        \"l3-vpnv4-neighbor\": {}\n      },\n      \"vpnv6-neighbors\": {\n        \"l3-vpnv6-neighbor\": {}\n      }\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bgp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp"
                  ]
                },
                "description": "Partially update bgp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"bgp-local-as\": 1,\n    \"router-id\": \"10.1.1.1\",\n    \"enable-evpn\": true,\n    \"enable-trm\": true,\n    \"control-node\": true,\n    \"peers\": {\n      \"peer\": [\n        {}\n      ]\n    },\n    \"l3-vpn-neighbors\": {\n      \"vpnv4-neighbors\": {\n        \"l3-vpnv4-neighbor\": {}\n      },\n      \"vpnv6-neighbors\": {\n        \"l3-vpnv6-neighbor\": {}\n      }\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bgp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp"
                  ]
                },
                "description": "Remove bgp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bgp-local-as",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/bgp-local-as",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "bgp-local-as"
                  ]
                },
                "description": "Retrieve bgp-local-as from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bgp-local-as",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/bgp-local-as",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "bgp-local-as"
                  ]
                },
                "description": "Create or replace bgp-local-as on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bgp-local-as",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/bgp-local-as",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "bgp-local-as"
                  ]
                },
                "description": "Partially update bgp-local-as on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bgp-local-as",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/bgp-local-as",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "bgp-local-as"
                  ]
                },
                "description": "Remove bgp-local-as from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get router-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/router-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "router-id"
                  ]
                },
                "description": "Retrieve router-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace router-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/router-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "router-id"
                  ]
                },
                "description": "Create or replace router-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update router-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/router-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "router-id"
                  ]
                },
                "description": "Partially update router-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete router-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/router-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "router-id"
                  ]
                },
                "description": "Remove router-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enable-evpn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/enable-evpn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "enable-evpn"
                  ]
                },
                "description": "Retrieve enable-evpn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enable-evpn",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/enable-evpn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "enable-evpn"
                  ]
                },
                "description": "Create or replace enable-evpn on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enable-evpn",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/enable-evpn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "enable-evpn"
                  ]
                },
                "description": "Partially update enable-evpn on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enable-evpn",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/enable-evpn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "enable-evpn"
                  ]
                },
                "description": "Remove enable-evpn from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enable-trm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/enable-trm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "enable-trm"
                  ]
                },
                "description": "Retrieve enable-trm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enable-trm",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/enable-trm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "enable-trm"
                  ]
                },
                "description": "Create or replace enable-trm on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enable-trm",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/enable-trm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "enable-trm"
                  ]
                },
                "description": "Partially update enable-trm on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enable-trm",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/enable-trm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "enable-trm"
                  ]
                },
                "description": "Remove enable-trm from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get control-node",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/control-node",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "control-node"
                  ]
                },
                "description": "Retrieve control-node from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace control-node",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/control-node",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "control-node"
                  ]
                },
                "description": "Create or replace control-node on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update control-node",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/control-node",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "control-node"
                  ]
                },
                "description": "Partially update control-node on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete control-node",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/control-node",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "control-node"
                  ]
                },
                "description": "Remove control-node from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get peers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/peers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "peers"
                  ]
                },
                "description": "Retrieve peers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace peers",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/peers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "peers"
                  ]
                },
                "description": "Create or replace peers on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"peer\": [\n    {\n      \"loopback-id\": \"1\",\n      \"loopback-source\": 1,\n      \"control-node\": true,\n      \"border-node\": true,\n      \"edge-node\": true\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update peers",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/peers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "peers"
                  ]
                },
                "description": "Partially update peers on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"peer\": [\n    {\n      \"loopback-id\": \"1\",\n      \"loopback-source\": 1,\n      \"control-node\": true,\n      \"border-node\": true,\n      \"edge-node\": true\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete peers",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/peers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "peers"
                  ]
                },
                "description": "Remove peers from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get l3-vpn-neighbors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/l3-vpn-neighbors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "l3-vpn-neighbors"
                  ]
                },
                "description": "Retrieve l3-vpn-neighbors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace l3-vpn-neighbors",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/l3-vpn-neighbors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "l3-vpn-neighbors"
                  ]
                },
                "description": "Create or replace l3-vpn-neighbors on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vpnv4-neighbors\": {\n    \"l3-vpnv4-neighbor\": [\n      {\n        \"ipv4-neighbor\": {},\n        \"remote-as\": {},\n        \"loopback-source\": {}\n      }\n    ]\n  },\n  \"vpnv6-neighbors\": {\n    \"l3-vpnv6-neighbor\": [\n      {\n        \"ipv6-neighbor\": {},\n        \"remote-as\": {},\n        \"loopback-source\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update l3-vpn-neighbors",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/l3-vpn-neighbors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "l3-vpn-neighbors"
                  ]
                },
                "description": "Partially update l3-vpn-neighbors on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vpnv4-neighbors\": {\n    \"l3-vpnv4-neighbor\": [\n      {\n        \"ipv4-neighbor\": {},\n        \"remote-as\": {},\n        \"loopback-source\": {}\n      }\n    ]\n  },\n  \"vpnv6-neighbors\": {\n    \"l3-vpnv6-neighbor\": [\n      {\n        \"ipv6-neighbor\": {},\n        \"remote-as\": {},\n        \"loopback-source\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete l3-vpn-neighbors",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/peer-config/bgp/l3-vpn-neighbors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "peer-config",
                    "bgp",
                    "l3-vpn-neighbors"
                  ]
                },
                "description": "Remove l3-vpn-neighbors from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get loopback-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/loopback-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "loopback-id"
                  ]
                },
                "description": "Retrieve loopback-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace loopback-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/loopback-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "loopback-id"
                  ]
                },
                "description": "Create or replace loopback-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update loopback-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/loopback-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "loopback-id"
                  ]
                },
                "description": "Partially update loopback-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete loopback-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/loopback-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "loopback-id"
                  ]
                },
                "description": "Remove loopback-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get loopback-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/loopback-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "loopback-ip"
                  ]
                },
                "description": "Retrieve loopback-ip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace loopback-ip",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/loopback-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "loopback-ip"
                  ]
                },
                "description": "Create or replace loopback-ip on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update loopback-ip",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/loopback-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "loopback-ip"
                  ]
                },
                "description": "Partially update loopback-ip on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete loopback-ip",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/loopback-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "loopback-ip"
                  ]
                },
                "description": "Remove loopback-ip from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dot1x-interfaces",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces"
                  ]
                },
                "description": "Retrieve dot1x-interfaces from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dot1x-interfaces",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces"
                  ]
                },
                "description": "Create or replace dot1x-interfaces on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interface\": [\n    {\n      \"id\": \"1\",\n      \"auth-mode\": \"configured-value\",\n      \"wake-on-lan\": true,\n      \"multi-host\": true,\n      \"timeout\": 1\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dot1x-interfaces",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces"
                  ]
                },
                "description": "Partially update dot1x-interfaces on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interface\": [\n    {\n      \"id\": \"1\",\n      \"auth-mode\": \"configured-value\",\n      \"wake-on-lan\": true,\n      \"multi-host\": true,\n      \"timeout\": 1\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dot1x-interfaces",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces"
                  ]
                },
                "description": "Remove dot1x-interfaces from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface"
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface"
                  ]
                },
                "description": "Create or replace interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\",\n    \"auth-mode\": \"configured-value\",\n    \"wake-on-lan\": true,\n    \"multi-host\": true,\n    \"timeout\": 1\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface"
                  ]
                },
                "description": "Partially update interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\",\n    \"auth-mode\": \"configured-value\",\n    \"wake-on-lan\": true,\n    \"multi-host\": true,\n    \"timeout\": 1\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface"
                  ]
                },
                "description": "Remove interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Create or replace interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\",\n    \"auth-mode\": \"configured-value\",\n    \"wake-on-lan\": true,\n    \"multi-host\": true,\n    \"timeout\": 1\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Partially update interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\",\n    \"auth-mode\": \"configured-value\",\n    \"wake-on-lan\": true,\n    \"multi-host\": true,\n    \"timeout\": 1\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Remove interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "id"
                  ]
                },
                "description": "Retrieve id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "id"
                  ]
                },
                "description": "Create or replace id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "id"
                  ]
                },
                "description": "Partially update id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "id"
                  ]
                },
                "description": "Remove id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get auth-mode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/auth-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "auth-mode"
                  ]
                },
                "description": "Retrieve auth-mode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace auth-mode",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/auth-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "auth-mode"
                  ]
                },
                "description": "Create or replace auth-mode on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update auth-mode",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/auth-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "auth-mode"
                  ]
                },
                "description": "Partially update auth-mode on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete auth-mode",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/auth-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "auth-mode"
                  ]
                },
                "description": "Remove auth-mode from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get wake-on-lan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/wake-on-lan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "wake-on-lan"
                  ]
                },
                "description": "Retrieve wake-on-lan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace wake-on-lan",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/wake-on-lan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "wake-on-lan"
                  ]
                },
                "description": "Create or replace wake-on-lan on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update wake-on-lan",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/wake-on-lan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "wake-on-lan"
                  ]
                },
                "description": "Partially update wake-on-lan on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete wake-on-lan",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/wake-on-lan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "wake-on-lan"
                  ]
                },
                "description": "Remove wake-on-lan from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get multi-host",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/multi-host",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "multi-host"
                  ]
                },
                "description": "Retrieve multi-host from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace multi-host",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/multi-host",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "multi-host"
                  ]
                },
                "description": "Create or replace multi-host on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update multi-host",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/multi-host",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "multi-host"
                  ]
                },
                "description": "Partially update multi-host on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete multi-host",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/multi-host",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "multi-host"
                  ]
                },
                "description": "Remove multi-host from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get timeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/timeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "timeout"
                  ]
                },
                "description": "Retrieve timeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace timeout",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/timeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "timeout"
                  ]
                },
                "description": "Create or replace timeout on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update timeout",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/timeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "timeout"
                  ]
                },
                "description": "Partially update timeout on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete timeout",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dot1x-interfaces/interface/timeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dot1x-interfaces",
                    "interface",
                    "timeout"
                  ]
                },
                "description": "Remove timeout from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get acl-configurations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations"
                  ]
                },
                "description": "Retrieve acl-configurations from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace acl-configurations",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations"
                  ]
                },
                "description": "Create or replace acl-configurations on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"acls\": [\n    {\n      \"acl-name\": \"ACL-PERMIT-ALL\",\n      \"contract\": [\n        {}\n      ]\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update acl-configurations",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations"
                  ]
                },
                "description": "Partially update acl-configurations on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"acls\": [\n    {\n      \"acl-name\": \"ACL-PERMIT-ALL\",\n      \"contract\": [\n        {}\n      ]\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete acl-configurations",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations"
                  ]
                },
                "description": "Remove acl-configurations from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get acls",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations/acls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations",
                    "acls"
                  ]
                },
                "description": "Retrieve acls from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace acls",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations/acls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations",
                    "acls"
                  ]
                },
                "description": "Create or replace acls on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"acl-name\": \"ACL-PERMIT-ALL\",\n    \"contract\": [\n      {\n        \"sequence\": {},\n        \"id\": {},\n        \"action\": {},\n        \"port\": {},\n        \"protocol\": {}\n      }\n    ]\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update acls",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations/acls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations",
                    "acls"
                  ]
                },
                "description": "Partially update acls on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"acl-name\": \"ACL-PERMIT-ALL\",\n    \"contract\": [\n      {\n        \"sequence\": {},\n        \"id\": {},\n        \"action\": {},\n        \"port\": {},\n        \"protocol\": {}\n      }\n    ]\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete acls",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations/acls",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations",
                    "acls"
                  ]
                },
                "description": "Remove acls from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get acl-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations/acls/acl-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations",
                    "acls",
                    "acl-name"
                  ]
                },
                "description": "Retrieve acl-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace acl-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations/acls/acl-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations",
                    "acls",
                    "acl-name"
                  ]
                },
                "description": "Create or replace acl-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"ACL-PERMIT-ALL\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update acl-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations/acls/acl-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations",
                    "acls",
                    "acl-name"
                  ]
                },
                "description": "Partially update acl-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"ACL-PERMIT-ALL\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete acl-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations/acls/acl-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations",
                    "acls",
                    "acl-name"
                  ]
                },
                "description": "Remove acl-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get contract",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations/acls/contract",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations",
                    "acls",
                    "contract"
                  ]
                },
                "description": "Retrieve contract from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace contract",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations/acls/contract",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations",
                    "acls",
                    "contract"
                  ]
                },
                "description": "Create or replace contract on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"sequence\": 10,\n    \"id\": \"1\",\n    \"action\": \"configured-value\",\n    \"port\": \"443\",\n    \"protocol\": \"tcp\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update contract",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations/acls/contract",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations",
                    "acls",
                    "contract"
                  ]
                },
                "description": "Partially update contract on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"sequence\": 10,\n    \"id\": \"1\",\n    \"action\": \"configured-value\",\n    \"port\": \"443\",\n    \"protocol\": \"tcp\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete contract",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations/acls/contract",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations",
                    "acls",
                    "contract"
                  ]
                },
                "description": "Remove contract from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get contract",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations/acls/contract={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations",
                    "acls",
                    "contract=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Retrieve contract from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace contract",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations/acls/contract={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations",
                    "acls",
                    "contract=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Create or replace contract on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"sequence\": 10,\n    \"id\": \"1\",\n    \"action\": \"configured-value\",\n    \"port\": \"443\",\n    \"protocol\": \"tcp\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update contract",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations/acls/contract={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations",
                    "acls",
                    "contract=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Partially update contract on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"sequence\": 10,\n    \"id\": \"1\",\n    \"action\": \"configured-value\",\n    \"port\": \"443\",\n    \"protocol\": \"tcp\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete contract",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/acl-configurations/acls/contract={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "acl-configurations",
                    "acls",
                    "contract=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Remove contract from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dns-configuration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dns-configuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dns-configuration"
                  ]
                },
                "description": "Retrieve dns-configuration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dns-configuration",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dns-configuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dns-configuration"
                  ]
                },
                "description": "Create or replace dns-configuration on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"name-server\": {\n    \"server\": [\n      {\n        \"server-id\": {}\n      }\n    ]\n  },\n  \"domain-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dns-configuration",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dns-configuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dns-configuration"
                  ]
                },
                "description": "Partially update dns-configuration on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"name-server\": {\n    \"server\": [\n      {\n        \"server-id\": {}\n      }\n    ]\n  },\n  \"domain-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dns-configuration",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dns-configuration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dns-configuration"
                  ]
                },
                "description": "Remove dns-configuration from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name-server",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dns-configuration/name-server",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dns-configuration",
                    "name-server"
                  ]
                },
                "description": "Retrieve name-server from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name-server",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dns-configuration/name-server",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dns-configuration",
                    "name-server"
                  ]
                },
                "description": "Create or replace name-server on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"server\": [\n    {\n      \"server-id\": \"1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name-server",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dns-configuration/name-server",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dns-configuration",
                    "name-server"
                  ]
                },
                "description": "Partially update name-server on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"server\": [\n    {\n      \"server-id\": \"1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name-server",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dns-configuration/name-server",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dns-configuration",
                    "name-server"
                  ]
                },
                "description": "Remove name-server from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get server",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dns-configuration/name-server/server",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dns-configuration",
                    "name-server",
                    "server"
                  ]
                },
                "description": "Retrieve server from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace server",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dns-configuration/name-server/server",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dns-configuration",
                    "name-server",
                    "server"
                  ]
                },
                "description": "Create or replace server on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"server-id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update server",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dns-configuration/name-server/server",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dns-configuration",
                    "name-server",
                    "server"
                  ]
                },
                "description": "Partially update server on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"server-id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete server",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dns-configuration/name-server/server",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dns-configuration",
                    "name-server",
                    "server"
                  ]
                },
                "description": "Remove server from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get domain-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dns-configuration/domain-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dns-configuration",
                    "domain-name"
                  ]
                },
                "description": "Retrieve domain-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace domain-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dns-configuration/domain-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dns-configuration",
                    "domain-name"
                  ]
                },
                "description": "Create or replace domain-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update domain-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dns-configuration/domain-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dns-configuration",
                    "domain-name"
                  ]
                },
                "description": "Partially update domain-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete domain-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dns-configuration/domain-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dns-configuration",
                    "domain-name"
                  ]
                },
                "description": "Remove domain-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dhcp-relay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay"
                  ]
                },
                "description": "Retrieve dhcp-relay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dhcp-relay",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay"
                  ]
                },
                "description": "Create or replace dhcp-relay on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"source-interface\": 1,\n  \"vrf-name\": \"default\",\n  \"ipv4-dhcp-helper\": \"configured-value\",\n  \"ipv6-dhcp-relay\": \"2001:db8::1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dhcp-relay",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay"
                  ]
                },
                "description": "Partially update dhcp-relay on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"source-interface\": 1,\n  \"vrf-name\": \"default\",\n  \"ipv4-dhcp-helper\": \"configured-value\",\n  \"ipv6-dhcp-relay\": \"2001:db8::1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dhcp-relay",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay"
                  ]
                },
                "description": "Remove dhcp-relay from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get source-interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay/source-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay",
                    "source-interface"
                  ]
                },
                "description": "Retrieve source-interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace source-interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay/source-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay",
                    "source-interface"
                  ]
                },
                "description": "Create or replace source-interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update source-interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay/source-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay",
                    "source-interface"
                  ]
                },
                "description": "Partially update source-interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete source-interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay/source-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay",
                    "source-interface"
                  ]
                },
                "description": "Remove source-interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay",
                    "vrf-name"
                  ]
                },
                "description": "Retrieve vrf-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vrf-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay",
                    "vrf-name"
                  ]
                },
                "description": "Create or replace vrf-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vrf-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay",
                    "vrf-name"
                  ]
                },
                "description": "Partially update vrf-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vrf-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay",
                    "vrf-name"
                  ]
                },
                "description": "Remove vrf-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4-dhcp-helper",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay/ipv4-dhcp-helper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay",
                    "ipv4-dhcp-helper"
                  ]
                },
                "description": "Retrieve ipv4-dhcp-helper from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv4-dhcp-helper",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay/ipv4-dhcp-helper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay",
                    "ipv4-dhcp-helper"
                  ]
                },
                "description": "Create or replace ipv4-dhcp-helper on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv4-dhcp-helper",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay/ipv4-dhcp-helper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay",
                    "ipv4-dhcp-helper"
                  ]
                },
                "description": "Partially update ipv4-dhcp-helper on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv4-dhcp-helper",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay/ipv4-dhcp-helper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay",
                    "ipv4-dhcp-helper"
                  ]
                },
                "description": "Remove ipv4-dhcp-helper from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6-dhcp-relay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay/ipv6-dhcp-relay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay",
                    "ipv6-dhcp-relay"
                  ]
                },
                "description": "Retrieve ipv6-dhcp-relay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv6-dhcp-relay",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay/ipv6-dhcp-relay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay",
                    "ipv6-dhcp-relay"
                  ]
                },
                "description": "Create or replace ipv6-dhcp-relay on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"2001:db8::1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv6-dhcp-relay",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay/ipv6-dhcp-relay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay",
                    "ipv6-dhcp-relay"
                  ]
                },
                "description": "Partially update ipv6-dhcp-relay on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"2001:db8::1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv6-dhcp-relay",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/global-configs/dhcp-relay/ipv6-dhcp-relay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "global-configs",
                    "dhcp-relay",
                    "ipv6-dhcp-relay"
                  ]
                },
                "description": "Remove ipv6-dhcp-relay from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get l3-instances",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances"
                  ]
                },
                "description": "Retrieve l3-instances from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace l3-instances",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances"
                  ]
                },
                "description": "Create or replace l3-instances on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"l3-instance\": [\n    {\n      \"id\": 1,\n      \"vrf-name\": \"default\",\n      \"evpn-extension\": true,\n      \"enable-trm\": \"configured-value\",\n      \"core-vlan-id\": 1,\n      \"mcast-group\": \"configured-value\",\n      \"rp-address\": \"10.1.1.1\",\n      \"rp-is-local\": true,\n      \"route-distinquisher\": \"configured-value\",\n      \"rt-imports\": {\n        \"rt-import\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update l3-instances",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances"
                  ]
                },
                "description": "Partially update l3-instances on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"l3-instance\": [\n    {\n      \"id\": 1,\n      \"vrf-name\": \"default\",\n      \"evpn-extension\": true,\n      \"enable-trm\": \"configured-value\",\n      \"core-vlan-id\": 1,\n      \"mcast-group\": \"configured-value\",\n      \"rp-address\": \"10.1.1.1\",\n      \"rp-is-local\": true,\n      \"route-distinquisher\": \"configured-value\",\n      \"rt-imports\": {\n        \"rt-import\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete l3-instances",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances"
                  ]
                },
                "description": "Remove l3-instances from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get l3-instance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance"
                  ]
                },
                "description": "Retrieve l3-instance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace l3-instance",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance"
                  ]
                },
                "description": "Create or replace l3-instance on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": 1,\n    \"vrf-name\": \"default\",\n    \"evpn-extension\": true,\n    \"enable-trm\": \"configured-value\",\n    \"core-vlan-id\": 1,\n    \"mcast-group\": \"configured-value\",\n    \"rp-address\": \"10.1.1.1\",\n    \"rp-is-local\": true,\n    \"route-distinquisher\": \"configured-value\",\n    \"rt-imports\": {\n      \"rt-import\": [\n        {}\n      ]\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update l3-instance",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance"
                  ]
                },
                "description": "Partially update l3-instance on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": 1,\n    \"vrf-name\": \"default\",\n    \"evpn-extension\": true,\n    \"enable-trm\": \"configured-value\",\n    \"core-vlan-id\": 1,\n    \"mcast-group\": \"configured-value\",\n    \"rp-address\": \"10.1.1.1\",\n    \"rp-is-local\": true,\n    \"route-distinquisher\": \"configured-value\",\n    \"rt-imports\": {\n      \"rt-import\": [\n        {}\n      ]\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete l3-instance",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance"
                  ]
                },
                "description": "Remove l3-instance from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get l3-instance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Retrieve l3-instance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace l3-instance",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Create or replace l3-instance on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": 1,\n    \"vrf-name\": \"default\",\n    \"evpn-extension\": true,\n    \"enable-trm\": \"configured-value\",\n    \"core-vlan-id\": 1,\n    \"mcast-group\": \"configured-value\",\n    \"rp-address\": \"10.1.1.1\",\n    \"rp-is-local\": true,\n    \"route-distinquisher\": \"configured-value\",\n    \"rt-imports\": {\n      \"rt-import\": [\n        {}\n      ]\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update l3-instance",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Partially update l3-instance on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": 1,\n    \"vrf-name\": \"default\",\n    \"evpn-extension\": true,\n    \"enable-trm\": \"configured-value\",\n    \"core-vlan-id\": 1,\n    \"mcast-group\": \"configured-value\",\n    \"rp-address\": \"10.1.1.1\",\n    \"rp-is-local\": true,\n    \"route-distinquisher\": \"configured-value\",\n    \"rt-imports\": {\n      \"rt-import\": [\n        {}\n      ]\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete l3-instance",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Remove l3-instance from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "id"
                  ]
                },
                "description": "Retrieve id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "id"
                  ]
                },
                "description": "Create or replace id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "id"
                  ]
                },
                "description": "Partially update id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "id"
                  ]
                },
                "description": "Remove id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "vrf-name"
                  ]
                },
                "description": "Retrieve vrf-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vrf-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "vrf-name"
                  ]
                },
                "description": "Create or replace vrf-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vrf-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "vrf-name"
                  ]
                },
                "description": "Partially update vrf-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vrf-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "vrf-name"
                  ]
                },
                "description": "Remove vrf-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get evpn-extension",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/evpn-extension",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "evpn-extension"
                  ]
                },
                "description": "Retrieve evpn-extension from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace evpn-extension",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/evpn-extension",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "evpn-extension"
                  ]
                },
                "description": "Create or replace evpn-extension on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update evpn-extension",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/evpn-extension",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "evpn-extension"
                  ]
                },
                "description": "Partially update evpn-extension on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete evpn-extension",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/evpn-extension",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "evpn-extension"
                  ]
                },
                "description": "Remove evpn-extension from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enable-trm",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/enable-trm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "enable-trm"
                  ]
                },
                "description": "Retrieve enable-trm from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enable-trm",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/enable-trm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "enable-trm"
                  ]
                },
                "description": "Create or replace enable-trm on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enable-trm",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/enable-trm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "enable-trm"
                  ]
                },
                "description": "Partially update enable-trm on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enable-trm",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/enable-trm",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "enable-trm"
                  ]
                },
                "description": "Remove enable-trm from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get core-vlan-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/core-vlan-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "core-vlan-id"
                  ]
                },
                "description": "Retrieve core-vlan-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace core-vlan-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/core-vlan-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "core-vlan-id"
                  ]
                },
                "description": "Create or replace core-vlan-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update core-vlan-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/core-vlan-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "core-vlan-id"
                  ]
                },
                "description": "Partially update core-vlan-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete core-vlan-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/core-vlan-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "core-vlan-id"
                  ]
                },
                "description": "Remove core-vlan-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mcast-group",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/mcast-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "mcast-group"
                  ]
                },
                "description": "Retrieve mcast-group from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mcast-group",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/mcast-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "mcast-group"
                  ]
                },
                "description": "Create or replace mcast-group on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mcast-group",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/mcast-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "mcast-group"
                  ]
                },
                "description": "Partially update mcast-group on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mcast-group",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/mcast-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "mcast-group"
                  ]
                },
                "description": "Remove mcast-group from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rp-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rp-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rp-address"
                  ]
                },
                "description": "Retrieve rp-address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rp-address",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rp-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rp-address"
                  ]
                },
                "description": "Create or replace rp-address on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rp-address",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rp-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rp-address"
                  ]
                },
                "description": "Partially update rp-address on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rp-address",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rp-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rp-address"
                  ]
                },
                "description": "Remove rp-address from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rp-is-local",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rp-is-local",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rp-is-local"
                  ]
                },
                "description": "Retrieve rp-is-local from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rp-is-local",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rp-is-local",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rp-is-local"
                  ]
                },
                "description": "Create or replace rp-is-local on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rp-is-local",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rp-is-local",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rp-is-local"
                  ]
                },
                "description": "Partially update rp-is-local on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rp-is-local",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rp-is-local",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rp-is-local"
                  ]
                },
                "description": "Remove rp-is-local from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get route-distinquisher",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/route-distinquisher",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "route-distinquisher"
                  ]
                },
                "description": "Retrieve route-distinquisher from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace route-distinquisher",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/route-distinquisher",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "route-distinquisher"
                  ]
                },
                "description": "Create or replace route-distinquisher on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update route-distinquisher",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/route-distinquisher",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "route-distinquisher"
                  ]
                },
                "description": "Partially update route-distinquisher on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete route-distinquisher",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/route-distinquisher",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "route-distinquisher"
                  ]
                },
                "description": "Remove route-distinquisher from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rt-imports",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports"
                  ]
                },
                "description": "Retrieve rt-imports from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rt-imports",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports"
                  ]
                },
                "description": "Create or replace rt-imports on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"rt-import\": [\n    {\n      \"id\": \"1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rt-imports",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports"
                  ]
                },
                "description": "Partially update rt-imports on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"rt-import\": [\n    {\n      \"id\": \"1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rt-imports",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports"
                  ]
                },
                "description": "Remove rt-imports from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rt-import",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports/rt-import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports",
                    "rt-import"
                  ]
                },
                "description": "Retrieve rt-import from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rt-import",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports/rt-import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports",
                    "rt-import"
                  ]
                },
                "description": "Create or replace rt-import on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rt-import",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports/rt-import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports",
                    "rt-import"
                  ]
                },
                "description": "Partially update rt-import on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rt-import",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports/rt-import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports",
                    "rt-import"
                  ]
                },
                "description": "Remove rt-import from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rt-import",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports/rt-import={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports",
                    "rt-import=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Retrieve rt-import from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rt-import",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports/rt-import={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports",
                    "rt-import=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Create or replace rt-import on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rt-import",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports/rt-import={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports",
                    "rt-import=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Partially update rt-import on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rt-import",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports/rt-import={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports",
                    "rt-import=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Remove rt-import from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rt-exports",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports"
                  ]
                },
                "description": "Retrieve rt-exports from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rt-exports",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports"
                  ]
                },
                "description": "Create or replace rt-exports on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"rt-export\": [\n    {\n      \"id\": \"1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rt-exports",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports"
                  ]
                },
                "description": "Partially update rt-exports on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"rt-export\": [\n    {\n      \"id\": \"1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rt-exports",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports"
                  ]
                },
                "description": "Remove rt-exports from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rt-export",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports/rt-export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports",
                    "rt-export"
                  ]
                },
                "description": "Retrieve rt-export from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rt-export",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports/rt-export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports",
                    "rt-export"
                  ]
                },
                "description": "Create or replace rt-export on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rt-export",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports/rt-export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports",
                    "rt-export"
                  ]
                },
                "description": "Partially update rt-export on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rt-export",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports/rt-export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports",
                    "rt-export"
                  ]
                },
                "description": "Remove rt-export from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rt-export",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports/rt-export={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports",
                    "rt-export=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Retrieve rt-export from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rt-export",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports/rt-export={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports",
                    "rt-export=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Create or replace rt-export on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rt-export",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports/rt-export={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports",
                    "rt-export=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Partially update rt-export on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rt-export",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports/rt-export={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports",
                    "rt-export=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Remove rt-export from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rt-imports-v6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports-v6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports-v6"
                  ]
                },
                "description": "Retrieve rt-imports-v6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rt-imports-v6",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports-v6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports-v6"
                  ]
                },
                "description": "Create or replace rt-imports-v6 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"rt-import\": [\n    {\n      \"id\": \"1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rt-imports-v6",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports-v6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports-v6"
                  ]
                },
                "description": "Partially update rt-imports-v6 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"rt-import\": [\n    {\n      \"id\": \"1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rt-imports-v6",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports-v6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports-v6"
                  ]
                },
                "description": "Remove rt-imports-v6 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rt-import",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports-v6/rt-import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports-v6",
                    "rt-import"
                  ]
                },
                "description": "Retrieve rt-import from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rt-import",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports-v6/rt-import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports-v6",
                    "rt-import"
                  ]
                },
                "description": "Create or replace rt-import on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rt-import",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports-v6/rt-import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports-v6",
                    "rt-import"
                  ]
                },
                "description": "Partially update rt-import on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rt-import",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports-v6/rt-import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports-v6",
                    "rt-import"
                  ]
                },
                "description": "Remove rt-import from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rt-import",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports-v6/rt-import={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports-v6",
                    "rt-import=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Retrieve rt-import from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rt-import",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports-v6/rt-import={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports-v6",
                    "rt-import=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Create or replace rt-import on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rt-import",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports-v6/rt-import={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports-v6",
                    "rt-import=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Partially update rt-import on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rt-import",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-imports-v6/rt-import={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-imports-v6",
                    "rt-import=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Remove rt-import from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rt-exports-v6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports-v6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports-v6"
                  ]
                },
                "description": "Retrieve rt-exports-v6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rt-exports-v6",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports-v6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports-v6"
                  ]
                },
                "description": "Create or replace rt-exports-v6 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"rt-export\": [\n    {\n      \"id\": \"1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rt-exports-v6",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports-v6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports-v6"
                  ]
                },
                "description": "Partially update rt-exports-v6 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"rt-export\": [\n    {\n      \"id\": \"1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rt-exports-v6",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports-v6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports-v6"
                  ]
                },
                "description": "Remove rt-exports-v6 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rt-export",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports-v6/rt-export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports-v6",
                    "rt-export"
                  ]
                },
                "description": "Retrieve rt-export from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rt-export",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports-v6/rt-export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports-v6",
                    "rt-export"
                  ]
                },
                "description": "Create or replace rt-export on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rt-export",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports-v6/rt-export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports-v6",
                    "rt-export"
                  ]
                },
                "description": "Partially update rt-export on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rt-export",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports-v6/rt-export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports-v6",
                    "rt-export"
                  ]
                },
                "description": "Remove rt-export from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rt-export",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports-v6/rt-export={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports-v6",
                    "rt-export=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Retrieve rt-export from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rt-export",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports-v6/rt-export={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports-v6",
                    "rt-export=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Create or replace rt-export on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rt-export",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports-v6/rt-export={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports-v6",
                    "rt-export=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Partially update rt-export on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rt-export",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/rt-exports-v6/rt-export={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "rt-exports-v6",
                    "rt-export=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Remove rt-export from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get l3-vpn-ics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/l3-vpn-ics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "l3-vpn-ics"
                  ]
                },
                "description": "Retrieve l3-vpn-ics from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace l3-vpn-ics",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/l3-vpn-ics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "l3-vpn-ics"
                  ]
                },
                "description": "Create or replace l3-vpn-ics on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"l3-vpn-rt-imports\": {\n    \"import-ipv4\": {\n      \"l3-vpn-rt-import-ipv4\": [\n        {}\n      ]\n    },\n    \"import-ipv6\": {\n      \"l3-vpn-rt-import-ipv6\": [\n        {}\n      ]\n    }\n  },\n  \"l3-vpn-rt-exports\": {\n    \"export-ipv4\": {\n      \"l3-vpn-rt-export-ipv4\": [\n        {}\n      ]\n    },\n    \"export-ipv6\": {\n      \"l3-vpn-rt-export-ipv6\": [\n        {}\n      ]\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update l3-vpn-ics",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/l3-vpn-ics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "l3-vpn-ics"
                  ]
                },
                "description": "Partially update l3-vpn-ics on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"l3-vpn-rt-imports\": {\n    \"import-ipv4\": {\n      \"l3-vpn-rt-import-ipv4\": [\n        {}\n      ]\n    },\n    \"import-ipv6\": {\n      \"l3-vpn-rt-import-ipv6\": [\n        {}\n      ]\n    }\n  },\n  \"l3-vpn-rt-exports\": {\n    \"export-ipv4\": {\n      \"l3-vpn-rt-export-ipv4\": [\n        {}\n      ]\n    },\n    \"export-ipv6\": {\n      \"l3-vpn-rt-export-ipv6\": [\n        {}\n      ]\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete l3-vpn-ics",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/l3-vpn-ics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "l3-vpn-ics"
                  ]
                },
                "description": "Remove l3-vpn-ics from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get l3-vpn-rt-imports",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/l3-vpn-ics/l3-vpn-rt-imports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "l3-vpn-ics",
                    "l3-vpn-rt-imports"
                  ]
                },
                "description": "Retrieve l3-vpn-rt-imports from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace l3-vpn-rt-imports",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/l3-vpn-ics/l3-vpn-rt-imports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "l3-vpn-ics",
                    "l3-vpn-rt-imports"
                  ]
                },
                "description": "Create or replace l3-vpn-rt-imports on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"import-ipv4\": {\n    \"l3-vpn-rt-import-ipv4\": [\n      {\n        \"id\": {}\n      }\n    ]\n  },\n  \"import-ipv6\": {\n    \"l3-vpn-rt-import-ipv6\": [\n      {\n        \"id\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update l3-vpn-rt-imports",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/l3-vpn-ics/l3-vpn-rt-imports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "l3-vpn-ics",
                    "l3-vpn-rt-imports"
                  ]
                },
                "description": "Partially update l3-vpn-rt-imports on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"import-ipv4\": {\n    \"l3-vpn-rt-import-ipv4\": [\n      {\n        \"id\": {}\n      }\n    ]\n  },\n  \"import-ipv6\": {\n    \"l3-vpn-rt-import-ipv6\": [\n      {\n        \"id\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete l3-vpn-rt-imports",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/l3-vpn-ics/l3-vpn-rt-imports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "l3-vpn-ics",
                    "l3-vpn-rt-imports"
                  ]
                },
                "description": "Remove l3-vpn-rt-imports from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get l3-vpn-rt-exports",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/l3-vpn-ics/l3-vpn-rt-exports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "l3-vpn-ics",
                    "l3-vpn-rt-exports"
                  ]
                },
                "description": "Retrieve l3-vpn-rt-exports from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace l3-vpn-rt-exports",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/l3-vpn-ics/l3-vpn-rt-exports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "l3-vpn-ics",
                    "l3-vpn-rt-exports"
                  ]
                },
                "description": "Create or replace l3-vpn-rt-exports on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"export-ipv4\": {\n    \"l3-vpn-rt-export-ipv4\": [\n      {\n        \"id\": {}\n      }\n    ]\n  },\n  \"export-ipv6\": {\n    \"l3-vpn-rt-export-ipv6\": [\n      {\n        \"id\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update l3-vpn-rt-exports",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/l3-vpn-ics/l3-vpn-rt-exports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "l3-vpn-ics",
                    "l3-vpn-rt-exports"
                  ]
                },
                "description": "Partially update l3-vpn-rt-exports on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"export-ipv4\": {\n    \"l3-vpn-rt-export-ipv4\": [\n      {\n        \"id\": {}\n      }\n    ]\n  },\n  \"export-ipv6\": {\n    \"l3-vpn-rt-export-ipv6\": [\n      {\n        \"id\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete l3-vpn-rt-exports",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/l3-vpn-ics/l3-vpn-rt-exports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "l3-vpn-ics",
                    "l3-vpn-rt-exports"
                  ]
                },
                "description": "Remove l3-vpn-rt-exports from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vrf-lite-ics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/vrf-lite-ics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "vrf-lite-ics"
                  ]
                },
                "description": "Retrieve vrf-lite-ics from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vrf-lite-ics",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/vrf-lite-ics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "vrf-lite-ics"
                  ]
                },
                "description": "Create or replace vrf-lite-ics on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vrf-lite-ic\": [\n    {\n      \"handoff-interface\": \"configured-value\",\n      \"handoff-dot1qtag\": \"configured-value\",\n      \"local-ipv4-address\": \"10.1.1.1\",\n      \"local-ipv4-mask\": \"configured-value\",\n      \"local-ipv6\": \"2001:db8::1\",\n      \"remote-as\": 65001,\n      \"remote-ipv4\": \"configured-value\",\n      \"remote-ipv6\": \"2001:db8::1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vrf-lite-ics",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/vrf-lite-ics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "vrf-lite-ics"
                  ]
                },
                "description": "Partially update vrf-lite-ics on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vrf-lite-ic\": [\n    {\n      \"handoff-interface\": \"configured-value\",\n      \"handoff-dot1qtag\": \"configured-value\",\n      \"local-ipv4-address\": \"10.1.1.1\",\n      \"local-ipv4-mask\": \"configured-value\",\n      \"local-ipv6\": \"2001:db8::1\",\n      \"remote-as\": 65001,\n      \"remote-ipv4\": \"configured-value\",\n      \"remote-ipv6\": \"2001:db8::1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vrf-lite-ics",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/vrf-lite-ics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "vrf-lite-ics"
                  ]
                },
                "description": "Remove vrf-lite-ics from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vrf-lite-ic",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/vrf-lite-ics/vrf-lite-ic",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "vrf-lite-ics",
                    "vrf-lite-ic"
                  ]
                },
                "description": "Retrieve vrf-lite-ic from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vrf-lite-ic",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/vrf-lite-ics/vrf-lite-ic",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "vrf-lite-ics",
                    "vrf-lite-ic"
                  ]
                },
                "description": "Create or replace vrf-lite-ic on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"handoff-interface\": \"configured-value\",\n    \"handoff-dot1qtag\": \"configured-value\",\n    \"local-ipv4-address\": \"10.1.1.1\",\n    \"local-ipv4-mask\": \"configured-value\",\n    \"local-ipv6\": \"2001:db8::1\",\n    \"remote-as\": 65001,\n    \"remote-ipv4\": \"configured-value\",\n    \"remote-ipv6\": \"2001:db8::1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vrf-lite-ic",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/vrf-lite-ics/vrf-lite-ic",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "vrf-lite-ics",
                    "vrf-lite-ic"
                  ]
                },
                "description": "Partially update vrf-lite-ic on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"handoff-interface\": \"configured-value\",\n    \"handoff-dot1qtag\": \"configured-value\",\n    \"local-ipv4-address\": \"10.1.1.1\",\n    \"local-ipv4-mask\": \"configured-value\",\n    \"local-ipv6\": \"2001:db8::1\",\n    \"remote-as\": 65001,\n    \"remote-ipv4\": \"configured-value\",\n    \"remote-ipv6\": \"2001:db8::1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vrf-lite-ic",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/vrf-lite-ics/vrf-lite-ic",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "vrf-lite-ics",
                    "vrf-lite-ic"
                  ]
                },
                "description": "Remove vrf-lite-ic from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get networks",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/networks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "networks"
                  ]
                },
                "description": "Retrieve networks from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace networks",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/networks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "networks"
                  ]
                },
                "description": "Create or replace networks on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv4\": {\n    \"ipv4-network\": {\n      \"network\": \"10.0.0.0/24\",\n      \"mask\": \"255.255.255.0\"\n    }\n  },\n  \"ipv6\": {\n    \"ipv6-network\": [\n      {\n        \"prefix\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update networks",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/networks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "networks"
                  ]
                },
                "description": "Partially update networks on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv4\": {\n    \"ipv4-network\": {\n      \"network\": \"10.0.0.0/24\",\n      \"mask\": \"255.255.255.0\"\n    }\n  },\n  \"ipv6\": {\n    \"ipv6-network\": [\n      {\n        \"prefix\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete networks",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/networks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "networks"
                  ]
                },
                "description": "Remove networks from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/networks/ipv4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "networks",
                    "ipv4"
                  ]
                },
                "description": "Retrieve ipv4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv4",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/networks/ipv4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "networks",
                    "ipv4"
                  ]
                },
                "description": "Create or replace ipv4 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv4-network\": {\n    \"network\": \"10.0.0.0/24\",\n    \"mask\": \"255.255.255.0\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv4",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/networks/ipv4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "networks",
                    "ipv4"
                  ]
                },
                "description": "Partially update ipv4 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv4-network\": {\n    \"network\": \"10.0.0.0/24\",\n    \"mask\": \"255.255.255.0\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv4",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/networks/ipv4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "networks",
                    "ipv4"
                  ]
                },
                "description": "Remove ipv4 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/networks/ipv6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "networks",
                    "ipv6"
                  ]
                },
                "description": "Retrieve ipv6 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv6",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/networks/ipv6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "networks",
                    "ipv6"
                  ]
                },
                "description": "Create or replace ipv6 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv6-network\": [\n    {\n      \"prefix\": \"10.0.0.0/24\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv6",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/networks/ipv6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "networks",
                    "ipv6"
                  ]
                },
                "description": "Partially update ipv6 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv6-network\": [\n    {\n      \"prefix\": \"10.0.0.0/24\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv6",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/networks/ipv6",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "networks",
                    "ipv6"
                  ]
                },
                "description": "Remove ipv6 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get default-routes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/default-routes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "default-routes"
                  ]
                },
                "description": "Retrieve default-routes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace default-routes",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/default-routes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "default-routes"
                  ]
                },
                "description": "Create or replace default-routes on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"default-route\": {\n    \"prefix\": \"10.0.0.0/24\",\n    \"mask\": \"255.255.255.0\",\n    \"destination\": [\n      {\n        \"address\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update default-routes",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/default-routes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "default-routes"
                  ]
                },
                "description": "Partially update default-routes on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"default-route\": {\n    \"prefix\": \"10.0.0.0/24\",\n    \"mask\": \"255.255.255.0\",\n    \"destination\": [\n      {\n        \"address\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete default-routes",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/default-routes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "default-routes"
                  ]
                },
                "description": "Remove default-routes from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get default-route",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/default-routes/default-route",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "default-routes",
                    "default-route"
                  ]
                },
                "description": "Retrieve default-route from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace default-route",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/default-routes/default-route",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "default-routes",
                    "default-route"
                  ]
                },
                "description": "Create or replace default-route on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"prefix\": \"10.0.0.0/24\",\n  \"mask\": \"255.255.255.0\",\n  \"destination\": [\n    {\n      \"address\": \"10.1.1.1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update default-route",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/default-routes/default-route",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "default-routes",
                    "default-route"
                  ]
                },
                "description": "Partially update default-route on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"prefix\": \"10.0.0.0/24\",\n  \"mask\": \"255.255.255.0\",\n  \"destination\": [\n    {\n      \"address\": \"10.1.1.1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete default-route",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l3-instances/l3-instance/default-routes/default-route",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l3-instances",
                    "l3-instance",
                    "default-routes",
                    "default-route"
                  ]
                },
                "description": "Remove default-route from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get l2-instances",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances"
                  ]
                },
                "description": "Retrieve l2-instances from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace l2-instances",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances"
                  ]
                },
                "description": "Create or replace l2-instances on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"l2-instance\": [\n    {\n      \"id\": 1,\n      \"evi-id\": 1,\n      \"vrf-name\": \"default\",\n      \"vlan-name\": \"DATA_VLAN\",\n      \"vni-id\": 1,\n      \"evpn-extension\": true,\n      \"irb-gw-mode\": \"configured-value\",\n      \"suppression\": true,\n      \"mac-address\": \"00:1a:2b:3c:4d:5e\",\n      \"ipv4-address\": \"10.1.1.1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update l2-instances",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances"
                  ]
                },
                "description": "Partially update l2-instances on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"l2-instance\": [\n    {\n      \"id\": 1,\n      \"evi-id\": 1,\n      \"vrf-name\": \"default\",\n      \"vlan-name\": \"DATA_VLAN\",\n      \"vni-id\": 1,\n      \"evpn-extension\": true,\n      \"irb-gw-mode\": \"configured-value\",\n      \"suppression\": true,\n      \"mac-address\": \"00:1a:2b:3c:4d:5e\",\n      \"ipv4-address\": \"10.1.1.1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete l2-instances",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances"
                  ]
                },
                "description": "Remove l2-instances from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get l2-instance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance"
                  ]
                },
                "description": "Retrieve l2-instance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace l2-instance",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance"
                  ]
                },
                "description": "Create or replace l2-instance on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": 1,\n    \"evi-id\": 1,\n    \"vrf-name\": \"default\",\n    \"vlan-name\": \"DATA_VLAN\",\n    \"vni-id\": 1,\n    \"evpn-extension\": true,\n    \"irb-gw-mode\": \"configured-value\",\n    \"suppression\": true,\n    \"mac-address\": \"00:1a:2b:3c:4d:5e\",\n    \"ipv4-address\": \"10.1.1.1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update l2-instance",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance"
                  ]
                },
                "description": "Partially update l2-instance on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": 1,\n    \"evi-id\": 1,\n    \"vrf-name\": \"default\",\n    \"vlan-name\": \"DATA_VLAN\",\n    \"vni-id\": 1,\n    \"evpn-extension\": true,\n    \"irb-gw-mode\": \"configured-value\",\n    \"suppression\": true,\n    \"mac-address\": \"00:1a:2b:3c:4d:5e\",\n    \"ipv4-address\": \"10.1.1.1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete l2-instance",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance"
                  ]
                },
                "description": "Remove l2-instance from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get l2-instance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Retrieve l2-instance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace l2-instance",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Create or replace l2-instance on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": 1,\n    \"evi-id\": 1,\n    \"vrf-name\": \"default\",\n    \"vlan-name\": \"DATA_VLAN\",\n    \"vni-id\": 1,\n    \"evpn-extension\": true,\n    \"irb-gw-mode\": \"configured-value\",\n    \"suppression\": true,\n    \"mac-address\": \"00:1a:2b:3c:4d:5e\",\n    \"ipv4-address\": \"10.1.1.1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update l2-instance",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Partially update l2-instance on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": 1,\n    \"evi-id\": 1,\n    \"vrf-name\": \"default\",\n    \"vlan-name\": \"DATA_VLAN\",\n    \"vni-id\": 1,\n    \"evpn-extension\": true,\n    \"irb-gw-mode\": \"configured-value\",\n    \"suppression\": true,\n    \"mac-address\": \"00:1a:2b:3c:4d:5e\",\n    \"ipv4-address\": \"10.1.1.1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete l2-instance",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Remove l2-instance from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "id"
                  ]
                },
                "description": "Retrieve id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "id"
                  ]
                },
                "description": "Create or replace id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "id"
                  ]
                },
                "description": "Partially update id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "id"
                  ]
                },
                "description": "Remove id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get evi-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/evi-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "evi-id"
                  ]
                },
                "description": "Retrieve evi-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace evi-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/evi-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "evi-id"
                  ]
                },
                "description": "Create or replace evi-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update evi-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/evi-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "evi-id"
                  ]
                },
                "description": "Partially update evi-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete evi-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/evi-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "evi-id"
                  ]
                },
                "description": "Remove evi-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "vrf-name"
                  ]
                },
                "description": "Retrieve vrf-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vrf-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "vrf-name"
                  ]
                },
                "description": "Create or replace vrf-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vrf-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "vrf-name"
                  ]
                },
                "description": "Partially update vrf-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vrf-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "vrf-name"
                  ]
                },
                "description": "Remove vrf-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlan-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/vlan-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "vlan-name"
                  ]
                },
                "description": "Retrieve vlan-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vlan-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/vlan-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "vlan-name"
                  ]
                },
                "description": "Create or replace vlan-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"DATA_VLAN\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vlan-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/vlan-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "vlan-name"
                  ]
                },
                "description": "Partially update vlan-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"DATA_VLAN\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vlan-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/vlan-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "vlan-name"
                  ]
                },
                "description": "Remove vlan-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vni-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/vni-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "vni-id"
                  ]
                },
                "description": "Retrieve vni-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vni-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/vni-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "vni-id"
                  ]
                },
                "description": "Create or replace vni-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vni-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/vni-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "vni-id"
                  ]
                },
                "description": "Partially update vni-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vni-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/vni-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "vni-id"
                  ]
                },
                "description": "Remove vni-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get evpn-extension",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/evpn-extension",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "evpn-extension"
                  ]
                },
                "description": "Retrieve evpn-extension from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace evpn-extension",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/evpn-extension",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "evpn-extension"
                  ]
                },
                "description": "Create or replace evpn-extension on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update evpn-extension",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/evpn-extension",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "evpn-extension"
                  ]
                },
                "description": "Partially update evpn-extension on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete evpn-extension",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/evpn-extension",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "evpn-extension"
                  ]
                },
                "description": "Remove evpn-extension from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get irb-gw-mode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/irb-gw-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "irb-gw-mode"
                  ]
                },
                "description": "Retrieve irb-gw-mode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace irb-gw-mode",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/irb-gw-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "irb-gw-mode"
                  ]
                },
                "description": "Create or replace irb-gw-mode on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update irb-gw-mode",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/irb-gw-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "irb-gw-mode"
                  ]
                },
                "description": "Partially update irb-gw-mode on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete irb-gw-mode",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/irb-gw-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "irb-gw-mode"
                  ]
                },
                "description": "Remove irb-gw-mode from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get suppression",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/suppression",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "suppression"
                  ]
                },
                "description": "Retrieve suppression from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace suppression",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/suppression",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "suppression"
                  ]
                },
                "description": "Create or replace suppression on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update suppression",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/suppression",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "suppression"
                  ]
                },
                "description": "Partially update suppression on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete suppression",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/suppression",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "suppression"
                  ]
                },
                "description": "Remove suppression from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/mac-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "mac-address"
                  ]
                },
                "description": "Retrieve mac-address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mac-address",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/mac-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "mac-address"
                  ]
                },
                "description": "Create or replace mac-address on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"00:1a:2b:3c:4d:5e\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mac-address",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/mac-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "mac-address"
                  ]
                },
                "description": "Partially update mac-address on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"00:1a:2b:3c:4d:5e\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mac-address",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/mac-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "mac-address"
                  ]
                },
                "description": "Remove mac-address from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/ipv4-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "ipv4-address"
                  ]
                },
                "description": "Retrieve ipv4-address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv4-address",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/ipv4-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "ipv4-address"
                  ]
                },
                "description": "Create or replace ipv4-address on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv4-address",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/ipv4-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "ipv4-address"
                  ]
                },
                "description": "Partially update ipv4-address on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv4-address",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/ipv4-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "ipv4-address"
                  ]
                },
                "description": "Remove ipv4-address from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4-mask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/ipv4-mask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "ipv4-mask"
                  ]
                },
                "description": "Retrieve ipv4-mask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv4-mask",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/ipv4-mask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "ipv4-mask"
                  ]
                },
                "description": "Create or replace ipv4-mask on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv4-mask",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/ipv4-mask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "ipv4-mask"
                  ]
                },
                "description": "Partially update ipv4-mask on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv4-mask",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/ipv4-mask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "ipv4-mask"
                  ]
                },
                "description": "Remove ipv4-mask from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6-prefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/ipv6-prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "ipv6-prefix"
                  ]
                },
                "description": "Retrieve ipv6-prefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv6-prefix",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/ipv6-prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "ipv6-prefix"
                  ]
                },
                "description": "Create or replace ipv6-prefix on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"2001:db8::1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv6-prefix",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/ipv6-prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "ipv6-prefix"
                  ]
                },
                "description": "Partially update ipv6-prefix on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"2001:db8::1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv6-prefix",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/ipv6-prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "ipv6-prefix"
                  ]
                },
                "description": "Remove ipv6-prefix from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get route-distinguisher",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/route-distinguisher",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "route-distinguisher"
                  ]
                },
                "description": "Retrieve route-distinguisher from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace route-distinguisher",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/route-distinguisher",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "route-distinguisher"
                  ]
                },
                "description": "Create or replace route-distinguisher on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"65000:1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update route-distinguisher",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/route-distinguisher",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "route-distinguisher"
                  ]
                },
                "description": "Partially update route-distinguisher on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"65000:1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete route-distinguisher",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/route-distinguisher",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "route-distinguisher"
                  ]
                },
                "description": "Remove route-distinguisher from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get route-target",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/route-target",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "route-target"
                  ]
                },
                "description": "Retrieve route-target from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace route-target",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/route-target",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "route-target"
                  ]
                },
                "description": "Create or replace route-target on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"import\": {\n    \"rt-value\": \"configured-value\"\n  },\n  \"export\": {\n    \"rt-value\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update route-target",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/route-target",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "route-target"
                  ]
                },
                "description": "Partially update route-target on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"import\": {\n    \"rt-value\": \"configured-value\"\n  },\n  \"export\": {\n    \"rt-value\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete route-target",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/route-target",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "route-target"
                  ]
                },
                "description": "Remove route-target from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get import",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/route-target/import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "route-target",
                    "import"
                  ]
                },
                "description": "Retrieve import from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace import",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/route-target/import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "route-target",
                    "import"
                  ]
                },
                "description": "Create or replace import on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"rt-value\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update import",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/route-target/import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "route-target",
                    "import"
                  ]
                },
                "description": "Partially update import on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"rt-value\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete import",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/route-target/import",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "route-target",
                    "import"
                  ]
                },
                "description": "Remove import from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get export",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/route-target/export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "route-target",
                    "export"
                  ]
                },
                "description": "Retrieve export from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace export",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/route-target/export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "route-target",
                    "export"
                  ]
                },
                "description": "Create or replace export on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"rt-value\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update export",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/route-target/export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "route-target",
                    "export"
                  ]
                },
                "description": "Partially update export on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"rt-value\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete export",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/route-target/export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "route-target",
                    "export"
                  ]
                },
                "description": "Remove export from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get unicast-replication",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/unicast-replication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "unicast-replication"
                  ]
                },
                "description": "Retrieve unicast-replication from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace unicast-replication",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/unicast-replication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "unicast-replication"
                  ]
                },
                "description": "Create or replace unicast-replication on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update unicast-replication",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/unicast-replication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "unicast-replication"
                  ]
                },
                "description": "Partially update unicast-replication on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete unicast-replication",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/unicast-replication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "unicast-replication"
                  ]
                },
                "description": "Remove unicast-replication from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mcast-group",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/mcast-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "mcast-group"
                  ]
                },
                "description": "Retrieve mcast-group from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mcast-group",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/mcast-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "mcast-group"
                  ]
                },
                "description": "Create or replace mcast-group on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mcast-group",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/mcast-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "mcast-group"
                  ]
                },
                "description": "Partially update mcast-group on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mcast-group",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/mcast-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "mcast-group"
                  ]
                },
                "description": "Remove mcast-group from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dhcp-relay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay"
                  ]
                },
                "description": "Retrieve dhcp-relay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dhcp-relay",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay"
                  ]
                },
                "description": "Create or replace dhcp-relay on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv4-dhcp-helper\": \"configured-value\",\n  \"ipv6-dhcp-relay\": \"2001:db8::1\",\n  \"ipv4-dhcp-global\": \"configured-value\",\n  \"ipv6-dhcp-global\": \"2001:db8::1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dhcp-relay",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay"
                  ]
                },
                "description": "Partially update dhcp-relay on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv4-dhcp-helper\": \"configured-value\",\n  \"ipv6-dhcp-relay\": \"2001:db8::1\",\n  \"ipv4-dhcp-global\": \"configured-value\",\n  \"ipv6-dhcp-global\": \"2001:db8::1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dhcp-relay",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay"
                  ]
                },
                "description": "Remove dhcp-relay from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4-dhcp-helper",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay/ipv4-dhcp-helper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay",
                    "ipv4-dhcp-helper"
                  ]
                },
                "description": "Retrieve ipv4-dhcp-helper from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv4-dhcp-helper",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay/ipv4-dhcp-helper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay",
                    "ipv4-dhcp-helper"
                  ]
                },
                "description": "Create or replace ipv4-dhcp-helper on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv4-dhcp-helper",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay/ipv4-dhcp-helper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay",
                    "ipv4-dhcp-helper"
                  ]
                },
                "description": "Partially update ipv4-dhcp-helper on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv4-dhcp-helper",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay/ipv4-dhcp-helper",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay",
                    "ipv4-dhcp-helper"
                  ]
                },
                "description": "Remove ipv4-dhcp-helper from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6-dhcp-relay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay/ipv6-dhcp-relay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay",
                    "ipv6-dhcp-relay"
                  ]
                },
                "description": "Retrieve ipv6-dhcp-relay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv6-dhcp-relay",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay/ipv6-dhcp-relay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay",
                    "ipv6-dhcp-relay"
                  ]
                },
                "description": "Create or replace ipv6-dhcp-relay on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"2001:db8::1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv6-dhcp-relay",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay/ipv6-dhcp-relay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay",
                    "ipv6-dhcp-relay"
                  ]
                },
                "description": "Partially update ipv6-dhcp-relay on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"2001:db8::1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv6-dhcp-relay",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay/ipv6-dhcp-relay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay",
                    "ipv6-dhcp-relay"
                  ]
                },
                "description": "Remove ipv6-dhcp-relay from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4-dhcp-global",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay/ipv4-dhcp-global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay",
                    "ipv4-dhcp-global"
                  ]
                },
                "description": "Retrieve ipv4-dhcp-global from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv4-dhcp-global",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay/ipv4-dhcp-global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay",
                    "ipv4-dhcp-global"
                  ]
                },
                "description": "Create or replace ipv4-dhcp-global on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv4-dhcp-global",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay/ipv4-dhcp-global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay",
                    "ipv4-dhcp-global"
                  ]
                },
                "description": "Partially update ipv4-dhcp-global on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv4-dhcp-global",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay/ipv4-dhcp-global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay",
                    "ipv4-dhcp-global"
                  ]
                },
                "description": "Remove ipv4-dhcp-global from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6-dhcp-global",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay/ipv6-dhcp-global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay",
                    "ipv6-dhcp-global"
                  ]
                },
                "description": "Retrieve ipv6-dhcp-global from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv6-dhcp-global",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay/ipv6-dhcp-global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay",
                    "ipv6-dhcp-global"
                  ]
                },
                "description": "Create or replace ipv6-dhcp-global on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"2001:db8::1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv6-dhcp-global",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay/ipv6-dhcp-global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay",
                    "ipv6-dhcp-global"
                  ]
                },
                "description": "Partially update ipv6-dhcp-global on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"2001:db8::1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv6-dhcp-global",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/dhcp-relay/ipv6-dhcp-global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "dhcp-relay",
                    "ipv6-dhcp-global"
                  ]
                },
                "description": "Remove ipv6-dhcp-global from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get access-interfaces",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/access-interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "access-interfaces"
                  ]
                },
                "description": "Retrieve access-interfaces from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace access-interfaces",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/access-interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "access-interfaces"
                  ]
                },
                "description": "Create or replace access-interfaces on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"access-interface\": [\n    {\n      \"id\": \"1\",\n      \"ap-access-node\": true\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update access-interfaces",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/access-interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "access-interfaces"
                  ]
                },
                "description": "Partially update access-interfaces on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"access-interface\": [\n    {\n      \"id\": \"1\",\n      \"ap-access-node\": true\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete access-interfaces",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/access-interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "access-interfaces"
                  ]
                },
                "description": "Remove access-interfaces from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get access-interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/access-interfaces/access-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "access-interfaces",
                    "access-interface"
                  ]
                },
                "description": "Retrieve access-interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace access-interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/access-interfaces/access-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "access-interfaces",
                    "access-interface"
                  ]
                },
                "description": "Create or replace access-interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\",\n    \"ap-access-node\": true\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update access-interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/access-interfaces/access-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "access-interfaces",
                    "access-interface"
                  ]
                },
                "description": "Partially update access-interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\",\n    \"ap-access-node\": true\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete access-interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/access-interfaces/access-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "access-interfaces",
                    "access-interface"
                  ]
                },
                "description": "Remove access-interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get access-interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/access-interfaces/access-interface={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "access-interfaces",
                    "access-interface=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Retrieve access-interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace access-interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/access-interfaces/access-interface={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "access-interfaces",
                    "access-interface=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Create or replace access-interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\",\n    \"ap-access-node\": true\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update access-interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/access-interfaces/access-interface={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "access-interfaces",
                    "access-interface=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Partially update access-interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\",\n    \"ap-access-node\": true\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete access-interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/access-interfaces/access-interface={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "access-interfaces",
                    "access-interface=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Remove access-interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get trunk-interfaces",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/trunk-interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "trunk-interfaces"
                  ]
                },
                "description": "Retrieve trunk-interfaces from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace trunk-interfaces",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/trunk-interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "trunk-interfaces"
                  ]
                },
                "description": "Create or replace trunk-interfaces on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"trunk-interface\": [\n    {\n      \"id\": \"1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update trunk-interfaces",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/trunk-interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "trunk-interfaces"
                  ]
                },
                "description": "Partially update trunk-interfaces on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"trunk-interface\": [\n    {\n      \"id\": \"1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete trunk-interfaces",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/trunk-interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "trunk-interfaces"
                  ]
                },
                "description": "Remove trunk-interfaces from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get trunk-interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/trunk-interfaces/trunk-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "trunk-interfaces",
                    "trunk-interface"
                  ]
                },
                "description": "Retrieve trunk-interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace trunk-interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/trunk-interfaces/trunk-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "trunk-interfaces",
                    "trunk-interface"
                  ]
                },
                "description": "Create or replace trunk-interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update trunk-interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/trunk-interfaces/trunk-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "trunk-interfaces",
                    "trunk-interface"
                  ]
                },
                "description": "Partially update trunk-interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete trunk-interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/trunk-interfaces/trunk-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "trunk-interfaces",
                    "trunk-interface"
                  ]
                },
                "description": "Remove trunk-interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get trunk-interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/trunk-interfaces/trunk-interface={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "trunk-interfaces",
                    "trunk-interface=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Retrieve trunk-interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace trunk-interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/trunk-interfaces/trunk-interface={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "trunk-interfaces",
                    "trunk-interface=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Create or replace trunk-interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update trunk-interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/trunk-interfaces/trunk-interface={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "trunk-interfaces",
                    "trunk-interface=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Partially update trunk-interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"id\": \"1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete trunk-interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-evpn-service:evpn-service/evpn-config/l2-instances/l2-instance/trunk-interfaces/trunk-interface={id}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-evpn-service:evpn-service",
                    "evpn-config",
                    "l2-instances",
                    "l2-instance",
                    "trunk-interfaces",
                    "trunk-interface=:id"
                  ],
                  "variable": [
                    {
                      "key": "id",
                      "value": "",
                      "description": "Path parameter: id"
                    }
                  ]
                },
                "description": "Remove trunk-interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "cisco-policy-filters",
          "description": "Cisco IOS-XE - cisco-policy-filters\n\nData from `cisco-policy-filters` module.\n\n**Root containers:** 1 (classifier-entry-type)\n**Paths:** 122 | **Operations:** 488\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 122 | Operations: 488",
          "item": [
            {
              "name": "GET Get classifier-entry-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type"
                  ]
                },
                "description": "Retrieve classifier-entry-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace classifier-entry-type",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type"
                  ]
                },
                "description": "Create or replace classifier-entry-type on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update classifier-entry-type",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type"
                  ]
                },
                "description": "Partially update classifier-entry-type on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete classifier-entry-type",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type"
                  ]
                },
                "description": "Remove classifier-entry-type from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cos-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-cfgs"
                  ]
                },
                "description": "Retrieve cos-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cos-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-cfgs"
                  ]
                },
                "description": "Create or replace cos-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cos-cfg\": {\n    \"cos-min\": \"configured-value\",\n    \"cos-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cos-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-cfgs"
                  ]
                },
                "description": "Partially update cos-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cos-cfg\": {\n    \"cos-min\": \"configured-value\",\n    \"cos-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cos-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-cfgs"
                  ]
                },
                "description": "Remove cos-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cos-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-cfgs/cos-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-cfgs",
                    "cos-cfg"
                  ]
                },
                "description": "Retrieve cos-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cos-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-cfgs/cos-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-cfgs",
                    "cos-cfg"
                  ]
                },
                "description": "Create or replace cos-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cos-min\": \"configured-value\",\n  \"cos-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cos-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-cfgs/cos-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-cfgs",
                    "cos-cfg"
                  ]
                },
                "description": "Partially update cos-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cos-min\": \"configured-value\",\n  \"cos-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cos-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-cfgs/cos-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-cfgs",
                    "cos-cfg"
                  ]
                },
                "description": "Remove cos-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cos-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-cfgs/cos-cfg/cos-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-cfgs",
                    "cos-cfg",
                    "cos-min"
                  ]
                },
                "description": "Retrieve cos-min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cos-min",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-cfgs/cos-cfg/cos-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-cfgs",
                    "cos-cfg",
                    "cos-min"
                  ]
                },
                "description": "Create or replace cos-min on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cos-min",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-cfgs/cos-cfg/cos-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-cfgs",
                    "cos-cfg",
                    "cos-min"
                  ]
                },
                "description": "Partially update cos-min on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cos-min",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-cfgs/cos-cfg/cos-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-cfgs",
                    "cos-cfg",
                    "cos-min"
                  ]
                },
                "description": "Remove cos-min from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cos-max",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-cfgs/cos-cfg/cos-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-cfgs",
                    "cos-cfg",
                    "cos-max"
                  ]
                },
                "description": "Retrieve cos-max from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cos-max",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-cfgs/cos-cfg/cos-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-cfgs",
                    "cos-cfg",
                    "cos-max"
                  ]
                },
                "description": "Create or replace cos-max on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cos-max",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-cfgs/cos-cfg/cos-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-cfgs",
                    "cos-cfg",
                    "cos-max"
                  ]
                },
                "description": "Partially update cos-max on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cos-max",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-cfgs/cos-cfg/cos-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-cfgs",
                    "cos-cfg",
                    "cos-max"
                  ]
                },
                "description": "Remove cos-max from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cos-inner-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-inner-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-inner-cfgs"
                  ]
                },
                "description": "Retrieve cos-inner-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cos-inner-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-inner-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-inner-cfgs"
                  ]
                },
                "description": "Create or replace cos-inner-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cos-inner-cfg\": {\n    \"cos-min\": \"configured-value\",\n    \"cos-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cos-inner-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-inner-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-inner-cfgs"
                  ]
                },
                "description": "Partially update cos-inner-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cos-inner-cfg\": {\n    \"cos-min\": \"configured-value\",\n    \"cos-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cos-inner-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-inner-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-inner-cfgs"
                  ]
                },
                "description": "Remove cos-inner-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cos-inner-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-inner-cfgs/cos-inner-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-inner-cfgs",
                    "cos-inner-cfg"
                  ]
                },
                "description": "Retrieve cos-inner-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cos-inner-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-inner-cfgs/cos-inner-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-inner-cfgs",
                    "cos-inner-cfg"
                  ]
                },
                "description": "Create or replace cos-inner-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cos-min\": \"configured-value\",\n  \"cos-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cos-inner-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-inner-cfgs/cos-inner-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-inner-cfgs",
                    "cos-inner-cfg"
                  ]
                },
                "description": "Partially update cos-inner-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cos-min\": \"configured-value\",\n  \"cos-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cos-inner-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-inner-cfgs/cos-inner-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-inner-cfgs",
                    "cos-inner-cfg"
                  ]
                },
                "description": "Remove cos-inner-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cos-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-inner-cfgs/cos-inner-cfg/cos-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-inner-cfgs",
                    "cos-inner-cfg",
                    "cos-min"
                  ]
                },
                "description": "Retrieve cos-min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cos-min",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-inner-cfgs/cos-inner-cfg/cos-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-inner-cfgs",
                    "cos-inner-cfg",
                    "cos-min"
                  ]
                },
                "description": "Create or replace cos-min on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cos-min",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-inner-cfgs/cos-inner-cfg/cos-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-inner-cfgs",
                    "cos-inner-cfg",
                    "cos-min"
                  ]
                },
                "description": "Partially update cos-min on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cos-min",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-inner-cfgs/cos-inner-cfg/cos-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-inner-cfgs",
                    "cos-inner-cfg",
                    "cos-min"
                  ]
                },
                "description": "Remove cos-min from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cos-max",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-inner-cfgs/cos-inner-cfg/cos-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-inner-cfgs",
                    "cos-inner-cfg",
                    "cos-max"
                  ]
                },
                "description": "Retrieve cos-max from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cos-max",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-inner-cfgs/cos-inner-cfg/cos-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-inner-cfgs",
                    "cos-inner-cfg",
                    "cos-max"
                  ]
                },
                "description": "Create or replace cos-max on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cos-max",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-inner-cfgs/cos-inner-cfg/cos-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-inner-cfgs",
                    "cos-inner-cfg",
                    "cos-max"
                  ]
                },
                "description": "Partially update cos-max on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cos-max",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/cos-inner-cfgs/cos-inner-cfg/cos-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "cos-inner-cfgs",
                    "cos-inner-cfg",
                    "cos-max"
                  ]
                },
                "description": "Remove cos-max from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4-acl-name-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-name-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-name-cfgs"
                  ]
                },
                "description": "Retrieve ipv4-acl-name-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv4-acl-name-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-name-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-name-cfgs"
                  ]
                },
                "description": "Create or replace ipv4-acl-name-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv4-acl-name-cfg\": [\n    {\n      \"ip-acl-name\": \"example-1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv4-acl-name-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-name-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-name-cfgs"
                  ]
                },
                "description": "Partially update ipv4-acl-name-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv4-acl-name-cfg\": [\n    {\n      \"ip-acl-name\": \"example-1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv4-acl-name-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-name-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-name-cfgs"
                  ]
                },
                "description": "Remove ipv4-acl-name-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4-acl-name-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-name-cfgs/ipv4-acl-name-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-name-cfgs",
                    "ipv4-acl-name-cfg"
                  ]
                },
                "description": "Retrieve ipv4-acl-name-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv4-acl-name-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-name-cfgs/ipv4-acl-name-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-name-cfgs",
                    "ipv4-acl-name-cfg"
                  ]
                },
                "description": "Create or replace ipv4-acl-name-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"ip-acl-name\": \"example-1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv4-acl-name-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-name-cfgs/ipv4-acl-name-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-name-cfgs",
                    "ipv4-acl-name-cfg"
                  ]
                },
                "description": "Partially update ipv4-acl-name-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"ip-acl-name\": \"example-1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv4-acl-name-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-name-cfgs/ipv4-acl-name-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-name-cfgs",
                    "ipv4-acl-name-cfg"
                  ]
                },
                "description": "Remove ipv4-acl-name-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip-acl-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-name-cfgs/ipv4-acl-name-cfg/ip-acl-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-name-cfgs",
                    "ipv4-acl-name-cfg",
                    "ip-acl-name"
                  ]
                },
                "description": "Retrieve ip-acl-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ip-acl-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-name-cfgs/ipv4-acl-name-cfg/ip-acl-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-name-cfgs",
                    "ipv4-acl-name-cfg",
                    "ip-acl-name"
                  ]
                },
                "description": "Create or replace ip-acl-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ip-acl-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-name-cfgs/ipv4-acl-name-cfg/ip-acl-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-name-cfgs",
                    "ipv4-acl-name-cfg",
                    "ip-acl-name"
                  ]
                },
                "description": "Partially update ip-acl-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ip-acl-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-name-cfgs/ipv4-acl-name-cfg/ip-acl-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-name-cfgs",
                    "ipv4-acl-name-cfg",
                    "ip-acl-name"
                  ]
                },
                "description": "Remove ip-acl-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6-acl-name-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-name-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-name-cfgs"
                  ]
                },
                "description": "Retrieve ipv6-acl-name-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv6-acl-name-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-name-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-name-cfgs"
                  ]
                },
                "description": "Create or replace ipv6-acl-name-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv6-acl-name-cfg\": [\n    {\n      \"ip-acl-name\": \"example-1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv6-acl-name-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-name-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-name-cfgs"
                  ]
                },
                "description": "Partially update ipv6-acl-name-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv6-acl-name-cfg\": [\n    {\n      \"ip-acl-name\": \"example-1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv6-acl-name-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-name-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-name-cfgs"
                  ]
                },
                "description": "Remove ipv6-acl-name-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6-acl-name-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-name-cfgs/ipv6-acl-name-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-name-cfgs",
                    "ipv6-acl-name-cfg"
                  ]
                },
                "description": "Retrieve ipv6-acl-name-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv6-acl-name-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-name-cfgs/ipv6-acl-name-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-name-cfgs",
                    "ipv6-acl-name-cfg"
                  ]
                },
                "description": "Create or replace ipv6-acl-name-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"ip-acl-name\": \"example-1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv6-acl-name-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-name-cfgs/ipv6-acl-name-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-name-cfgs",
                    "ipv6-acl-name-cfg"
                  ]
                },
                "description": "Partially update ipv6-acl-name-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"ip-acl-name\": \"example-1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv6-acl-name-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-name-cfgs/ipv6-acl-name-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-name-cfgs",
                    "ipv6-acl-name-cfg"
                  ]
                },
                "description": "Remove ipv6-acl-name-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip-acl-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-name-cfgs/ipv6-acl-name-cfg/ip-acl-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-name-cfgs",
                    "ipv6-acl-name-cfg",
                    "ip-acl-name"
                  ]
                },
                "description": "Retrieve ip-acl-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ip-acl-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-name-cfgs/ipv6-acl-name-cfg/ip-acl-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-name-cfgs",
                    "ipv6-acl-name-cfg",
                    "ip-acl-name"
                  ]
                },
                "description": "Create or replace ip-acl-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ip-acl-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-name-cfgs/ipv6-acl-name-cfg/ip-acl-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-name-cfgs",
                    "ipv6-acl-name-cfg",
                    "ip-acl-name"
                  ]
                },
                "description": "Partially update ip-acl-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ip-acl-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-name-cfgs/ipv6-acl-name-cfg/ip-acl-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-name-cfgs",
                    "ipv6-acl-name-cfg",
                    "ip-acl-name"
                  ]
                },
                "description": "Remove ip-acl-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4-acl-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-cfgs"
                  ]
                },
                "description": "Retrieve ipv4-acl-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv4-acl-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-cfgs"
                  ]
                },
                "description": "Create or replace ipv4-acl-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv4-acl-cfg\": [\n    {\n      \"ip-acl\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv4-acl-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-cfgs"
                  ]
                },
                "description": "Partially update ipv4-acl-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv4-acl-cfg\": [\n    {\n      \"ip-acl\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv4-acl-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-cfgs"
                  ]
                },
                "description": "Remove ipv4-acl-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4-acl-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-cfgs/ipv4-acl-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-cfgs",
                    "ipv4-acl-cfg"
                  ]
                },
                "description": "Retrieve ipv4-acl-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv4-acl-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-cfgs/ipv4-acl-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-cfgs",
                    "ipv4-acl-cfg"
                  ]
                },
                "description": "Create or replace ipv4-acl-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"ip-acl\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv4-acl-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-cfgs/ipv4-acl-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-cfgs",
                    "ipv4-acl-cfg"
                  ]
                },
                "description": "Partially update ipv4-acl-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"ip-acl\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv4-acl-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-cfgs/ipv4-acl-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-cfgs",
                    "ipv4-acl-cfg"
                  ]
                },
                "description": "Remove ipv4-acl-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip-acl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-cfgs/ipv4-acl-cfg/ip-acl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-cfgs",
                    "ipv4-acl-cfg",
                    "ip-acl"
                  ]
                },
                "description": "Retrieve ip-acl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ip-acl",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-cfgs/ipv4-acl-cfg/ip-acl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-cfgs",
                    "ipv4-acl-cfg",
                    "ip-acl"
                  ]
                },
                "description": "Create or replace ip-acl on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ip-acl",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-cfgs/ipv4-acl-cfg/ip-acl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-cfgs",
                    "ipv4-acl-cfg",
                    "ip-acl"
                  ]
                },
                "description": "Partially update ip-acl on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ip-acl",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv4-acl-cfgs/ipv4-acl-cfg/ip-acl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv4-acl-cfgs",
                    "ipv4-acl-cfg",
                    "ip-acl"
                  ]
                },
                "description": "Remove ip-acl from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6-acl-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-cfgs"
                  ]
                },
                "description": "Retrieve ipv6-acl-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv6-acl-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-cfgs"
                  ]
                },
                "description": "Create or replace ipv6-acl-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv6-acl-cfg\": [\n    {\n      \"ip-acl\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv6-acl-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-cfgs"
                  ]
                },
                "description": "Partially update ipv6-acl-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv6-acl-cfg\": [\n    {\n      \"ip-acl\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv6-acl-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-cfgs"
                  ]
                },
                "description": "Remove ipv6-acl-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6-acl-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-cfgs/ipv6-acl-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-cfgs",
                    "ipv6-acl-cfg"
                  ]
                },
                "description": "Retrieve ipv6-acl-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv6-acl-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-cfgs/ipv6-acl-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-cfgs",
                    "ipv6-acl-cfg"
                  ]
                },
                "description": "Create or replace ipv6-acl-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"ip-acl\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv6-acl-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-cfgs/ipv6-acl-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-cfgs",
                    "ipv6-acl-cfg"
                  ]
                },
                "description": "Partially update ipv6-acl-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"ip-acl\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv6-acl-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-cfgs/ipv6-acl-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-cfgs",
                    "ipv6-acl-cfg"
                  ]
                },
                "description": "Remove ipv6-acl-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip-acl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-cfgs/ipv6-acl-cfg/ip-acl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-cfgs",
                    "ipv6-acl-cfg",
                    "ip-acl"
                  ]
                },
                "description": "Retrieve ip-acl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ip-acl",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-cfgs/ipv6-acl-cfg/ip-acl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-cfgs",
                    "ipv6-acl-cfg",
                    "ip-acl"
                  ]
                },
                "description": "Create or replace ip-acl on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ip-acl",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-cfgs/ipv6-acl-cfg/ip-acl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-cfgs",
                    "ipv6-acl-cfg",
                    "ip-acl"
                  ]
                },
                "description": "Partially update ip-acl on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ip-acl",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ipv6-acl-cfgs/ipv6-acl-cfg/ip-acl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ipv6-acl-cfgs",
                    "ipv6-acl-cfg",
                    "ip-acl"
                  ]
                },
                "description": "Remove ip-acl from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get input-interface-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/input-interface-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "input-interface-cfgs"
                  ]
                },
                "description": "Retrieve input-interface-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace input-interface-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/input-interface-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "input-interface-cfgs"
                  ]
                },
                "description": "Create or replace input-interface-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"input-interface-cfg\": [\n    {\n      \"if-name\": \"GigabitEthernet1/0/1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update input-interface-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/input-interface-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "input-interface-cfgs"
                  ]
                },
                "description": "Partially update input-interface-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"input-interface-cfg\": [\n    {\n      \"if-name\": \"GigabitEthernet1/0/1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete input-interface-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/input-interface-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "input-interface-cfgs"
                  ]
                },
                "description": "Remove input-interface-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get input-interface-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/input-interface-cfgs/input-interface-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "input-interface-cfgs",
                    "input-interface-cfg"
                  ]
                },
                "description": "Retrieve input-interface-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace input-interface-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/input-interface-cfgs/input-interface-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "input-interface-cfgs",
                    "input-interface-cfg"
                  ]
                },
                "description": "Create or replace input-interface-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"if-name\": \"GigabitEthernet1/0/1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update input-interface-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/input-interface-cfgs/input-interface-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "input-interface-cfgs",
                    "input-interface-cfg"
                  ]
                },
                "description": "Partially update input-interface-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"if-name\": \"GigabitEthernet1/0/1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete input-interface-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/input-interface-cfgs/input-interface-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "input-interface-cfgs",
                    "input-interface-cfg"
                  ]
                },
                "description": "Remove input-interface-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get if-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/input-interface-cfgs/input-interface-cfg/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "input-interface-cfgs",
                    "input-interface-cfg",
                    "if-name"
                  ]
                },
                "description": "Retrieve if-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace if-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/input-interface-cfgs/input-interface-cfg/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "input-interface-cfgs",
                    "input-interface-cfg",
                    "if-name"
                  ]
                },
                "description": "Create or replace if-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"GigabitEthernet1/0/1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update if-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/input-interface-cfgs/input-interface-cfg/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "input-interface-cfgs",
                    "input-interface-cfg",
                    "if-name"
                  ]
                },
                "description": "Partially update if-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"GigabitEthernet1/0/1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete if-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/input-interface-cfgs/input-interface-cfg/if-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "input-interface-cfgs",
                    "input-interface-cfg",
                    "if-name"
                  ]
                },
                "description": "Remove if-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get src-mac-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/src-mac-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "src-mac-cfgs"
                  ]
                },
                "description": "Retrieve src-mac-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace src-mac-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/src-mac-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "src-mac-cfgs"
                  ]
                },
                "description": "Create or replace src-mac-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"src-mac-cfg\": [\n    {\n      \"mac\": \"00:1a:2b:3c:4d:5e\",\n      \"mac-mask\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update src-mac-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/src-mac-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "src-mac-cfgs"
                  ]
                },
                "description": "Partially update src-mac-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"src-mac-cfg\": [\n    {\n      \"mac\": \"00:1a:2b:3c:4d:5e\",\n      \"mac-mask\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete src-mac-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/src-mac-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "src-mac-cfgs"
                  ]
                },
                "description": "Remove src-mac-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get src-mac-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/src-mac-cfgs/src-mac-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "src-mac-cfgs",
                    "src-mac-cfg"
                  ]
                },
                "description": "Retrieve src-mac-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace src-mac-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/src-mac-cfgs/src-mac-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "src-mac-cfgs",
                    "src-mac-cfg"
                  ]
                },
                "description": "Create or replace src-mac-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"mac\": \"00:1a:2b:3c:4d:5e\",\n    \"mac-mask\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update src-mac-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/src-mac-cfgs/src-mac-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "src-mac-cfgs",
                    "src-mac-cfg"
                  ]
                },
                "description": "Partially update src-mac-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"mac\": \"00:1a:2b:3c:4d:5e\",\n    \"mac-mask\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete src-mac-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/src-mac-cfgs/src-mac-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "src-mac-cfgs",
                    "src-mac-cfg"
                  ]
                },
                "description": "Remove src-mac-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/src-mac-cfgs/src-mac-cfg/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "src-mac-cfgs",
                    "src-mac-cfg",
                    "mac"
                  ]
                },
                "description": "Retrieve mac from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mac",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/src-mac-cfgs/src-mac-cfg/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "src-mac-cfgs",
                    "src-mac-cfg",
                    "mac"
                  ]
                },
                "description": "Create or replace mac on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"00:1a:2b:3c:4d:5e\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mac",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/src-mac-cfgs/src-mac-cfg/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "src-mac-cfgs",
                    "src-mac-cfg",
                    "mac"
                  ]
                },
                "description": "Partially update mac on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"00:1a:2b:3c:4d:5e\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mac",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/src-mac-cfgs/src-mac-cfg/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "src-mac-cfgs",
                    "src-mac-cfg",
                    "mac"
                  ]
                },
                "description": "Remove mac from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac-mask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/src-mac-cfgs/src-mac-cfg/mac-mask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "src-mac-cfgs",
                    "src-mac-cfg",
                    "mac-mask"
                  ]
                },
                "description": "Retrieve mac-mask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mac-mask",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/src-mac-cfgs/src-mac-cfg/mac-mask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "src-mac-cfgs",
                    "src-mac-cfg",
                    "mac-mask"
                  ]
                },
                "description": "Create or replace mac-mask on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mac-mask",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/src-mac-cfgs/src-mac-cfg/mac-mask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "src-mac-cfgs",
                    "src-mac-cfg",
                    "mac-mask"
                  ]
                },
                "description": "Partially update mac-mask on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mac-mask",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/src-mac-cfgs/src-mac-cfg/mac-mask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "src-mac-cfgs",
                    "src-mac-cfg",
                    "mac-mask"
                  ]
                },
                "description": "Remove mac-mask from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dst-mac-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dst-mac-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dst-mac-cfgs"
                  ]
                },
                "description": "Retrieve dst-mac-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dst-mac-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dst-mac-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dst-mac-cfgs"
                  ]
                },
                "description": "Create or replace dst-mac-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dst-mac-cfg\": [\n    {\n      \"mac\": \"00:1a:2b:3c:4d:5e\",\n      \"mac-mask\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dst-mac-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dst-mac-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dst-mac-cfgs"
                  ]
                },
                "description": "Partially update dst-mac-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dst-mac-cfg\": [\n    {\n      \"mac\": \"00:1a:2b:3c:4d:5e\",\n      \"mac-mask\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dst-mac-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dst-mac-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dst-mac-cfgs"
                  ]
                },
                "description": "Remove dst-mac-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dst-mac-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dst-mac-cfgs/dst-mac-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dst-mac-cfgs",
                    "dst-mac-cfg"
                  ]
                },
                "description": "Retrieve dst-mac-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dst-mac-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dst-mac-cfgs/dst-mac-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dst-mac-cfgs",
                    "dst-mac-cfg"
                  ]
                },
                "description": "Create or replace dst-mac-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"mac\": \"00:1a:2b:3c:4d:5e\",\n    \"mac-mask\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dst-mac-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dst-mac-cfgs/dst-mac-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dst-mac-cfgs",
                    "dst-mac-cfg"
                  ]
                },
                "description": "Partially update dst-mac-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"mac\": \"00:1a:2b:3c:4d:5e\",\n    \"mac-mask\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dst-mac-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dst-mac-cfgs/dst-mac-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dst-mac-cfgs",
                    "dst-mac-cfg"
                  ]
                },
                "description": "Remove dst-mac-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dst-mac-cfgs/dst-mac-cfg/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dst-mac-cfgs",
                    "dst-mac-cfg",
                    "mac"
                  ]
                },
                "description": "Retrieve mac from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mac",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dst-mac-cfgs/dst-mac-cfg/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dst-mac-cfgs",
                    "dst-mac-cfg",
                    "mac"
                  ]
                },
                "description": "Create or replace mac on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"00:1a:2b:3c:4d:5e\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mac",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dst-mac-cfgs/dst-mac-cfg/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dst-mac-cfgs",
                    "dst-mac-cfg",
                    "mac"
                  ]
                },
                "description": "Partially update mac on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"00:1a:2b:3c:4d:5e\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mac",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dst-mac-cfgs/dst-mac-cfg/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dst-mac-cfgs",
                    "dst-mac-cfg",
                    "mac"
                  ]
                },
                "description": "Remove mac from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac-mask",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dst-mac-cfgs/dst-mac-cfg/mac-mask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dst-mac-cfgs",
                    "dst-mac-cfg",
                    "mac-mask"
                  ]
                },
                "description": "Retrieve mac-mask from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mac-mask",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dst-mac-cfgs/dst-mac-cfg/mac-mask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dst-mac-cfgs",
                    "dst-mac-cfg",
                    "mac-mask"
                  ]
                },
                "description": "Create or replace mac-mask on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mac-mask",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dst-mac-cfgs/dst-mac-cfg/mac-mask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dst-mac-cfgs",
                    "dst-mac-cfg",
                    "mac-mask"
                  ]
                },
                "description": "Partially update mac-mask on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mac-mask",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dst-mac-cfgs/dst-mac-cfg/mac-mask",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dst-mac-cfgs",
                    "dst-mac-cfg",
                    "mac-mask"
                  ]
                },
                "description": "Remove mac-mask from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocol-name-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/protocol-name-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "protocol-name-cfgs"
                  ]
                },
                "description": "Retrieve protocol-name-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace protocol-name-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/protocol-name-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "protocol-name-cfgs"
                  ]
                },
                "description": "Create or replace protocol-name-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"protocol-name-cfg\": [\n    {\n      \"protocol-name\": \"example-1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update protocol-name-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/protocol-name-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "protocol-name-cfgs"
                  ]
                },
                "description": "Partially update protocol-name-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"protocol-name-cfg\": [\n    {\n      \"protocol-name\": \"example-1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete protocol-name-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/protocol-name-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "protocol-name-cfgs"
                  ]
                },
                "description": "Remove protocol-name-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocol-name-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/protocol-name-cfgs/protocol-name-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "protocol-name-cfgs",
                    "protocol-name-cfg"
                  ]
                },
                "description": "Retrieve protocol-name-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace protocol-name-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/protocol-name-cfgs/protocol-name-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "protocol-name-cfgs",
                    "protocol-name-cfg"
                  ]
                },
                "description": "Create or replace protocol-name-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"protocol-name\": \"example-1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update protocol-name-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/protocol-name-cfgs/protocol-name-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "protocol-name-cfgs",
                    "protocol-name-cfg"
                  ]
                },
                "description": "Partially update protocol-name-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"protocol-name\": \"example-1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete protocol-name-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/protocol-name-cfgs/protocol-name-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "protocol-name-cfgs",
                    "protocol-name-cfg"
                  ]
                },
                "description": "Remove protocol-name-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocol-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/protocol-name-cfgs/protocol-name-cfg/protocol-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "protocol-name-cfgs",
                    "protocol-name-cfg",
                    "protocol-name"
                  ]
                },
                "description": "Retrieve protocol-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace protocol-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/protocol-name-cfgs/protocol-name-cfg/protocol-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "protocol-name-cfgs",
                    "protocol-name-cfg",
                    "protocol-name"
                  ]
                },
                "description": "Create or replace protocol-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update protocol-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/protocol-name-cfgs/protocol-name-cfg/protocol-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "protocol-name-cfgs",
                    "protocol-name-cfg",
                    "protocol-name"
                  ]
                },
                "description": "Partially update protocol-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete protocol-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/protocol-name-cfgs/protocol-name-cfg/protocol-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "protocol-name-cfgs",
                    "protocol-name-cfg",
                    "protocol-name"
                  ]
                },
                "description": "Remove protocol-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mpls-exp-top-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-top-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-top-cfgs"
                  ]
                },
                "description": "Retrieve mpls-exp-top-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mpls-exp-top-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-top-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-top-cfgs"
                  ]
                },
                "description": "Create or replace mpls-exp-top-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mpls-exp-top-cfg\": {\n    \"exp-min\": \"configured-value\",\n    \"exp-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mpls-exp-top-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-top-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-top-cfgs"
                  ]
                },
                "description": "Partially update mpls-exp-top-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mpls-exp-top-cfg\": {\n    \"exp-min\": \"configured-value\",\n    \"exp-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mpls-exp-top-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-top-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-top-cfgs"
                  ]
                },
                "description": "Remove mpls-exp-top-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mpls-exp-top-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-top-cfgs/mpls-exp-top-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-top-cfgs",
                    "mpls-exp-top-cfg"
                  ]
                },
                "description": "Retrieve mpls-exp-top-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mpls-exp-top-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-top-cfgs/mpls-exp-top-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-top-cfgs",
                    "mpls-exp-top-cfg"
                  ]
                },
                "description": "Create or replace mpls-exp-top-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"exp-min\": \"configured-value\",\n  \"exp-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mpls-exp-top-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-top-cfgs/mpls-exp-top-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-top-cfgs",
                    "mpls-exp-top-cfg"
                  ]
                },
                "description": "Partially update mpls-exp-top-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"exp-min\": \"configured-value\",\n  \"exp-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mpls-exp-top-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-top-cfgs/mpls-exp-top-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-top-cfgs",
                    "mpls-exp-top-cfg"
                  ]
                },
                "description": "Remove mpls-exp-top-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get exp-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-top-cfgs/mpls-exp-top-cfg/exp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-top-cfgs",
                    "mpls-exp-top-cfg",
                    "exp-min"
                  ]
                },
                "description": "Retrieve exp-min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace exp-min",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-top-cfgs/mpls-exp-top-cfg/exp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-top-cfgs",
                    "mpls-exp-top-cfg",
                    "exp-min"
                  ]
                },
                "description": "Create or replace exp-min on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update exp-min",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-top-cfgs/mpls-exp-top-cfg/exp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-top-cfgs",
                    "mpls-exp-top-cfg",
                    "exp-min"
                  ]
                },
                "description": "Partially update exp-min on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete exp-min",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-top-cfgs/mpls-exp-top-cfg/exp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-top-cfgs",
                    "mpls-exp-top-cfg",
                    "exp-min"
                  ]
                },
                "description": "Remove exp-min from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get exp-max",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-top-cfgs/mpls-exp-top-cfg/exp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-top-cfgs",
                    "mpls-exp-top-cfg",
                    "exp-max"
                  ]
                },
                "description": "Retrieve exp-max from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace exp-max",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-top-cfgs/mpls-exp-top-cfg/exp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-top-cfgs",
                    "mpls-exp-top-cfg",
                    "exp-max"
                  ]
                },
                "description": "Create or replace exp-max on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update exp-max",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-top-cfgs/mpls-exp-top-cfg/exp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-top-cfgs",
                    "mpls-exp-top-cfg",
                    "exp-max"
                  ]
                },
                "description": "Partially update exp-max on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete exp-max",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-top-cfgs/mpls-exp-top-cfg/exp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-top-cfgs",
                    "mpls-exp-top-cfg",
                    "exp-max"
                  ]
                },
                "description": "Remove exp-max from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mpls-exp-imp-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-imp-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-imp-cfgs"
                  ]
                },
                "description": "Retrieve mpls-exp-imp-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mpls-exp-imp-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-imp-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-imp-cfgs"
                  ]
                },
                "description": "Create or replace mpls-exp-imp-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mpls-exp-imp-cfg\": {\n    \"exp-min\": \"configured-value\",\n    \"exp-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mpls-exp-imp-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-imp-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-imp-cfgs"
                  ]
                },
                "description": "Partially update mpls-exp-imp-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mpls-exp-imp-cfg\": {\n    \"exp-min\": \"configured-value\",\n    \"exp-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mpls-exp-imp-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-imp-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-imp-cfgs"
                  ]
                },
                "description": "Remove mpls-exp-imp-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mpls-exp-imp-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-imp-cfgs/mpls-exp-imp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-imp-cfgs",
                    "mpls-exp-imp-cfg"
                  ]
                },
                "description": "Retrieve mpls-exp-imp-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mpls-exp-imp-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-imp-cfgs/mpls-exp-imp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-imp-cfgs",
                    "mpls-exp-imp-cfg"
                  ]
                },
                "description": "Create or replace mpls-exp-imp-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"exp-min\": \"configured-value\",\n  \"exp-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mpls-exp-imp-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-imp-cfgs/mpls-exp-imp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-imp-cfgs",
                    "mpls-exp-imp-cfg"
                  ]
                },
                "description": "Partially update mpls-exp-imp-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"exp-min\": \"configured-value\",\n  \"exp-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mpls-exp-imp-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-imp-cfgs/mpls-exp-imp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-imp-cfgs",
                    "mpls-exp-imp-cfg"
                  ]
                },
                "description": "Remove mpls-exp-imp-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get exp-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-imp-cfgs/mpls-exp-imp-cfg/exp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-imp-cfgs",
                    "mpls-exp-imp-cfg",
                    "exp-min"
                  ]
                },
                "description": "Retrieve exp-min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace exp-min",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-imp-cfgs/mpls-exp-imp-cfg/exp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-imp-cfgs",
                    "mpls-exp-imp-cfg",
                    "exp-min"
                  ]
                },
                "description": "Create or replace exp-min on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update exp-min",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-imp-cfgs/mpls-exp-imp-cfg/exp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-imp-cfgs",
                    "mpls-exp-imp-cfg",
                    "exp-min"
                  ]
                },
                "description": "Partially update exp-min on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete exp-min",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-imp-cfgs/mpls-exp-imp-cfg/exp-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-imp-cfgs",
                    "mpls-exp-imp-cfg",
                    "exp-min"
                  ]
                },
                "description": "Remove exp-min from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get exp-max",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-imp-cfgs/mpls-exp-imp-cfg/exp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-imp-cfgs",
                    "mpls-exp-imp-cfg",
                    "exp-max"
                  ]
                },
                "description": "Retrieve exp-max from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace exp-max",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-imp-cfgs/mpls-exp-imp-cfg/exp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-imp-cfgs",
                    "mpls-exp-imp-cfg",
                    "exp-max"
                  ]
                },
                "description": "Create or replace exp-max on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update exp-max",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-imp-cfgs/mpls-exp-imp-cfg/exp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-imp-cfgs",
                    "mpls-exp-imp-cfg",
                    "exp-max"
                  ]
                },
                "description": "Partially update exp-max on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete exp-max",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/mpls-exp-imp-cfgs/mpls-exp-imp-cfg/exp-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "mpls-exp-imp-cfgs",
                    "mpls-exp-imp-cfg",
                    "exp-max"
                  ]
                },
                "description": "Remove exp-max from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pkt-len-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/pkt-len-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "pkt-len-cfgs"
                  ]
                },
                "description": "Retrieve pkt-len-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pkt-len-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/pkt-len-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "pkt-len-cfgs"
                  ]
                },
                "description": "Create or replace pkt-len-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"pkt-len-cfg\": {\n    \"min-pkt-len\": \"configured-value\",\n    \"max-pkt-len\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pkt-len-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/pkt-len-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "pkt-len-cfgs"
                  ]
                },
                "description": "Partially update pkt-len-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"pkt-len-cfg\": {\n    \"min-pkt-len\": \"configured-value\",\n    \"max-pkt-len\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pkt-len-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/pkt-len-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "pkt-len-cfgs"
                  ]
                },
                "description": "Remove pkt-len-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pkt-len-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/pkt-len-cfgs/pkt-len-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "pkt-len-cfgs",
                    "pkt-len-cfg"
                  ]
                },
                "description": "Retrieve pkt-len-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pkt-len-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/pkt-len-cfgs/pkt-len-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "pkt-len-cfgs",
                    "pkt-len-cfg"
                  ]
                },
                "description": "Create or replace pkt-len-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"min-pkt-len\": \"configured-value\",\n  \"max-pkt-len\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pkt-len-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/pkt-len-cfgs/pkt-len-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "pkt-len-cfgs",
                    "pkt-len-cfg"
                  ]
                },
                "description": "Partially update pkt-len-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"min-pkt-len\": \"configured-value\",\n  \"max-pkt-len\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pkt-len-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/pkt-len-cfgs/pkt-len-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "pkt-len-cfgs",
                    "pkt-len-cfg"
                  ]
                },
                "description": "Remove pkt-len-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get min-pkt-len",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/pkt-len-cfgs/pkt-len-cfg/min-pkt-len",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "pkt-len-cfgs",
                    "pkt-len-cfg",
                    "min-pkt-len"
                  ]
                },
                "description": "Retrieve min-pkt-len from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace min-pkt-len",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/pkt-len-cfgs/pkt-len-cfg/min-pkt-len",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "pkt-len-cfgs",
                    "pkt-len-cfg",
                    "min-pkt-len"
                  ]
                },
                "description": "Create or replace min-pkt-len on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update min-pkt-len",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/pkt-len-cfgs/pkt-len-cfg/min-pkt-len",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "pkt-len-cfgs",
                    "pkt-len-cfg",
                    "min-pkt-len"
                  ]
                },
                "description": "Partially update min-pkt-len on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete min-pkt-len",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/pkt-len-cfgs/pkt-len-cfg/min-pkt-len",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "pkt-len-cfgs",
                    "pkt-len-cfg",
                    "min-pkt-len"
                  ]
                },
                "description": "Remove min-pkt-len from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-pkt-len",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/pkt-len-cfgs/pkt-len-cfg/max-pkt-len",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "pkt-len-cfgs",
                    "pkt-len-cfg",
                    "max-pkt-len"
                  ]
                },
                "description": "Retrieve max-pkt-len from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace max-pkt-len",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/pkt-len-cfgs/pkt-len-cfg/max-pkt-len",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "pkt-len-cfgs",
                    "pkt-len-cfg",
                    "max-pkt-len"
                  ]
                },
                "description": "Create or replace max-pkt-len on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update max-pkt-len",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/pkt-len-cfgs/pkt-len-cfg/max-pkt-len",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "pkt-len-cfgs",
                    "pkt-len-cfg",
                    "max-pkt-len"
                  ]
                },
                "description": "Partially update max-pkt-len on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete max-pkt-len",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/pkt-len-cfgs/pkt-len-cfg/max-pkt-len",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "pkt-len-cfgs",
                    "pkt-len-cfg",
                    "max-pkt-len"
                  ]
                },
                "description": "Remove max-pkt-len from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prec",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/prec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "prec"
                  ]
                },
                "description": "Retrieve prec from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace prec",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/prec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "prec"
                  ]
                },
                "description": "Create or replace prec on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"prec-val-cfgs\": {\n    \"prec-val-cfg\": [\n      {\n        \"prec-val\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update prec",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/prec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "prec"
                  ]
                },
                "description": "Partially update prec on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"prec-val-cfgs\": {\n    \"prec-val-cfg\": [\n      {\n        \"prec-val\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete prec",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/prec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "prec"
                  ]
                },
                "description": "Remove prec from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prec-val-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/prec/prec-val-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "prec",
                    "prec-val-cfgs"
                  ]
                },
                "description": "Retrieve prec-val-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace prec-val-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/prec/prec-val-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "prec",
                    "prec-val-cfgs"
                  ]
                },
                "description": "Create or replace prec-val-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"prec-val-cfg\": [\n    {\n      \"prec-val\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update prec-val-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/prec/prec-val-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "prec",
                    "prec-val-cfgs"
                  ]
                },
                "description": "Partially update prec-val-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"prec-val-cfg\": [\n    {\n      \"prec-val\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete prec-val-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/prec/prec-val-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "prec",
                    "prec-val-cfgs"
                  ]
                },
                "description": "Remove prec-val-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prec-val-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/prec/prec-val-cfgs/prec-val-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "prec",
                    "prec-val-cfgs",
                    "prec-val-cfg"
                  ]
                },
                "description": "Retrieve prec-val-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace prec-val-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/prec/prec-val-cfgs/prec-val-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "prec",
                    "prec-val-cfgs",
                    "prec-val-cfg"
                  ]
                },
                "description": "Create or replace prec-val-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"prec-val\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update prec-val-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/prec/prec-val-cfgs/prec-val-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "prec",
                    "prec-val-cfgs",
                    "prec-val-cfg"
                  ]
                },
                "description": "Partially update prec-val-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"prec-val\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete prec-val-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/prec/prec-val-cfgs/prec-val-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "prec",
                    "prec-val-cfgs",
                    "prec-val-cfg"
                  ]
                },
                "description": "Remove prec-val-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prec-val",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/prec/prec-val-cfgs/prec-val-cfg/prec-val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "prec",
                    "prec-val-cfgs",
                    "prec-val-cfg",
                    "prec-val"
                  ]
                },
                "description": "Retrieve prec-val from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace prec-val",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/prec/prec-val-cfgs/prec-val-cfg/prec-val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "prec",
                    "prec-val-cfgs",
                    "prec-val-cfg",
                    "prec-val"
                  ]
                },
                "description": "Create or replace prec-val on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update prec-val",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/prec/prec-val-cfgs/prec-val-cfg/prec-val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "prec",
                    "prec-val-cfgs",
                    "prec-val-cfg",
                    "prec-val"
                  ]
                },
                "description": "Partially update prec-val on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete prec-val",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/prec/prec-val-cfgs/prec-val-cfg/prec-val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "prec",
                    "prec-val-cfgs",
                    "prec-val-cfg",
                    "prec-val"
                  ]
                },
                "description": "Remove prec-val from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qos-group-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/qos-group-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "qos-group-cfgs"
                  ]
                },
                "description": "Retrieve qos-group-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace qos-group-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/qos-group-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "qos-group-cfgs"
                  ]
                },
                "description": "Create or replace qos-group-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"qos-group-cfg\": {\n    \"qos-group-min\": \"configured-value\",\n    \"qos-group-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update qos-group-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/qos-group-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "qos-group-cfgs"
                  ]
                },
                "description": "Partially update qos-group-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"qos-group-cfg\": {\n    \"qos-group-min\": \"configured-value\",\n    \"qos-group-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete qos-group-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/qos-group-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "qos-group-cfgs"
                  ]
                },
                "description": "Remove qos-group-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qos-group-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/qos-group-cfgs/qos-group-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "qos-group-cfgs",
                    "qos-group-cfg"
                  ]
                },
                "description": "Retrieve qos-group-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace qos-group-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/qos-group-cfgs/qos-group-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "qos-group-cfgs",
                    "qos-group-cfg"
                  ]
                },
                "description": "Create or replace qos-group-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"qos-group-min\": \"configured-value\",\n  \"qos-group-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update qos-group-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/qos-group-cfgs/qos-group-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "qos-group-cfgs",
                    "qos-group-cfg"
                  ]
                },
                "description": "Partially update qos-group-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"qos-group-min\": \"configured-value\",\n  \"qos-group-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete qos-group-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/qos-group-cfgs/qos-group-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "qos-group-cfgs",
                    "qos-group-cfg"
                  ]
                },
                "description": "Remove qos-group-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qos-group-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/qos-group-cfgs/qos-group-cfg/qos-group-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "qos-group-cfgs",
                    "qos-group-cfg",
                    "qos-group-min"
                  ]
                },
                "description": "Retrieve qos-group-min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace qos-group-min",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/qos-group-cfgs/qos-group-cfg/qos-group-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "qos-group-cfgs",
                    "qos-group-cfg",
                    "qos-group-min"
                  ]
                },
                "description": "Create or replace qos-group-min on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update qos-group-min",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/qos-group-cfgs/qos-group-cfg/qos-group-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "qos-group-cfgs",
                    "qos-group-cfg",
                    "qos-group-min"
                  ]
                },
                "description": "Partially update qos-group-min on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete qos-group-min",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/qos-group-cfgs/qos-group-cfg/qos-group-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "qos-group-cfgs",
                    "qos-group-cfg",
                    "qos-group-min"
                  ]
                },
                "description": "Remove qos-group-min from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get qos-group-max",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/qos-group-cfgs/qos-group-cfg/qos-group-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "qos-group-cfgs",
                    "qos-group-cfg",
                    "qos-group-max"
                  ]
                },
                "description": "Retrieve qos-group-max from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace qos-group-max",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/qos-group-cfgs/qos-group-cfg/qos-group-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "qos-group-cfgs",
                    "qos-group-cfg",
                    "qos-group-max"
                  ]
                },
                "description": "Create or replace qos-group-max on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update qos-group-max",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/qos-group-cfgs/qos-group-cfg/qos-group-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "qos-group-cfgs",
                    "qos-group-cfg",
                    "qos-group-max"
                  ]
                },
                "description": "Partially update qos-group-max on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete qos-group-max",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/qos-group-cfgs/qos-group-cfg/qos-group-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "qos-group-cfgs",
                    "qos-group-cfg",
                    "qos-group-max"
                  ]
                },
                "description": "Remove qos-group-max from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlan-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-cfgs"
                  ]
                },
                "description": "Retrieve vlan-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vlan-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-cfgs"
                  ]
                },
                "description": "Create or replace vlan-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vlan-cfg\": {\n    \"vlan-min\": \"configured-value\",\n    \"vlan-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vlan-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-cfgs"
                  ]
                },
                "description": "Partially update vlan-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vlan-cfg\": {\n    \"vlan-min\": \"configured-value\",\n    \"vlan-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vlan-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-cfgs"
                  ]
                },
                "description": "Remove vlan-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlan-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-cfgs/vlan-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-cfgs",
                    "vlan-cfg"
                  ]
                },
                "description": "Retrieve vlan-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vlan-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-cfgs/vlan-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-cfgs",
                    "vlan-cfg"
                  ]
                },
                "description": "Create or replace vlan-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vlan-min\": \"configured-value\",\n  \"vlan-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vlan-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-cfgs/vlan-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-cfgs",
                    "vlan-cfg"
                  ]
                },
                "description": "Partially update vlan-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vlan-min\": \"configured-value\",\n  \"vlan-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vlan-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-cfgs/vlan-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-cfgs",
                    "vlan-cfg"
                  ]
                },
                "description": "Remove vlan-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlan-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-cfgs/vlan-cfg/vlan-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-cfgs",
                    "vlan-cfg",
                    "vlan-min"
                  ]
                },
                "description": "Retrieve vlan-min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vlan-min",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-cfgs/vlan-cfg/vlan-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-cfgs",
                    "vlan-cfg",
                    "vlan-min"
                  ]
                },
                "description": "Create or replace vlan-min on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vlan-min",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-cfgs/vlan-cfg/vlan-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-cfgs",
                    "vlan-cfg",
                    "vlan-min"
                  ]
                },
                "description": "Partially update vlan-min on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vlan-min",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-cfgs/vlan-cfg/vlan-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-cfgs",
                    "vlan-cfg",
                    "vlan-min"
                  ]
                },
                "description": "Remove vlan-min from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlan-max",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-cfgs/vlan-cfg/vlan-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-cfgs",
                    "vlan-cfg",
                    "vlan-max"
                  ]
                },
                "description": "Retrieve vlan-max from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vlan-max",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-cfgs/vlan-cfg/vlan-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-cfgs",
                    "vlan-cfg",
                    "vlan-max"
                  ]
                },
                "description": "Create or replace vlan-max on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vlan-max",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-cfgs/vlan-cfg/vlan-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-cfgs",
                    "vlan-cfg",
                    "vlan-max"
                  ]
                },
                "description": "Partially update vlan-max on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vlan-max",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-cfgs/vlan-cfg/vlan-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-cfgs",
                    "vlan-cfg",
                    "vlan-max"
                  ]
                },
                "description": "Remove vlan-max from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlan-inner-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-inner-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-inner-cfgs"
                  ]
                },
                "description": "Retrieve vlan-inner-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vlan-inner-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-inner-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-inner-cfgs"
                  ]
                },
                "description": "Create or replace vlan-inner-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vlan-inner-cfg\": {\n    \"vlan-min\": \"configured-value\",\n    \"vlan-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vlan-inner-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-inner-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-inner-cfgs"
                  ]
                },
                "description": "Partially update vlan-inner-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vlan-inner-cfg\": {\n    \"vlan-min\": \"configured-value\",\n    \"vlan-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vlan-inner-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-inner-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-inner-cfgs"
                  ]
                },
                "description": "Remove vlan-inner-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlan-inner-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-inner-cfgs/vlan-inner-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-inner-cfgs",
                    "vlan-inner-cfg"
                  ]
                },
                "description": "Retrieve vlan-inner-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vlan-inner-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-inner-cfgs/vlan-inner-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-inner-cfgs",
                    "vlan-inner-cfg"
                  ]
                },
                "description": "Create or replace vlan-inner-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vlan-min\": \"configured-value\",\n  \"vlan-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vlan-inner-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-inner-cfgs/vlan-inner-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-inner-cfgs",
                    "vlan-inner-cfg"
                  ]
                },
                "description": "Partially update vlan-inner-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vlan-min\": \"configured-value\",\n  \"vlan-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vlan-inner-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-inner-cfgs/vlan-inner-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-inner-cfgs",
                    "vlan-inner-cfg"
                  ]
                },
                "description": "Remove vlan-inner-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlan-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-inner-cfgs/vlan-inner-cfg/vlan-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-inner-cfgs",
                    "vlan-inner-cfg",
                    "vlan-min"
                  ]
                },
                "description": "Retrieve vlan-min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vlan-min",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-inner-cfgs/vlan-inner-cfg/vlan-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-inner-cfgs",
                    "vlan-inner-cfg",
                    "vlan-min"
                  ]
                },
                "description": "Create or replace vlan-min on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vlan-min",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-inner-cfgs/vlan-inner-cfg/vlan-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-inner-cfgs",
                    "vlan-inner-cfg",
                    "vlan-min"
                  ]
                },
                "description": "Partially update vlan-min on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vlan-min",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-inner-cfgs/vlan-inner-cfg/vlan-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-inner-cfgs",
                    "vlan-inner-cfg",
                    "vlan-min"
                  ]
                },
                "description": "Remove vlan-min from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vlan-max",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-inner-cfgs/vlan-inner-cfg/vlan-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-inner-cfgs",
                    "vlan-inner-cfg",
                    "vlan-max"
                  ]
                },
                "description": "Retrieve vlan-max from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vlan-max",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-inner-cfgs/vlan-inner-cfg/vlan-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-inner-cfgs",
                    "vlan-inner-cfg",
                    "vlan-max"
                  ]
                },
                "description": "Create or replace vlan-max on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vlan-max",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-inner-cfgs/vlan-inner-cfg/vlan-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-inner-cfgs",
                    "vlan-inner-cfg",
                    "vlan-max"
                  ]
                },
                "description": "Partially update vlan-max on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vlan-max",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vlan-inner-cfgs/vlan-inner-cfg/vlan-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vlan-inner-cfgs",
                    "vlan-inner-cfg",
                    "vlan-max"
                  ]
                },
                "description": "Remove vlan-max from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atm-clp-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-clp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-clp-cfg"
                  ]
                },
                "description": "Retrieve atm-clp-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace atm-clp-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-clp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-clp-cfg"
                  ]
                },
                "description": "Create or replace atm-clp-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"atm-clp\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update atm-clp-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-clp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-clp-cfg"
                  ]
                },
                "description": "Partially update atm-clp-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"atm-clp\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete atm-clp-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-clp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-clp-cfg"
                  ]
                },
                "description": "Remove atm-clp-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atm-clp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-clp-cfg/atm-clp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-clp-cfg",
                    "atm-clp"
                  ]
                },
                "description": "Retrieve atm-clp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace atm-clp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-clp-cfg/atm-clp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-clp-cfg",
                    "atm-clp"
                  ]
                },
                "description": "Create or replace atm-clp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update atm-clp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-clp-cfg/atm-clp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-clp-cfg",
                    "atm-clp"
                  ]
                },
                "description": "Partially update atm-clp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete atm-clp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-clp-cfg/atm-clp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-clp-cfg",
                    "atm-clp"
                  ]
                },
                "description": "Remove atm-clp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atm-vci-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-vci-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-vci-cfgs"
                  ]
                },
                "description": "Retrieve atm-vci-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace atm-vci-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-vci-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-vci-cfgs"
                  ]
                },
                "description": "Create or replace atm-vci-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"atm-vci-cfg\": {\n    \"atm-vci-min\": 1,\n    \"atm-vci-max\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update atm-vci-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-vci-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-vci-cfgs"
                  ]
                },
                "description": "Partially update atm-vci-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"atm-vci-cfg\": {\n    \"atm-vci-min\": 1,\n    \"atm-vci-max\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete atm-vci-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-vci-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-vci-cfgs"
                  ]
                },
                "description": "Remove atm-vci-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atm-vci-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-vci-cfgs/atm-vci-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-vci-cfgs",
                    "atm-vci-cfg"
                  ]
                },
                "description": "Retrieve atm-vci-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace atm-vci-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-vci-cfgs/atm-vci-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-vci-cfgs",
                    "atm-vci-cfg"
                  ]
                },
                "description": "Create or replace atm-vci-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"atm-vci-min\": 1,\n  \"atm-vci-max\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update atm-vci-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-vci-cfgs/atm-vci-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-vci-cfgs",
                    "atm-vci-cfg"
                  ]
                },
                "description": "Partially update atm-vci-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"atm-vci-min\": 1,\n  \"atm-vci-max\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete atm-vci-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-vci-cfgs/atm-vci-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-vci-cfgs",
                    "atm-vci-cfg"
                  ]
                },
                "description": "Remove atm-vci-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atm-vci-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-vci-cfgs/atm-vci-cfg/atm-vci-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-vci-cfgs",
                    "atm-vci-cfg",
                    "atm-vci-min"
                  ]
                },
                "description": "Retrieve atm-vci-min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace atm-vci-min",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-vci-cfgs/atm-vci-cfg/atm-vci-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-vci-cfgs",
                    "atm-vci-cfg",
                    "atm-vci-min"
                  ]
                },
                "description": "Create or replace atm-vci-min on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update atm-vci-min",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-vci-cfgs/atm-vci-cfg/atm-vci-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-vci-cfgs",
                    "atm-vci-cfg",
                    "atm-vci-min"
                  ]
                },
                "description": "Partially update atm-vci-min on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete atm-vci-min",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-vci-cfgs/atm-vci-cfg/atm-vci-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-vci-cfgs",
                    "atm-vci-cfg",
                    "atm-vci-min"
                  ]
                },
                "description": "Remove atm-vci-min from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get atm-vci-max",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-vci-cfgs/atm-vci-cfg/atm-vci-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-vci-cfgs",
                    "atm-vci-cfg",
                    "atm-vci-max"
                  ]
                },
                "description": "Retrieve atm-vci-max from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace atm-vci-max",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-vci-cfgs/atm-vci-cfg/atm-vci-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-vci-cfgs",
                    "atm-vci-cfg",
                    "atm-vci-max"
                  ]
                },
                "description": "Create or replace atm-vci-max on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update atm-vci-max",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-vci-cfgs/atm-vci-cfg/atm-vci-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-vci-cfgs",
                    "atm-vci-cfg",
                    "atm-vci-max"
                  ]
                },
                "description": "Partially update atm-vci-max on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete atm-vci-max",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/atm-vci-cfgs/atm-vci-cfg/atm-vci-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "atm-vci-cfgs",
                    "atm-vci-cfg",
                    "atm-vci-max"
                  ]
                },
                "description": "Remove atm-vci-max from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dei-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dei-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dei-cfg"
                  ]
                },
                "description": "Retrieve dei-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dei-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dei-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dei-cfg"
                  ]
                },
                "description": "Create or replace dei-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dei-cfg\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dei-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dei-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dei-cfg"
                  ]
                },
                "description": "Partially update dei-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dei-cfg\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dei-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dei-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dei-cfg"
                  ]
                },
                "description": "Remove dei-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dei-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dei-cfg/dei-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dei-cfg",
                    "dei-cfg"
                  ]
                },
                "description": "Retrieve dei-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dei-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dei-cfg/dei-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dei-cfg",
                    "dei-cfg"
                  ]
                },
                "description": "Create or replace dei-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dei-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dei-cfg/dei-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dei-cfg",
                    "dei-cfg"
                  ]
                },
                "description": "Partially update dei-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dei-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dei-cfg/dei-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dei-cfg",
                    "dei-cfg"
                  ]
                },
                "description": "Remove dei-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dei-inner-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dei-inner-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dei-inner-cfg"
                  ]
                },
                "description": "Retrieve dei-inner-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dei-inner-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dei-inner-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dei-inner-cfg"
                  ]
                },
                "description": "Create or replace dei-inner-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dei-cfg\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dei-inner-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dei-inner-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dei-inner-cfg"
                  ]
                },
                "description": "Partially update dei-inner-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dei-cfg\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dei-inner-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dei-inner-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dei-inner-cfg"
                  ]
                },
                "description": "Remove dei-inner-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dei-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dei-inner-cfg/dei-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dei-inner-cfg",
                    "dei-cfg"
                  ]
                },
                "description": "Retrieve dei-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dei-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dei-inner-cfg/dei-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dei-inner-cfg",
                    "dei-cfg"
                  ]
                },
                "description": "Create or replace dei-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dei-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dei-inner-cfg/dei-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dei-inner-cfg",
                    "dei-cfg"
                  ]
                },
                "description": "Partially update dei-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dei-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/dei-inner-cfg/dei-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "dei-inner-cfg",
                    "dei-cfg"
                  ]
                },
                "description": "Remove dei-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get flow-ip-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg"
                  ]
                },
                "description": "Retrieve flow-ip-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace flow-ip-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg"
                  ]
                },
                "description": "Create or replace flow-ip-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"flow-src-ip\": \"configured-value\",\n  \"flow-dst-ip\": \"configured-value\",\n  \"protocol\": \"tcp\",\n  \"src-port\": \"443\",\n  \"dst-port\": \"443\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update flow-ip-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg"
                  ]
                },
                "description": "Partially update flow-ip-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"flow-src-ip\": \"configured-value\",\n  \"flow-dst-ip\": \"configured-value\",\n  \"protocol\": \"tcp\",\n  \"src-port\": \"443\",\n  \"dst-port\": \"443\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete flow-ip-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg"
                  ]
                },
                "description": "Remove flow-ip-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get flow-src-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/flow-src-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "flow-src-ip"
                  ]
                },
                "description": "Retrieve flow-src-ip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace flow-src-ip",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/flow-src-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "flow-src-ip"
                  ]
                },
                "description": "Create or replace flow-src-ip on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update flow-src-ip",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/flow-src-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "flow-src-ip"
                  ]
                },
                "description": "Partially update flow-src-ip on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete flow-src-ip",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/flow-src-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "flow-src-ip"
                  ]
                },
                "description": "Remove flow-src-ip from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get flow-dst-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/flow-dst-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "flow-dst-ip"
                  ]
                },
                "description": "Retrieve flow-dst-ip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace flow-dst-ip",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/flow-dst-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "flow-dst-ip"
                  ]
                },
                "description": "Create or replace flow-dst-ip on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update flow-dst-ip",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/flow-dst-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "flow-dst-ip"
                  ]
                },
                "description": "Partially update flow-dst-ip on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete flow-dst-ip",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/flow-dst-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "flow-dst-ip"
                  ]
                },
                "description": "Remove flow-dst-ip from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get protocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "protocol"
                  ]
                },
                "description": "Retrieve protocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace protocol",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "protocol"
                  ]
                },
                "description": "Create or replace protocol on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"tcp\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update protocol",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "protocol"
                  ]
                },
                "description": "Partially update protocol on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"tcp\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete protocol",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "protocol"
                  ]
                },
                "description": "Remove protocol from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get src-port",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/src-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "src-port"
                  ]
                },
                "description": "Retrieve src-port from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace src-port",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/src-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "src-port"
                  ]
                },
                "description": "Create or replace src-port on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"443\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update src-port",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/src-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "src-port"
                  ]
                },
                "description": "Partially update src-port on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"443\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete src-port",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/src-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "src-port"
                  ]
                },
                "description": "Remove src-port from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dst-port",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/dst-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "dst-port"
                  ]
                },
                "description": "Retrieve dst-port from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dst-port",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/dst-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "dst-port"
                  ]
                },
                "description": "Create or replace dst-port on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"443\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dst-port",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/dst-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "dst-port"
                  ]
                },
                "description": "Partially update dst-port on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"443\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dst-port",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-ip-cfg/dst-port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-ip-cfg",
                    "dst-port"
                  ]
                },
                "description": "Remove dst-port from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get flow-record-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-record-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-record-cfg"
                  ]
                },
                "description": "Retrieve flow-record-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace flow-record-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-record-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-record-cfg"
                  ]
                },
                "description": "Create or replace flow-record-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"flow-record-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update flow-record-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-record-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-record-cfg"
                  ]
                },
                "description": "Partially update flow-record-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"flow-record-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete flow-record-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-record-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-record-cfg"
                  ]
                },
                "description": "Remove flow-record-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get flow-record-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-record-cfg/flow-record-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-record-cfg",
                    "flow-record-name"
                  ]
                },
                "description": "Retrieve flow-record-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace flow-record-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-record-cfg/flow-record-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-record-cfg",
                    "flow-record-name"
                  ]
                },
                "description": "Create or replace flow-record-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update flow-record-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-record-cfg/flow-record-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-record-cfg",
                    "flow-record-name"
                  ]
                },
                "description": "Partially update flow-record-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete flow-record-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/flow-record-cfg/flow-record-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "flow-record-cfg",
                    "flow-record-name"
                  ]
                },
                "description": "Remove flow-record-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get fr-de-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-de-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-de-cfg"
                  ]
                },
                "description": "Retrieve fr-de-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace fr-de-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-de-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-de-cfg"
                  ]
                },
                "description": "Create or replace fr-de-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"fr-de-val\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update fr-de-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-de-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-de-cfg"
                  ]
                },
                "description": "Partially update fr-de-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"fr-de-val\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete fr-de-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-de-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-de-cfg"
                  ]
                },
                "description": "Remove fr-de-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get fr-de-val",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-de-cfg/fr-de-val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-de-cfg",
                    "fr-de-val"
                  ]
                },
                "description": "Retrieve fr-de-val from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace fr-de-val",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-de-cfg/fr-de-val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-de-cfg",
                    "fr-de-val"
                  ]
                },
                "description": "Create or replace fr-de-val on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update fr-de-val",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-de-cfg/fr-de-val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-de-cfg",
                    "fr-de-val"
                  ]
                },
                "description": "Partially update fr-de-val on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete fr-de-val",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-de-cfg/fr-de-val",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-de-cfg",
                    "fr-de-val"
                  ]
                },
                "description": "Remove fr-de-val from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get fr-dlci-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-dlci-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-dlci-cfgs"
                  ]
                },
                "description": "Retrieve fr-dlci-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace fr-dlci-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-dlci-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-dlci-cfgs"
                  ]
                },
                "description": "Create or replace fr-dlci-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"fr-dlci-cfg\": {\n    \"dlci-min\": 1,\n    \"dlci-max\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update fr-dlci-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-dlci-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-dlci-cfgs"
                  ]
                },
                "description": "Partially update fr-dlci-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"fr-dlci-cfg\": {\n    \"dlci-min\": 1,\n    \"dlci-max\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete fr-dlci-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-dlci-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-dlci-cfgs"
                  ]
                },
                "description": "Remove fr-dlci-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get fr-dlci-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-dlci-cfgs/fr-dlci-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-dlci-cfgs",
                    "fr-dlci-cfg"
                  ]
                },
                "description": "Retrieve fr-dlci-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace fr-dlci-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-dlci-cfgs/fr-dlci-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-dlci-cfgs",
                    "fr-dlci-cfg"
                  ]
                },
                "description": "Create or replace fr-dlci-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dlci-min\": 1,\n  \"dlci-max\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update fr-dlci-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-dlci-cfgs/fr-dlci-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-dlci-cfgs",
                    "fr-dlci-cfg"
                  ]
                },
                "description": "Partially update fr-dlci-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dlci-min\": 1,\n  \"dlci-max\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete fr-dlci-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-dlci-cfgs/fr-dlci-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-dlci-cfgs",
                    "fr-dlci-cfg"
                  ]
                },
                "description": "Remove fr-dlci-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dlci-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-dlci-cfgs/fr-dlci-cfg/dlci-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-dlci-cfgs",
                    "fr-dlci-cfg",
                    "dlci-min"
                  ]
                },
                "description": "Retrieve dlci-min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dlci-min",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-dlci-cfgs/fr-dlci-cfg/dlci-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-dlci-cfgs",
                    "fr-dlci-cfg",
                    "dlci-min"
                  ]
                },
                "description": "Create or replace dlci-min on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dlci-min",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-dlci-cfgs/fr-dlci-cfg/dlci-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-dlci-cfgs",
                    "fr-dlci-cfg",
                    "dlci-min"
                  ]
                },
                "description": "Partially update dlci-min on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dlci-min",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-dlci-cfgs/fr-dlci-cfg/dlci-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-dlci-cfgs",
                    "fr-dlci-cfg",
                    "dlci-min"
                  ]
                },
                "description": "Remove dlci-min from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dlci-max",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-dlci-cfgs/fr-dlci-cfg/dlci-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-dlci-cfgs",
                    "fr-dlci-cfg",
                    "dlci-max"
                  ]
                },
                "description": "Retrieve dlci-max from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dlci-max",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-dlci-cfgs/fr-dlci-cfg/dlci-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-dlci-cfgs",
                    "fr-dlci-cfg",
                    "dlci-max"
                  ]
                },
                "description": "Create or replace dlci-max on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dlci-max",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-dlci-cfgs/fr-dlci-cfg/dlci-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-dlci-cfgs",
                    "fr-dlci-cfg",
                    "dlci-max"
                  ]
                },
                "description": "Partially update dlci-max on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dlci-max",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/fr-dlci-cfgs/fr-dlci-cfg/dlci-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "fr-dlci-cfgs",
                    "fr-dlci-cfg",
                    "dlci-max"
                  ]
                },
                "description": "Remove dlci-max from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get wlan-user-priority-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/wlan-user-priority-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "wlan-user-priority-cfgs"
                  ]
                },
                "description": "Retrieve wlan-user-priority-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace wlan-user-priority-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/wlan-user-priority-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "wlan-user-priority-cfgs"
                  ]
                },
                "description": "Create or replace wlan-user-priority-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"wlan-user-priority-cfg\": {\n    \"wlan-prio-min\": \"configured-value\",\n    \"wlan-prio-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update wlan-user-priority-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/wlan-user-priority-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "wlan-user-priority-cfgs"
                  ]
                },
                "description": "Partially update wlan-user-priority-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"wlan-user-priority-cfg\": {\n    \"wlan-prio-min\": \"configured-value\",\n    \"wlan-prio-max\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete wlan-user-priority-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/wlan-user-priority-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "wlan-user-priority-cfgs"
                  ]
                },
                "description": "Remove wlan-user-priority-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get wlan-user-priority-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/wlan-user-priority-cfgs/wlan-user-priority-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "wlan-user-priority-cfgs",
                    "wlan-user-priority-cfg"
                  ]
                },
                "description": "Retrieve wlan-user-priority-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace wlan-user-priority-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/wlan-user-priority-cfgs/wlan-user-priority-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "wlan-user-priority-cfgs",
                    "wlan-user-priority-cfg"
                  ]
                },
                "description": "Create or replace wlan-user-priority-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"wlan-prio-min\": \"configured-value\",\n  \"wlan-prio-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update wlan-user-priority-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/wlan-user-priority-cfgs/wlan-user-priority-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "wlan-user-priority-cfgs",
                    "wlan-user-priority-cfg"
                  ]
                },
                "description": "Partially update wlan-user-priority-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"wlan-prio-min\": \"configured-value\",\n  \"wlan-prio-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete wlan-user-priority-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/wlan-user-priority-cfgs/wlan-user-priority-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "wlan-user-priority-cfgs",
                    "wlan-user-priority-cfg"
                  ]
                },
                "description": "Remove wlan-user-priority-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get wlan-prio-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/wlan-user-priority-cfgs/wlan-user-priority-cfg/wlan-prio-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "wlan-user-priority-cfgs",
                    "wlan-user-priority-cfg",
                    "wlan-prio-min"
                  ]
                },
                "description": "Retrieve wlan-prio-min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace wlan-prio-min",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/wlan-user-priority-cfgs/wlan-user-priority-cfg/wlan-prio-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "wlan-user-priority-cfgs",
                    "wlan-user-priority-cfg",
                    "wlan-prio-min"
                  ]
                },
                "description": "Create or replace wlan-prio-min on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update wlan-prio-min",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/wlan-user-priority-cfgs/wlan-user-priority-cfg/wlan-prio-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "wlan-user-priority-cfgs",
                    "wlan-user-priority-cfg",
                    "wlan-prio-min"
                  ]
                },
                "description": "Partially update wlan-prio-min on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete wlan-prio-min",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/wlan-user-priority-cfgs/wlan-user-priority-cfg/wlan-prio-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "wlan-user-priority-cfgs",
                    "wlan-user-priority-cfg",
                    "wlan-prio-min"
                  ]
                },
                "description": "Remove wlan-prio-min from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get wlan-prio-max",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/wlan-user-priority-cfgs/wlan-user-priority-cfg/wlan-prio-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "wlan-user-priority-cfgs",
                    "wlan-user-priority-cfg",
                    "wlan-prio-max"
                  ]
                },
                "description": "Retrieve wlan-prio-max from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace wlan-prio-max",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/wlan-user-priority-cfgs/wlan-user-priority-cfg/wlan-prio-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "wlan-user-priority-cfgs",
                    "wlan-user-priority-cfg",
                    "wlan-prio-max"
                  ]
                },
                "description": "Create or replace wlan-prio-max on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update wlan-prio-max",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/wlan-user-priority-cfgs/wlan-user-priority-cfg/wlan-prio-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "wlan-user-priority-cfgs",
                    "wlan-user-priority-cfg",
                    "wlan-prio-max"
                  ]
                },
                "description": "Partially update wlan-prio-max on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete wlan-prio-max",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/wlan-user-priority-cfgs/wlan-user-priority-cfg/wlan-prio-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "wlan-user-priority-cfgs",
                    "wlan-user-priority-cfg",
                    "wlan-prio-max"
                  ]
                },
                "description": "Remove wlan-prio-max from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get discard-class-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/discard-class-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "discard-class-cfgs"
                  ]
                },
                "description": "Retrieve discard-class-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace discard-class-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/discard-class-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "discard-class-cfgs"
                  ]
                },
                "description": "Create or replace discard-class-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"discard-class-cfg\": [\n    {\n      \"discard-class\": \"0\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update discard-class-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/discard-class-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "discard-class-cfgs"
                  ]
                },
                "description": "Partially update discard-class-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"discard-class-cfg\": [\n    {\n      \"discard-class\": \"0\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete discard-class-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/discard-class-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "discard-class-cfgs"
                  ]
                },
                "description": "Remove discard-class-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get discard-class-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/discard-class-cfgs/discard-class-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "discard-class-cfgs",
                    "discard-class-cfg"
                  ]
                },
                "description": "Retrieve discard-class-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace discard-class-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/discard-class-cfgs/discard-class-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "discard-class-cfgs",
                    "discard-class-cfg"
                  ]
                },
                "description": "Create or replace discard-class-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"discard-class\": \"0\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update discard-class-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/discard-class-cfgs/discard-class-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "discard-class-cfgs",
                    "discard-class-cfg"
                  ]
                },
                "description": "Partially update discard-class-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"discard-class\": \"0\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete discard-class-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/discard-class-cfgs/discard-class-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "discard-class-cfgs",
                    "discard-class-cfg"
                  ]
                },
                "description": "Remove discard-class-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get discard-class",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/discard-class-cfgs/discard-class-cfg/discard-class",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "discard-class-cfgs",
                    "discard-class-cfg",
                    "discard-class"
                  ]
                },
                "description": "Retrieve discard-class from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace discard-class",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/discard-class-cfgs/discard-class-cfg/discard-class",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "discard-class-cfgs",
                    "discard-class-cfg",
                    "discard-class"
                  ]
                },
                "description": "Create or replace discard-class on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"0\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update discard-class",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/discard-class-cfgs/discard-class-cfg/discard-class",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "discard-class-cfgs",
                    "discard-class-cfg",
                    "discard-class"
                  ]
                },
                "description": "Partially update discard-class on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"0\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete discard-class",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/discard-class-cfgs/discard-class-cfg/discard-class",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "discard-class-cfgs",
                    "discard-class-cfg",
                    "discard-class"
                  ]
                },
                "description": "Remove discard-class from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get class-map-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/class-map-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "class-map-cfgs"
                  ]
                },
                "description": "Retrieve class-map-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace class-map-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/class-map-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "class-map-cfgs"
                  ]
                },
                "description": "Create or replace class-map-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"class-map-cfg\": [\n    {\n      \"class-map-name\": \"example-1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update class-map-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/class-map-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "class-map-cfgs"
                  ]
                },
                "description": "Partially update class-map-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"class-map-cfg\": [\n    {\n      \"class-map-name\": \"example-1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete class-map-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/class-map-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "class-map-cfgs"
                  ]
                },
                "description": "Remove class-map-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get class-map-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/class-map-cfgs/class-map-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "class-map-cfgs",
                    "class-map-cfg"
                  ]
                },
                "description": "Retrieve class-map-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace class-map-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/class-map-cfgs/class-map-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "class-map-cfgs",
                    "class-map-cfg"
                  ]
                },
                "description": "Create or replace class-map-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"class-map-name\": \"example-1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update class-map-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/class-map-cfgs/class-map-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "class-map-cfgs",
                    "class-map-cfg"
                  ]
                },
                "description": "Partially update class-map-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"class-map-name\": \"example-1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete class-map-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/class-map-cfgs/class-map-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "class-map-cfgs",
                    "class-map-cfg"
                  ]
                },
                "description": "Remove class-map-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get class-map-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/class-map-cfgs/class-map-cfg/class-map-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "class-map-cfgs",
                    "class-map-cfg",
                    "class-map-name"
                  ]
                },
                "description": "Retrieve class-map-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace class-map-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/class-map-cfgs/class-map-cfg/class-map-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "class-map-cfgs",
                    "class-map-cfg",
                    "class-map-name"
                  ]
                },
                "description": "Create or replace class-map-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update class-map-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/class-map-cfgs/class-map-cfg/class-map-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "class-map-cfgs",
                    "class-map-cfg",
                    "class-map-name"
                  ]
                },
                "description": "Partially update class-map-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete class-map-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/class-map-cfgs/class-map-cfg/class-map-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "class-map-cfgs",
                    "class-map-cfg",
                    "class-map-name"
                  ]
                },
                "description": "Remove class-map-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get metadata-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg"
                  ]
                },
                "description": "Retrieve metadata-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace metadata-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg"
                  ]
                },
                "description": "Create or replace metadata-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cac\": \"configured-value\",\n  \"called-uri\": \"https://10.1.1.1/restconf\",\n  \"calling-uri\": \"https://10.1.1.1/restconf\",\n  \"device-model\": \"configured-value\",\n  \"global-session-id\": \"1\",\n  \"multi-party-session-id\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update metadata-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg"
                  ]
                },
                "description": "Partially update metadata-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"cac\": \"configured-value\",\n  \"called-uri\": \"https://10.1.1.1/restconf\",\n  \"calling-uri\": \"https://10.1.1.1/restconf\",\n  \"device-model\": \"configured-value\",\n  \"global-session-id\": \"1\",\n  \"multi-party-session-id\": \"1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete metadata-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg"
                  ]
                },
                "description": "Remove metadata-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/cac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "cac"
                  ]
                },
                "description": "Retrieve cac from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cac",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/cac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "cac"
                  ]
                },
                "description": "Create or replace cac on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cac",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/cac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "cac"
                  ]
                },
                "description": "Partially update cac on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cac",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/cac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "cac"
                  ]
                },
                "description": "Remove cac from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get called-uri",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/called-uri",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "called-uri"
                  ]
                },
                "description": "Retrieve called-uri from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace called-uri",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/called-uri",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "called-uri"
                  ]
                },
                "description": "Create or replace called-uri on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update called-uri",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/called-uri",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "called-uri"
                  ]
                },
                "description": "Partially update called-uri on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete called-uri",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/called-uri",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "called-uri"
                  ]
                },
                "description": "Remove called-uri from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get calling-uri",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/calling-uri",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "calling-uri"
                  ]
                },
                "description": "Retrieve calling-uri from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace calling-uri",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/calling-uri",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "calling-uri"
                  ]
                },
                "description": "Create or replace calling-uri on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update calling-uri",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/calling-uri",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "calling-uri"
                  ]
                },
                "description": "Partially update calling-uri on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete calling-uri",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/calling-uri",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "calling-uri"
                  ]
                },
                "description": "Remove calling-uri from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get device-model",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/device-model",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "device-model"
                  ]
                },
                "description": "Retrieve device-model from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace device-model",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/device-model",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "device-model"
                  ]
                },
                "description": "Create or replace device-model on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update device-model",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/device-model",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "device-model"
                  ]
                },
                "description": "Partially update device-model on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete device-model",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/device-model",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "device-model"
                  ]
                },
                "description": "Remove device-model from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get global-session-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/global-session-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "global-session-id"
                  ]
                },
                "description": "Retrieve global-session-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace global-session-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/global-session-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "global-session-id"
                  ]
                },
                "description": "Create or replace global-session-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update global-session-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/global-session-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "global-session-id"
                  ]
                },
                "description": "Partially update global-session-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete global-session-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/global-session-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "global-session-id"
                  ]
                },
                "description": "Remove global-session-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get multi-party-session-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/multi-party-session-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "multi-party-session-id"
                  ]
                },
                "description": "Retrieve multi-party-session-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace multi-party-session-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/multi-party-session-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "multi-party-session-id"
                  ]
                },
                "description": "Create or replace multi-party-session-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update multi-party-session-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/multi-party-session-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "multi-party-session-id"
                  ]
                },
                "description": "Partially update multi-party-session-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete multi-party-session-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/metadata-cfg/multi-party-session-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "metadata-cfg",
                    "multi-party-session-id"
                  ]
                },
                "description": "Remove multi-party-session-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get application-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/application-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "application-cfgs"
                  ]
                },
                "description": "Retrieve application-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace application-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/application-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "application-cfgs"
                  ]
                },
                "description": "Create or replace application-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"application-cfg\": {\n    \"application-name\": \"example-1\",\n    \"application-cfg\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update application-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/application-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "application-cfgs"
                  ]
                },
                "description": "Partially update application-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"application-cfg\": {\n    \"application-name\": \"example-1\",\n    \"application-cfg\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete application-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/application-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "application-cfgs"
                  ]
                },
                "description": "Remove application-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get application-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/application-cfgs/application-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "application-cfgs",
                    "application-cfg"
                  ]
                },
                "description": "Retrieve application-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace application-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/application-cfgs/application-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "application-cfgs",
                    "application-cfg"
                  ]
                },
                "description": "Create or replace application-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"application-name\": \"example-1\",\n  \"application-cfg\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update application-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/application-cfgs/application-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "application-cfgs",
                    "application-cfg"
                  ]
                },
                "description": "Partially update application-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"application-name\": \"example-1\",\n  \"application-cfg\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete application-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/application-cfgs/application-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "application-cfgs",
                    "application-cfg"
                  ]
                },
                "description": "Remove application-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get application-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/application-cfgs/application-cfg/application-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "application-cfgs",
                    "application-cfg",
                    "application-name"
                  ]
                },
                "description": "Retrieve application-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace application-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/application-cfgs/application-cfg/application-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "application-cfgs",
                    "application-cfg",
                    "application-name"
                  ]
                },
                "description": "Create or replace application-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update application-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/application-cfgs/application-cfg/application-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "application-cfgs",
                    "application-cfg",
                    "application-name"
                  ]
                },
                "description": "Partially update application-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete application-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/application-cfgs/application-cfg/application-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "application-cfgs",
                    "application-cfg",
                    "application-name"
                  ]
                },
                "description": "Remove application-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get application-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/application-cfgs/application-cfg/application-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "application-cfgs",
                    "application-cfg",
                    "application-cfg"
                  ]
                },
                "description": "Retrieve application-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace application-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/application-cfgs/application-cfg/application-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "application-cfgs",
                    "application-cfg",
                    "application-cfg"
                  ]
                },
                "description": "Create or replace application-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update application-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/application-cfgs/application-cfg/application-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "application-cfgs",
                    "application-cfg",
                    "application-cfg"
                  ]
                },
                "description": "Partially update application-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete application-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/application-cfgs/application-cfg/application-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "application-cfgs",
                    "application-cfg",
                    "application-cfg"
                  ]
                },
                "description": "Remove application-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get security-group",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group"
                  ]
                },
                "description": "Retrieve security-group from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace security-group",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group"
                  ]
                },
                "description": "Create or replace security-group on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"security-group-name-cfgs\": {\n    \"security-group-name-cfg\": {\n      \"src-dst\": \"configured-value\",\n      \"security-name\": \"example-1\"\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update security-group",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group"
                  ]
                },
                "description": "Partially update security-group on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"security-group-name-cfgs\": {\n    \"security-group-name-cfg\": {\n      \"src-dst\": \"configured-value\",\n      \"security-name\": \"example-1\"\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete security-group",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group"
                  ]
                },
                "description": "Remove security-group from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get security-group-name-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group/security-group-name-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group",
                    "security-group-name-cfgs"
                  ]
                },
                "description": "Retrieve security-group-name-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace security-group-name-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group/security-group-name-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group",
                    "security-group-name-cfgs"
                  ]
                },
                "description": "Create or replace security-group-name-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"security-group-name-cfg\": {\n    \"src-dst\": \"configured-value\",\n    \"security-name\": \"example-1\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update security-group-name-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group/security-group-name-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group",
                    "security-group-name-cfgs"
                  ]
                },
                "description": "Partially update security-group-name-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"security-group-name-cfg\": {\n    \"src-dst\": \"configured-value\",\n    \"security-name\": \"example-1\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete security-group-name-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group/security-group-name-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group",
                    "security-group-name-cfgs"
                  ]
                },
                "description": "Remove security-group-name-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get security-group-name-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group/security-group-name-cfgs/security-group-name-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group",
                    "security-group-name-cfgs",
                    "security-group-name-cfg"
                  ]
                },
                "description": "Retrieve security-group-name-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace security-group-name-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group/security-group-name-cfgs/security-group-name-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group",
                    "security-group-name-cfgs",
                    "security-group-name-cfg"
                  ]
                },
                "description": "Create or replace security-group-name-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"src-dst\": \"configured-value\",\n  \"security-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update security-group-name-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group/security-group-name-cfgs/security-group-name-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group",
                    "security-group-name-cfgs",
                    "security-group-name-cfg"
                  ]
                },
                "description": "Partially update security-group-name-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"src-dst\": \"configured-value\",\n  \"security-name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete security-group-name-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group/security-group-name-cfgs/security-group-name-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group",
                    "security-group-name-cfgs",
                    "security-group-name-cfg"
                  ]
                },
                "description": "Remove security-group-name-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get src-dst",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group/security-group-name-cfgs/security-group-name-cfg/src-dst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group",
                    "security-group-name-cfgs",
                    "security-group-name-cfg",
                    "src-dst"
                  ]
                },
                "description": "Retrieve src-dst from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace src-dst",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group/security-group-name-cfgs/security-group-name-cfg/src-dst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group",
                    "security-group-name-cfgs",
                    "security-group-name-cfg",
                    "src-dst"
                  ]
                },
                "description": "Create or replace src-dst on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update src-dst",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group/security-group-name-cfgs/security-group-name-cfg/src-dst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group",
                    "security-group-name-cfgs",
                    "security-group-name-cfg",
                    "src-dst"
                  ]
                },
                "description": "Partially update src-dst on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete src-dst",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group/security-group-name-cfgs/security-group-name-cfg/src-dst",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group",
                    "security-group-name-cfgs",
                    "security-group-name-cfg",
                    "src-dst"
                  ]
                },
                "description": "Remove src-dst from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get security-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group/security-group-name-cfgs/security-group-name-cfg/security-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group",
                    "security-group-name-cfgs",
                    "security-group-name-cfg",
                    "security-name"
                  ]
                },
                "description": "Retrieve security-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace security-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group/security-group-name-cfgs/security-group-name-cfg/security-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group",
                    "security-group-name-cfgs",
                    "security-group-name-cfg",
                    "security-name"
                  ]
                },
                "description": "Create or replace security-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update security-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group/security-group-name-cfgs/security-group-name-cfg/security-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group",
                    "security-group-name-cfgs",
                    "security-group-name-cfg",
                    "security-name"
                  ]
                },
                "description": "Partially update security-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete security-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/security-group/security-group-name-cfgs/security-group-name-cfg/security-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "security-group",
                    "security-group-name-cfgs",
                    "security-group-name-cfg",
                    "security-name"
                  ]
                },
                "description": "Remove security-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip-rtp-cfgs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ip-rtp-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ip-rtp-cfgs"
                  ]
                },
                "description": "Retrieve ip-rtp-cfgs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ip-rtp-cfgs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ip-rtp-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ip-rtp-cfgs"
                  ]
                },
                "description": "Create or replace ip-rtp-cfgs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ip-rtp-cfg\": {\n    \"starting-port-number\": 10,\n    \"port-range\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ip-rtp-cfgs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ip-rtp-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ip-rtp-cfgs"
                  ]
                },
                "description": "Partially update ip-rtp-cfgs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ip-rtp-cfg\": {\n    \"starting-port-number\": 10,\n    \"port-range\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ip-rtp-cfgs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ip-rtp-cfgs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ip-rtp-cfgs"
                  ]
                },
                "description": "Remove ip-rtp-cfgs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip-rtp-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ip-rtp-cfgs/ip-rtp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ip-rtp-cfgs",
                    "ip-rtp-cfg"
                  ]
                },
                "description": "Retrieve ip-rtp-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ip-rtp-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ip-rtp-cfgs/ip-rtp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ip-rtp-cfgs",
                    "ip-rtp-cfg"
                  ]
                },
                "description": "Create or replace ip-rtp-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"starting-port-number\": 10,\n  \"port-range\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ip-rtp-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ip-rtp-cfgs/ip-rtp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ip-rtp-cfgs",
                    "ip-rtp-cfg"
                  ]
                },
                "description": "Partially update ip-rtp-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"starting-port-number\": 10,\n  \"port-range\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ip-rtp-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ip-rtp-cfgs/ip-rtp-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ip-rtp-cfgs",
                    "ip-rtp-cfg"
                  ]
                },
                "description": "Remove ip-rtp-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get starting-port-number",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ip-rtp-cfgs/ip-rtp-cfg/starting-port-number",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ip-rtp-cfgs",
                    "ip-rtp-cfg",
                    "starting-port-number"
                  ]
                },
                "description": "Retrieve starting-port-number from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace starting-port-number",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ip-rtp-cfgs/ip-rtp-cfg/starting-port-number",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ip-rtp-cfgs",
                    "ip-rtp-cfg",
                    "starting-port-number"
                  ]
                },
                "description": "Create or replace starting-port-number on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "10",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update starting-port-number",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ip-rtp-cfgs/ip-rtp-cfg/starting-port-number",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ip-rtp-cfgs",
                    "ip-rtp-cfg",
                    "starting-port-number"
                  ]
                },
                "description": "Partially update starting-port-number on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "10",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete starting-port-number",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ip-rtp-cfgs/ip-rtp-cfg/starting-port-number",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ip-rtp-cfgs",
                    "ip-rtp-cfg",
                    "starting-port-number"
                  ]
                },
                "description": "Remove starting-port-number from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get port-range",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ip-rtp-cfgs/ip-rtp-cfg/port-range",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ip-rtp-cfgs",
                    "ip-rtp-cfg",
                    "port-range"
                  ]
                },
                "description": "Retrieve port-range from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace port-range",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ip-rtp-cfgs/ip-rtp-cfg/port-range",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ip-rtp-cfgs",
                    "ip-rtp-cfg",
                    "port-range"
                  ]
                },
                "description": "Create or replace port-range on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update port-range",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ip-rtp-cfgs/ip-rtp-cfg/port-range",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ip-rtp-cfgs",
                    "ip-rtp-cfg",
                    "port-range"
                  ]
                },
                "description": "Partially update port-range on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete port-range",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/ip-rtp-cfgs/ip-rtp-cfg/port-range",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "ip-rtp-cfgs",
                    "ip-rtp-cfg",
                    "port-range"
                  ]
                },
                "description": "Remove port-range from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vpls-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg"
                  ]
                },
                "description": "Retrieve vpls-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vpls-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg"
                  ]
                },
                "description": "Create or replace vpls-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"broadcast\": true,\n  \"known\": true,\n  \"unknown\": true,\n  \"multicast\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vpls-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg"
                  ]
                },
                "description": "Partially update vpls-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"broadcast\": true,\n  \"known\": true,\n  \"unknown\": true,\n  \"multicast\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vpls-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg"
                  ]
                },
                "description": "Remove vpls-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get broadcast",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg/broadcast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg",
                    "broadcast"
                  ]
                },
                "description": "Retrieve broadcast from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace broadcast",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg/broadcast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg",
                    "broadcast"
                  ]
                },
                "description": "Create or replace broadcast on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update broadcast",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg/broadcast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg",
                    "broadcast"
                  ]
                },
                "description": "Partially update broadcast on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete broadcast",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg/broadcast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg",
                    "broadcast"
                  ]
                },
                "description": "Remove broadcast from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get known",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg/known",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg",
                    "known"
                  ]
                },
                "description": "Retrieve known from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace known",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg/known",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg",
                    "known"
                  ]
                },
                "description": "Create or replace known on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update known",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg/known",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg",
                    "known"
                  ]
                },
                "description": "Partially update known on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete known",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg/known",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg",
                    "known"
                  ]
                },
                "description": "Remove known from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get unknown",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg/unknown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg",
                    "unknown"
                  ]
                },
                "description": "Retrieve unknown from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace unknown",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg/unknown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg",
                    "unknown"
                  ]
                },
                "description": "Create or replace unknown on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update unknown",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg/unknown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg",
                    "unknown"
                  ]
                },
                "description": "Partially update unknown on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete unknown",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg/unknown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg",
                    "unknown"
                  ]
                },
                "description": "Remove unknown from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get multicast",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg/multicast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg",
                    "multicast"
                  ]
                },
                "description": "Retrieve multicast from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace multicast",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg/multicast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg",
                    "multicast"
                  ]
                },
                "description": "Create or replace multicast on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update multicast",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg/multicast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg",
                    "multicast"
                  ]
                },
                "description": "Partially update multicast on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete multicast",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-policy-filters:classifier-entry-type/vpls-cfg/multicast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-policy-filters:classifier-entry-type",
                    "vpls-cfg",
                    "multicast"
                  ]
                },
                "description": "Remove multicast from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "cisco-pw",
          "description": "Cisco IOS-XE - cisco-pw\n\nData from `cisco-pw` module.\n\n**Root containers:** 2 (pseudowire-config, pseudowire-state)\n**Paths:** 131 | **Operations:** 422\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 131 | Operations: 422",
          "item": [
            {
              "name": "GET Get pseudowire-config",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config"
                  ]
                },
                "description": "Retrieve pseudowire-config from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pseudowire-config",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config"
                  ]
                },
                "description": "Create or replace pseudowire-config on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"global\": {\n    \"pw-grouping\": true,\n    \"pw-oam-refresh-transmit\": 1,\n    \"pw-status\": true,\n    \"predictive-redundancy\": true,\n    \"vc-state-notification-enabled\": true,\n    \"vc-state-notification-batch-size\": 1,\n    \"vc-state-notification-rate\": 1\n  },\n  \"pw-templates\": {\n    \"pw-template\": [\n      {\n        \"name\": {},\n        \"encapsulation\": {},\n        \"control-word\": {},\n        \"signaling-protocol\": {},\n        \"load-balance\": {},\n        \"preferred-path\": {},\n        \"sequencing\": {},\n        \"vc-type\": {},\n        \"switching-tlv\": {},\n        \"vccv\": {}\n      }\n    ]\n  },\n  \"pw-static-oam-classes\": {\n    \"pw-static-oam-class\": [\n      {\n        \"name\": {},\n        \"ack\": {},\n        \"keepalive\": {},\n        \"timeout-refresh-send\": {},\n        \"timeout-refresh-ack\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pseudowire-config",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config"
                  ]
                },
                "description": "Partially update pseudowire-config on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"global\": {\n    \"pw-grouping\": true,\n    \"pw-oam-refresh-transmit\": 1,\n    \"pw-status\": true,\n    \"predictive-redundancy\": true,\n    \"vc-state-notification-enabled\": true,\n    \"vc-state-notification-batch-size\": 1,\n    \"vc-state-notification-rate\": 1\n  },\n  \"pw-templates\": {\n    \"pw-template\": [\n      {\n        \"name\": {},\n        \"encapsulation\": {},\n        \"control-word\": {},\n        \"signaling-protocol\": {},\n        \"load-balance\": {},\n        \"preferred-path\": {},\n        \"sequencing\": {},\n        \"vc-type\": {},\n        \"switching-tlv\": {},\n        \"vccv\": {}\n      }\n    ]\n  },\n  \"pw-static-oam-classes\": {\n    \"pw-static-oam-class\": [\n      {\n        \"name\": {},\n        \"ack\": {},\n        \"keepalive\": {},\n        \"timeout-refresh-send\": {},\n        \"timeout-refresh-ack\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pseudowire-config",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config"
                  ]
                },
                "description": "Remove pseudowire-config from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get global",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global"
                  ]
                },
                "description": "Retrieve global from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace global",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global"
                  ]
                },
                "description": "Create or replace global on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"pw-grouping\": true,\n  \"pw-oam-refresh-transmit\": 1,\n  \"pw-status\": true,\n  \"predictive-redundancy\": true,\n  \"vc-state-notification-enabled\": true,\n  \"vc-state-notification-batch-size\": 1,\n  \"vc-state-notification-rate\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update global",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global"
                  ]
                },
                "description": "Partially update global on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"pw-grouping\": true,\n  \"pw-oam-refresh-transmit\": 1,\n  \"pw-status\": true,\n  \"predictive-redundancy\": true,\n  \"vc-state-notification-enabled\": true,\n  \"vc-state-notification-batch-size\": 1,\n  \"vc-state-notification-rate\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete global",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global"
                  ]
                },
                "description": "Remove global from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pw-grouping",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/pw-grouping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "pw-grouping"
                  ]
                },
                "description": "Retrieve pw-grouping from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pw-grouping",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/pw-grouping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "pw-grouping"
                  ]
                },
                "description": "Create or replace pw-grouping on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pw-grouping",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/pw-grouping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "pw-grouping"
                  ]
                },
                "description": "Partially update pw-grouping on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pw-grouping",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/pw-grouping",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "pw-grouping"
                  ]
                },
                "description": "Remove pw-grouping from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pw-oam-refresh-transmit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/pw-oam-refresh-transmit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "pw-oam-refresh-transmit"
                  ]
                },
                "description": "Retrieve pw-oam-refresh-transmit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pw-oam-refresh-transmit",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/pw-oam-refresh-transmit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "pw-oam-refresh-transmit"
                  ]
                },
                "description": "Create or replace pw-oam-refresh-transmit on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pw-oam-refresh-transmit",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/pw-oam-refresh-transmit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "pw-oam-refresh-transmit"
                  ]
                },
                "description": "Partially update pw-oam-refresh-transmit on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pw-oam-refresh-transmit",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/pw-oam-refresh-transmit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "pw-oam-refresh-transmit"
                  ]
                },
                "description": "Remove pw-oam-refresh-transmit from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pw-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/pw-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "pw-status"
                  ]
                },
                "description": "Retrieve pw-status from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pw-status",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/pw-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "pw-status"
                  ]
                },
                "description": "Create or replace pw-status on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pw-status",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/pw-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "pw-status"
                  ]
                },
                "description": "Partially update pw-status on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pw-status",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/pw-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "pw-status"
                  ]
                },
                "description": "Remove pw-status from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get predictive-redundancy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/predictive-redundancy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "predictive-redundancy"
                  ]
                },
                "description": "Retrieve predictive-redundancy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace predictive-redundancy",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/predictive-redundancy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "predictive-redundancy"
                  ]
                },
                "description": "Create or replace predictive-redundancy on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update predictive-redundancy",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/predictive-redundancy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "predictive-redundancy"
                  ]
                },
                "description": "Partially update predictive-redundancy on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete predictive-redundancy",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/predictive-redundancy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "predictive-redundancy"
                  ]
                },
                "description": "Remove predictive-redundancy from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-state-notification-enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/vc-state-notification-enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "vc-state-notification-enabled"
                  ]
                },
                "description": "Retrieve vc-state-notification-enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vc-state-notification-enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/vc-state-notification-enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "vc-state-notification-enabled"
                  ]
                },
                "description": "Create or replace vc-state-notification-enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vc-state-notification-enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/vc-state-notification-enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "vc-state-notification-enabled"
                  ]
                },
                "description": "Partially update vc-state-notification-enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vc-state-notification-enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/vc-state-notification-enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "vc-state-notification-enabled"
                  ]
                },
                "description": "Remove vc-state-notification-enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-state-notification-batch-size",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/vc-state-notification-batch-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "vc-state-notification-batch-size"
                  ]
                },
                "description": "Retrieve vc-state-notification-batch-size from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vc-state-notification-batch-size",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/vc-state-notification-batch-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "vc-state-notification-batch-size"
                  ]
                },
                "description": "Create or replace vc-state-notification-batch-size on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vc-state-notification-batch-size",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/vc-state-notification-batch-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "vc-state-notification-batch-size"
                  ]
                },
                "description": "Partially update vc-state-notification-batch-size on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vc-state-notification-batch-size",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/vc-state-notification-batch-size",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "vc-state-notification-batch-size"
                  ]
                },
                "description": "Remove vc-state-notification-batch-size from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-state-notification-rate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/vc-state-notification-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "vc-state-notification-rate"
                  ]
                },
                "description": "Retrieve vc-state-notification-rate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vc-state-notification-rate",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/vc-state-notification-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "vc-state-notification-rate"
                  ]
                },
                "description": "Create or replace vc-state-notification-rate on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vc-state-notification-rate",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/vc-state-notification-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "vc-state-notification-rate"
                  ]
                },
                "description": "Partially update vc-state-notification-rate on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vc-state-notification-rate",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/global/vc-state-notification-rate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "global",
                    "vc-state-notification-rate"
                  ]
                },
                "description": "Remove vc-state-notification-rate from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pw-templates",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates"
                  ]
                },
                "description": "Retrieve pw-templates from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pw-templates",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates"
                  ]
                },
                "description": "Create or replace pw-templates on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"pw-template\": [\n    {\n      \"name\": \"example-1\",\n      \"encapsulation\": \"configured-value\",\n      \"control-word\": true,\n      \"signaling-protocol\": \"configured-value\",\n      \"load-balance\": {\n        \"ethernet\": {},\n        \"flow-label\": {}\n      },\n      \"preferred-path\": {\n        \"interface\": {},\n        \"disable-fallback\": {}\n      },\n      \"sequencing\": {\n        \"direction\": {},\n        \"resync\": {}\n      },\n      \"vc-type\": \"configured-value\",\n      \"switching-tlv\": true,\n      \"vccv\": {\n        \"control-word\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pw-templates",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates"
                  ]
                },
                "description": "Partially update pw-templates on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"pw-template\": [\n    {\n      \"name\": \"example-1\",\n      \"encapsulation\": \"configured-value\",\n      \"control-word\": true,\n      \"signaling-protocol\": \"configured-value\",\n      \"load-balance\": {\n        \"ethernet\": {},\n        \"flow-label\": {}\n      },\n      \"preferred-path\": {\n        \"interface\": {},\n        \"disable-fallback\": {}\n      },\n      \"sequencing\": {\n        \"direction\": {},\n        \"resync\": {}\n      },\n      \"vc-type\": \"configured-value\",\n      \"switching-tlv\": true,\n      \"vccv\": {\n        \"control-word\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pw-templates",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates"
                  ]
                },
                "description": "Remove pw-templates from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pw-template",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template"
                  ]
                },
                "description": "Retrieve pw-template from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pw-template",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template"
                  ]
                },
                "description": "Create or replace pw-template on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"encapsulation\": \"configured-value\",\n    \"control-word\": true,\n    \"signaling-protocol\": \"configured-value\",\n    \"load-balance\": {\n      \"ethernet\": \"configured-value\",\n      \"flow-label\": {\n        \"direction\": {},\n        \"tlv-code-17\": {},\n        \"static\": {}\n      }\n    },\n    \"preferred-path\": {\n      \"interface\": \"GigabitEthernet1/0/1\",\n      \"disable-fallback\": true\n    },\n    \"sequencing\": {\n      \"direction\": \"inbound\",\n      \"resync\": 1\n    },\n    \"vc-type\": \"configured-value\",\n    \"switching-tlv\": true,\n    \"vccv\": {\n      \"control-word\": true\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pw-template",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template"
                  ]
                },
                "description": "Partially update pw-template on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"encapsulation\": \"configured-value\",\n    \"control-word\": true,\n    \"signaling-protocol\": \"configured-value\",\n    \"load-balance\": {\n      \"ethernet\": \"configured-value\",\n      \"flow-label\": {\n        \"direction\": {},\n        \"tlv-code-17\": {},\n        \"static\": {}\n      }\n    },\n    \"preferred-path\": {\n      \"interface\": \"GigabitEthernet1/0/1\",\n      \"disable-fallback\": true\n    },\n    \"sequencing\": {\n      \"direction\": \"inbound\",\n      \"resync\": 1\n    },\n    \"vc-type\": \"configured-value\",\n    \"switching-tlv\": true,\n    \"vccv\": {\n      \"control-word\": true\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pw-template",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template"
                  ]
                },
                "description": "Remove pw-template from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pw-template",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve pw-template from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pw-template",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace pw-template on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"encapsulation\": \"configured-value\",\n    \"control-word\": true,\n    \"signaling-protocol\": \"configured-value\",\n    \"load-balance\": {\n      \"ethernet\": \"configured-value\",\n      \"flow-label\": {\n        \"direction\": {},\n        \"tlv-code-17\": {},\n        \"static\": {}\n      }\n    },\n    \"preferred-path\": {\n      \"interface\": \"GigabitEthernet1/0/1\",\n      \"disable-fallback\": true\n    },\n    \"sequencing\": {\n      \"direction\": \"inbound\",\n      \"resync\": 1\n    },\n    \"vc-type\": \"configured-value\",\n    \"switching-tlv\": true,\n    \"vccv\": {\n      \"control-word\": true\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pw-template",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update pw-template on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"encapsulation\": \"configured-value\",\n    \"control-word\": true,\n    \"signaling-protocol\": \"configured-value\",\n    \"load-balance\": {\n      \"ethernet\": \"configured-value\",\n      \"flow-label\": {\n        \"direction\": {},\n        \"tlv-code-17\": {},\n        \"static\": {}\n      }\n    },\n    \"preferred-path\": {\n      \"interface\": \"GigabitEthernet1/0/1\",\n      \"disable-fallback\": true\n    },\n    \"sequencing\": {\n      \"direction\": \"inbound\",\n      \"resync\": 1\n    },\n    \"vc-type\": \"configured-value\",\n    \"switching-tlv\": true,\n    \"vccv\": {\n      \"control-word\": true\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pw-template",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove pw-template from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get encapsulation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/encapsulation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "encapsulation"
                  ]
                },
                "description": "Retrieve encapsulation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace encapsulation",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/encapsulation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "encapsulation"
                  ]
                },
                "description": "Create or replace encapsulation on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update encapsulation",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/encapsulation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "encapsulation"
                  ]
                },
                "description": "Partially update encapsulation on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete encapsulation",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/encapsulation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "encapsulation"
                  ]
                },
                "description": "Remove encapsulation from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get control-word",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "control-word"
                  ]
                },
                "description": "Retrieve control-word from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace control-word",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "control-word"
                  ]
                },
                "description": "Create or replace control-word on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update control-word",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "control-word"
                  ]
                },
                "description": "Partially update control-word on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete control-word",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "control-word"
                  ]
                },
                "description": "Remove control-word from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get signaling-protocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/signaling-protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "signaling-protocol"
                  ]
                },
                "description": "Retrieve signaling-protocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace signaling-protocol",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/signaling-protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "signaling-protocol"
                  ]
                },
                "description": "Create or replace signaling-protocol on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update signaling-protocol",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/signaling-protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "signaling-protocol"
                  ]
                },
                "description": "Partially update signaling-protocol on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete signaling-protocol",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/signaling-protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "signaling-protocol"
                  ]
                },
                "description": "Remove signaling-protocol from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get load-balance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance"
                  ]
                },
                "description": "Retrieve load-balance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace load-balance",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance"
                  ]
                },
                "description": "Create or replace load-balance on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ethernet\": \"configured-value\",\n  \"flow-label\": {\n    \"direction\": \"inbound\",\n    \"tlv-code-17\": true,\n    \"static\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update load-balance",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance"
                  ]
                },
                "description": "Partially update load-balance on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ethernet\": \"configured-value\",\n  \"flow-label\": {\n    \"direction\": \"inbound\",\n    \"tlv-code-17\": true,\n    \"static\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete load-balance",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance"
                  ]
                },
                "description": "Remove load-balance from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ethernet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/ethernet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "ethernet"
                  ]
                },
                "description": "Retrieve ethernet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ethernet",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/ethernet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "ethernet"
                  ]
                },
                "description": "Create or replace ethernet on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ethernet",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/ethernet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "ethernet"
                  ]
                },
                "description": "Partially update ethernet on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ethernet",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/ethernet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "ethernet"
                  ]
                },
                "description": "Remove ethernet from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get flow-label",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/flow-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "flow-label"
                  ]
                },
                "description": "Retrieve flow-label from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace flow-label",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/flow-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "flow-label"
                  ]
                },
                "description": "Create or replace flow-label on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"direction\": \"inbound\",\n  \"tlv-code-17\": true,\n  \"static\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update flow-label",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/flow-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "flow-label"
                  ]
                },
                "description": "Partially update flow-label on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"direction\": \"inbound\",\n  \"tlv-code-17\": true,\n  \"static\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete flow-label",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/flow-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "flow-label"
                  ]
                },
                "description": "Remove flow-label from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get direction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/flow-label/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "flow-label",
                    "direction"
                  ]
                },
                "description": "Retrieve direction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace direction",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/flow-label/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "flow-label",
                    "direction"
                  ]
                },
                "description": "Create or replace direction on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"inbound\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update direction",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/flow-label/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "flow-label",
                    "direction"
                  ]
                },
                "description": "Partially update direction on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"inbound\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete direction",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/flow-label/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "flow-label",
                    "direction"
                  ]
                },
                "description": "Remove direction from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tlv-code-17",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/flow-label/tlv-code-17",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "flow-label",
                    "tlv-code-17"
                  ]
                },
                "description": "Retrieve tlv-code-17 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tlv-code-17",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/flow-label/tlv-code-17",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "flow-label",
                    "tlv-code-17"
                  ]
                },
                "description": "Create or replace tlv-code-17 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tlv-code-17",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/flow-label/tlv-code-17",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "flow-label",
                    "tlv-code-17"
                  ]
                },
                "description": "Partially update tlv-code-17 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tlv-code-17",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/flow-label/tlv-code-17",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "flow-label",
                    "tlv-code-17"
                  ]
                },
                "description": "Remove tlv-code-17 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get static",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/flow-label/static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "flow-label",
                    "static"
                  ]
                },
                "description": "Retrieve static from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace static",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/flow-label/static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "flow-label",
                    "static"
                  ]
                },
                "description": "Create or replace static on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update static",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/flow-label/static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "flow-label",
                    "static"
                  ]
                },
                "description": "Partially update static on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete static",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/load-balance/flow-label/static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "load-balance",
                    "flow-label",
                    "static"
                  ]
                },
                "description": "Remove static from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get preferred-path",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/preferred-path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "preferred-path"
                  ]
                },
                "description": "Retrieve preferred-path from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace preferred-path",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/preferred-path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "preferred-path"
                  ]
                },
                "description": "Create or replace preferred-path on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interface\": \"GigabitEthernet1/0/1\",\n  \"disable-fallback\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update preferred-path",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/preferred-path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "preferred-path"
                  ]
                },
                "description": "Partially update preferred-path on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interface\": \"GigabitEthernet1/0/1\",\n  \"disable-fallback\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete preferred-path",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/preferred-path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "preferred-path"
                  ]
                },
                "description": "Remove preferred-path from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/preferred-path/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "preferred-path",
                    "interface"
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/preferred-path/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "preferred-path",
                    "interface"
                  ]
                },
                "description": "Create or replace interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"GigabitEthernet1/0/1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/preferred-path/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "preferred-path",
                    "interface"
                  ]
                },
                "description": "Partially update interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"GigabitEthernet1/0/1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/preferred-path/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "preferred-path",
                    "interface"
                  ]
                },
                "description": "Remove interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get disable-fallback",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/preferred-path/disable-fallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "preferred-path",
                    "disable-fallback"
                  ]
                },
                "description": "Retrieve disable-fallback from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace disable-fallback",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/preferred-path/disable-fallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "preferred-path",
                    "disable-fallback"
                  ]
                },
                "description": "Create or replace disable-fallback on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update disable-fallback",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/preferred-path/disable-fallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "preferred-path",
                    "disable-fallback"
                  ]
                },
                "description": "Partially update disable-fallback on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete disable-fallback",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/preferred-path/disable-fallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "preferred-path",
                    "disable-fallback"
                  ]
                },
                "description": "Remove disable-fallback from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sequencing",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/sequencing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "sequencing"
                  ]
                },
                "description": "Retrieve sequencing from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sequencing",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/sequencing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "sequencing"
                  ]
                },
                "description": "Create or replace sequencing on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"direction\": \"inbound\",\n  \"resync\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sequencing",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/sequencing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "sequencing"
                  ]
                },
                "description": "Partially update sequencing on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"direction\": \"inbound\",\n  \"resync\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sequencing",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/sequencing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "sequencing"
                  ]
                },
                "description": "Remove sequencing from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get direction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/sequencing/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "sequencing",
                    "direction"
                  ]
                },
                "description": "Retrieve direction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace direction",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/sequencing/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "sequencing",
                    "direction"
                  ]
                },
                "description": "Create or replace direction on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"inbound\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update direction",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/sequencing/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "sequencing",
                    "direction"
                  ]
                },
                "description": "Partially update direction on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"inbound\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete direction",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/sequencing/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "sequencing",
                    "direction"
                  ]
                },
                "description": "Remove direction from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get resync",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/sequencing/resync",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "sequencing",
                    "resync"
                  ]
                },
                "description": "Retrieve resync from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace resync",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/sequencing/resync",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "sequencing",
                    "resync"
                  ]
                },
                "description": "Create or replace resync on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update resync",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/sequencing/resync",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "sequencing",
                    "resync"
                  ]
                },
                "description": "Partially update resync on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete resync",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/sequencing/resync",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "sequencing",
                    "resync"
                  ]
                },
                "description": "Remove resync from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/vc-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "vc-type"
                  ]
                },
                "description": "Retrieve vc-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vc-type",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/vc-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "vc-type"
                  ]
                },
                "description": "Create or replace vc-type on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vc-type",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/vc-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "vc-type"
                  ]
                },
                "description": "Partially update vc-type on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vc-type",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/vc-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "vc-type"
                  ]
                },
                "description": "Remove vc-type from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get switching-tlv",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/switching-tlv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "switching-tlv"
                  ]
                },
                "description": "Retrieve switching-tlv from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace switching-tlv",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/switching-tlv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "switching-tlv"
                  ]
                },
                "description": "Create or replace switching-tlv on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update switching-tlv",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/switching-tlv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "switching-tlv"
                  ]
                },
                "description": "Partially update switching-tlv on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete switching-tlv",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/switching-tlv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "switching-tlv"
                  ]
                },
                "description": "Remove switching-tlv from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vccv",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/vccv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "vccv"
                  ]
                },
                "description": "Retrieve vccv from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vccv",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/vccv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "vccv"
                  ]
                },
                "description": "Create or replace vccv on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"control-word\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vccv",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/vccv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "vccv"
                  ]
                },
                "description": "Partially update vccv on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"control-word\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vccv",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/vccv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "vccv"
                  ]
                },
                "description": "Remove vccv from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get control-word",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/vccv/control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "vccv",
                    "control-word"
                  ]
                },
                "description": "Retrieve control-word from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace control-word",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/vccv/control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "vccv",
                    "control-word"
                  ]
                },
                "description": "Create or replace control-word on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update control-word",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/vccv/control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "vccv",
                    "control-word"
                  ]
                },
                "description": "Partially update control-word on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete control-word",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/vccv/control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "vccv",
                    "control-word"
                  ]
                },
                "description": "Remove control-word from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get switchover-delay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/switchover-delay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "switchover-delay"
                  ]
                },
                "description": "Retrieve switchover-delay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace switchover-delay",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/switchover-delay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "switchover-delay"
                  ]
                },
                "description": "Create or replace switchover-delay on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"switchover-timer\": 1,\n  \"timer\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update switchover-delay",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/switchover-delay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "switchover-delay"
                  ]
                },
                "description": "Partially update switchover-delay on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"switchover-timer\": 1,\n  \"timer\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete switchover-delay",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/switchover-delay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "switchover-delay"
                  ]
                },
                "description": "Remove switchover-delay from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get switchover-timer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/switchover-delay/switchover-timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "switchover-delay",
                    "switchover-timer"
                  ]
                },
                "description": "Retrieve switchover-timer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace switchover-timer",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/switchover-delay/switchover-timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "switchover-delay",
                    "switchover-timer"
                  ]
                },
                "description": "Create or replace switchover-timer on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update switchover-timer",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/switchover-delay/switchover-timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "switchover-delay",
                    "switchover-timer"
                  ]
                },
                "description": "Partially update switchover-timer on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete switchover-timer",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/switchover-delay/switchover-timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "switchover-delay",
                    "switchover-timer"
                  ]
                },
                "description": "Remove switchover-timer from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get timer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/switchover-delay/timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "switchover-delay",
                    "timer"
                  ]
                },
                "description": "Retrieve timer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace timer",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/switchover-delay/timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "switchover-delay",
                    "timer"
                  ]
                },
                "description": "Create or replace timer on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update timer",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/switchover-delay/timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "switchover-delay",
                    "timer"
                  ]
                },
                "description": "Partially update timer on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete timer",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/switchover-delay/timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "switchover-delay",
                    "timer"
                  ]
                },
                "description": "Remove timer from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get source-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/source-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "source-ip"
                  ]
                },
                "description": "Retrieve source-ip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace source-ip",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/source-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "source-ip"
                  ]
                },
                "description": "Create or replace source-ip on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update source-ip",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/source-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "source-ip"
                  ]
                },
                "description": "Partially update source-ip on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete source-ip",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/source-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "source-ip"
                  ]
                },
                "description": "Remove source-ip from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tag-rewrite-ingress-vlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/tag-rewrite-ingress-vlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "tag-rewrite-ingress-vlan"
                  ]
                },
                "description": "Retrieve tag-rewrite-ingress-vlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tag-rewrite-ingress-vlan",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/tag-rewrite-ingress-vlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "tag-rewrite-ingress-vlan"
                  ]
                },
                "description": "Create or replace tag-rewrite-ingress-vlan on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tag-rewrite-ingress-vlan",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/tag-rewrite-ingress-vlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "tag-rewrite-ingress-vlan"
                  ]
                },
                "description": "Partially update tag-rewrite-ingress-vlan on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tag-rewrite-ingress-vlan",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/tag-rewrite-ingress-vlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "tag-rewrite-ingress-vlan"
                  ]
                },
                "description": "Remove tag-rewrite-ingress-vlan from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac-withdraw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/mac-withdraw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "mac-withdraw"
                  ]
                },
                "description": "Retrieve mac-withdraw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mac-withdraw",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/mac-withdraw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "mac-withdraw"
                  ]
                },
                "description": "Create or replace mac-withdraw on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mac-withdraw",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/mac-withdraw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "mac-withdraw"
                  ]
                },
                "description": "Partially update mac-withdraw on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mac-withdraw",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/mac-withdraw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "mac-withdraw"
                  ]
                },
                "description": "Remove mac-withdraw from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status"
                  ]
                },
                "description": "Retrieve status from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace status",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status"
                  ]
                },
                "description": "Create or replace status on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"decoupled\": true,\n  \"disable\": false,\n  \"peer-topo-dual-homed\": true,\n  \"route-watch-disable\": true,\n  \"redundancy-master\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update status",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status"
                  ]
                },
                "description": "Partially update status on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"decoupled\": true,\n  \"disable\": false,\n  \"peer-topo-dual-homed\": true,\n  \"route-watch-disable\": true,\n  \"redundancy-master\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete status",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status"
                  ]
                },
                "description": "Remove status from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get decoupled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/decoupled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "decoupled"
                  ]
                },
                "description": "Retrieve decoupled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace decoupled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/decoupled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "decoupled"
                  ]
                },
                "description": "Create or replace decoupled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update decoupled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/decoupled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "decoupled"
                  ]
                },
                "description": "Partially update decoupled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete decoupled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/decoupled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "decoupled"
                  ]
                },
                "description": "Remove decoupled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get disable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "disable"
                  ]
                },
                "description": "Retrieve disable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace disable",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "disable"
                  ]
                },
                "description": "Create or replace disable on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update disable",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "disable"
                  ]
                },
                "description": "Partially update disable on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete disable",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "disable"
                  ]
                },
                "description": "Remove disable from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get peer-topo-dual-homed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/peer-topo-dual-homed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "peer-topo-dual-homed"
                  ]
                },
                "description": "Retrieve peer-topo-dual-homed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace peer-topo-dual-homed",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/peer-topo-dual-homed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "peer-topo-dual-homed"
                  ]
                },
                "description": "Create or replace peer-topo-dual-homed on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update peer-topo-dual-homed",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/peer-topo-dual-homed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "peer-topo-dual-homed"
                  ]
                },
                "description": "Partially update peer-topo-dual-homed on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete peer-topo-dual-homed",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/peer-topo-dual-homed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "peer-topo-dual-homed"
                  ]
                },
                "description": "Remove peer-topo-dual-homed from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get route-watch-disable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/route-watch-disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "route-watch-disable"
                  ]
                },
                "description": "Retrieve route-watch-disable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace route-watch-disable",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/route-watch-disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "route-watch-disable"
                  ]
                },
                "description": "Create or replace route-watch-disable on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update route-watch-disable",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/route-watch-disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "route-watch-disable"
                  ]
                },
                "description": "Partially update route-watch-disable on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete route-watch-disable",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/route-watch-disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "route-watch-disable"
                  ]
                },
                "description": "Remove route-watch-disable from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get redundancy-master",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/redundancy-master",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "redundancy-master"
                  ]
                },
                "description": "Retrieve redundancy-master from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace redundancy-master",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/redundancy-master",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "redundancy-master"
                  ]
                },
                "description": "Create or replace redundancy-master on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update redundancy-master",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/redundancy-master",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "redundancy-master"
                  ]
                },
                "description": "Partially update redundancy-master on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete redundancy-master",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/status/redundancy-master",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "status",
                    "redundancy-master"
                  ]
                },
                "description": "Remove redundancy-master from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get port-profile-spec",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec"
                  ]
                },
                "description": "Retrieve port-profile-spec from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace port-profile-spec",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec"
                  ]
                },
                "description": "Create or replace port-profile-spec on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"description\": \"Configured via RESTCONF\",\n  \"shutdown\": false,\n  \"shut-force\": true,\n  \"mtu\": 1500,\n  \"max-ports\": 1,\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update port-profile-spec",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec"
                  ]
                },
                "description": "Partially update port-profile-spec on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"description\": \"Configured via RESTCONF\",\n  \"shutdown\": false,\n  \"shut-force\": true,\n  \"mtu\": 1500,\n  \"max-ports\": 1,\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete port-profile-spec",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec"
                  ]
                },
                "description": "Remove port-profile-spec from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get description",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "description"
                  ]
                },
                "description": "Retrieve description from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace description",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "description"
                  ]
                },
                "description": "Create or replace description on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"Configured via RESTCONF\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update description",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "description"
                  ]
                },
                "description": "Partially update description on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"Configured via RESTCONF\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete description",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "description"
                  ]
                },
                "description": "Remove description from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get shutdown",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/shutdown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "shutdown"
                  ]
                },
                "description": "Retrieve shutdown from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace shutdown",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/shutdown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "shutdown"
                  ]
                },
                "description": "Create or replace shutdown on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update shutdown",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/shutdown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "shutdown"
                  ]
                },
                "description": "Partially update shutdown on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete shutdown",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/shutdown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "shutdown"
                  ]
                },
                "description": "Remove shutdown from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get shut-force",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/shut-force",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "shut-force"
                  ]
                },
                "description": "Retrieve shut-force from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace shut-force",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/shut-force",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "shut-force"
                  ]
                },
                "description": "Create or replace shut-force on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update shut-force",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/shut-force",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "shut-force"
                  ]
                },
                "description": "Partially update shut-force on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete shut-force",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/shut-force",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "shut-force"
                  ]
                },
                "description": "Remove shut-force from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "mtu"
                  ]
                },
                "description": "Retrieve mtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mtu",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "mtu"
                  ]
                },
                "description": "Create or replace mtu on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1500",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mtu",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "mtu"
                  ]
                },
                "description": "Partially update mtu on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1500",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mtu",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "mtu"
                  ]
                },
                "description": "Remove mtu from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get max-ports",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/max-ports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "max-ports"
                  ]
                },
                "description": "Retrieve max-ports from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace max-ports",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/max-ports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "max-ports"
                  ]
                },
                "description": "Create or replace max-ports on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update max-ports",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/max-ports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "max-ports"
                  ]
                },
                "description": "Partially update max-ports on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete max-ports",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/max-ports",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "max-ports"
                  ]
                },
                "description": "Remove max-ports from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-templates/pw-template/port-profile-spec/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-templates",
                    "pw-template",
                    "port-profile-spec",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pw-static-oam-classes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes"
                  ]
                },
                "description": "Retrieve pw-static-oam-classes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pw-static-oam-classes",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes"
                  ]
                },
                "description": "Create or replace pw-static-oam-classes on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"pw-static-oam-class\": [\n    {\n      \"name\": \"example-1\",\n      \"ack\": true,\n      \"keepalive\": 1,\n      \"timeout-refresh-send\": 1,\n      \"timeout-refresh-ack\": 1\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pw-static-oam-classes",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes"
                  ]
                },
                "description": "Partially update pw-static-oam-classes on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"pw-static-oam-class\": [\n    {\n      \"name\": \"example-1\",\n      \"ack\": true,\n      \"keepalive\": 1,\n      \"timeout-refresh-send\": 1,\n      \"timeout-refresh-ack\": 1\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pw-static-oam-classes",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes"
                  ]
                },
                "description": "Remove pw-static-oam-classes from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pw-static-oam-class",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class"
                  ]
                },
                "description": "Retrieve pw-static-oam-class from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pw-static-oam-class",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class"
                  ]
                },
                "description": "Create or replace pw-static-oam-class on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"ack\": true,\n    \"keepalive\": 1,\n    \"timeout-refresh-send\": 1,\n    \"timeout-refresh-ack\": 1\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pw-static-oam-class",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class"
                  ]
                },
                "description": "Partially update pw-static-oam-class on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"ack\": true,\n    \"keepalive\": 1,\n    \"timeout-refresh-send\": 1,\n    \"timeout-refresh-ack\": 1\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pw-static-oam-class",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class"
                  ]
                },
                "description": "Remove pw-static-oam-class from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pw-static-oam-class",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve pw-static-oam-class from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pw-static-oam-class",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace pw-static-oam-class on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"ack\": true,\n    \"keepalive\": 1,\n    \"timeout-refresh-send\": 1,\n    \"timeout-refresh-ack\": 1\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pw-static-oam-class",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update pw-static-oam-class on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"ack\": true,\n    \"keepalive\": 1,\n    \"timeout-refresh-send\": 1,\n    \"timeout-refresh-ack\": 1\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pw-static-oam-class",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove pw-static-oam-class from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ack",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/ack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "ack"
                  ]
                },
                "description": "Retrieve ack from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ack",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/ack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "ack"
                  ]
                },
                "description": "Create or replace ack on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ack",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/ack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "ack"
                  ]
                },
                "description": "Partially update ack on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ack",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/ack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "ack"
                  ]
                },
                "description": "Remove ack from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get keepalive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/keepalive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "keepalive"
                  ]
                },
                "description": "Retrieve keepalive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace keepalive",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/keepalive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "keepalive"
                  ]
                },
                "description": "Create or replace keepalive on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update keepalive",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/keepalive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "keepalive"
                  ]
                },
                "description": "Partially update keepalive on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete keepalive",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/keepalive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "keepalive"
                  ]
                },
                "description": "Remove keepalive from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get timeout-refresh-send",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/timeout-refresh-send",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "timeout-refresh-send"
                  ]
                },
                "description": "Retrieve timeout-refresh-send from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace timeout-refresh-send",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/timeout-refresh-send",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "timeout-refresh-send"
                  ]
                },
                "description": "Create or replace timeout-refresh-send on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update timeout-refresh-send",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/timeout-refresh-send",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "timeout-refresh-send"
                  ]
                },
                "description": "Partially update timeout-refresh-send on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete timeout-refresh-send",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/timeout-refresh-send",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "timeout-refresh-send"
                  ]
                },
                "description": "Remove timeout-refresh-send from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get timeout-refresh-ack",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/timeout-refresh-ack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "timeout-refresh-ack"
                  ]
                },
                "description": "Retrieve timeout-refresh-ack from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace timeout-refresh-ack",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/timeout-refresh-ack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "timeout-refresh-ack"
                  ]
                },
                "description": "Create or replace timeout-refresh-ack on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update timeout-refresh-ack",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/timeout-refresh-ack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "timeout-refresh-ack"
                  ]
                },
                "description": "Partially update timeout-refresh-ack on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete timeout-refresh-ack",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-config/pw-static-oam-classes/pw-static-oam-class/timeout-refresh-ack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-config",
                    "pw-static-oam-classes",
                    "pw-static-oam-class",
                    "timeout-refresh-ack"
                  ]
                },
                "description": "Remove timeout-refresh-ack from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pseudowire-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state"
                  ]
                },
                "description": "Retrieve pseudowire-state from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pseudowires",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires"
                  ]
                },
                "description": "Retrieve pseudowires from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-type"
                  ]
                },
                "description": "Retrieve vc-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-owner-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-owner-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-owner-type"
                  ]
                },
                "description": "Retrieve vc-owner-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-owner-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-owner-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-owner-name"
                  ]
                },
                "description": "Retrieve vc-owner-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-psn-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-psn-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-psn-type"
                  ]
                },
                "description": "Retrieve vc-psn-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-peer-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-peer-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-peer-address"
                  ]
                },
                "description": "Retrieve vc-peer-address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-id"
                  ]
                },
                "description": "Retrieve vc-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-index",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-index",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-index"
                  ]
                },
                "description": "Retrieve vc-index from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-local-group-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-local-group-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-local-group-id"
                  ]
                },
                "description": "Retrieve vc-local-group-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-control-word",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-control-word"
                  ]
                },
                "description": "Retrieve vc-control-word from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-local-if-mtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-local-if-mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-local-if-mtu"
                  ]
                },
                "description": "Retrieve vc-local-if-mtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-remote-group-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-remote-group-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-remote-group-id"
                  ]
                },
                "description": "Retrieve vc-remote-group-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-remote-control-word",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-remote-control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-remote-control-word"
                  ]
                },
                "description": "Retrieve vc-remote-control-word from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-remote-if-mtu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-remote-if-mtu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-remote-if-mtu"
                  ]
                },
                "description": "Retrieve vc-remote-if-mtu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-outbound-label",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-outbound-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-outbound-label"
                  ]
                },
                "description": "Retrieve vc-outbound-label from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-inbound-label",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-inbound-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-inbound-label"
                  ]
                },
                "description": "Retrieve vc-inbound-label from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-name"
                  ]
                },
                "description": "Retrieve vc-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-oper-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-oper-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-oper-status"
                  ]
                },
                "description": "Retrieve vc-oper-status from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-inbound-oper-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-inbound-oper-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-inbound-oper-status"
                  ]
                },
                "description": "Retrieve vc-inbound-oper-status from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-outbound-oper-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/vc-outbound-oper-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "vc-outbound-oper-status"
                  ]
                },
                "description": "Retrieve vc-outbound-oper-status from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get statistics",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/statistics",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "statistics"
                  ]
                },
                "description": "Retrieve statistics from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-create-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/statistics/vc-create-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "statistics",
                    "vc-create-time"
                  ]
                },
                "description": "Retrieve vc-create-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-up-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/statistics/vc-up-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "statistics",
                    "vc-up-time"
                  ]
                },
                "description": "Retrieve vc-up-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get discontinuity-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/statistics/discontinuity-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "statistics",
                    "discontinuity-time"
                  ]
                },
                "description": "Retrieve discontinuity-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/statistics/in-octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "statistics",
                    "in-octets"
                  ]
                },
                "description": "Retrieve in-octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/statistics/in-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "statistics",
                    "in-pkts"
                  ]
                },
                "description": "Retrieve in-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-errors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/statistics/in-errors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "statistics",
                    "in-errors"
                  ]
                },
                "description": "Retrieve in-errors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get out-octets",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/statistics/out-octets",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "statistics",
                    "out-octets"
                  ]
                },
                "description": "Retrieve out-octets from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get out-pkts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/statistics/out-pkts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "statistics",
                    "out-pkts"
                  ]
                },
                "description": "Retrieve out-pkts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get out-errors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowires/statistics/out-errors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowires",
                    "statistics",
                    "out-errors"
                  ]
                },
                "description": "Retrieve out-errors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pw-neighbor",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor"
                  ]
                },
                "description": "Retrieve pw-neighbor from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pw-neighbor",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor"
                  ]
                },
                "description": "Create or replace pw-neighbor on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"neighbor-ip-address\": \"10.1.1.1\",\n  \"vc-id\": 1,\n  \"static-label\": {\n    \"local-label\": 1,\n    \"remote-label\": 1\n  },\n  \"source-template\": \"45\",\n  \"encapsulation\": \"configured-value\",\n  \"control-word\": true,\n  \"signaling-protocol\": \"configured-value\",\n  \"load-balance\": {\n    \"ethernet\": \"configured-value\",\n    \"flow-label\": {\n      \"direction\": \"inbound\",\n      \"tlv-code-17\": true,\n      \"static\": true\n    }\n  },\n  \"preferred-path\": {\n    \"interface\": \"GigabitEthernet1/0/1\",\n    \"disable-fallback\": true\n  },\n  \"sequencing\": {\n    \"direction\": \"inbound\",\n    \"resync\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pw-neighbor",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor"
                  ]
                },
                "description": "Partially update pw-neighbor on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"neighbor-ip-address\": \"10.1.1.1\",\n  \"vc-id\": 1,\n  \"static-label\": {\n    \"local-label\": 1,\n    \"remote-label\": 1\n  },\n  \"source-template\": \"45\",\n  \"encapsulation\": \"configured-value\",\n  \"control-word\": true,\n  \"signaling-protocol\": \"configured-value\",\n  \"load-balance\": {\n    \"ethernet\": \"configured-value\",\n    \"flow-label\": {\n      \"direction\": \"inbound\",\n      \"tlv-code-17\": true,\n      \"static\": true\n    }\n  },\n  \"preferred-path\": {\n    \"interface\": \"GigabitEthernet1/0/1\",\n    \"disable-fallback\": true\n  },\n  \"sequencing\": {\n    \"direction\": \"inbound\",\n    \"resync\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pw-neighbor",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor"
                  ]
                },
                "description": "Remove pw-neighbor from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get neighbor-ip-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/neighbor-ip-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "neighbor-ip-address"
                  ]
                },
                "description": "Retrieve neighbor-ip-address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace neighbor-ip-address",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/neighbor-ip-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "neighbor-ip-address"
                  ]
                },
                "description": "Create or replace neighbor-ip-address on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update neighbor-ip-address",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/neighbor-ip-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "neighbor-ip-address"
                  ]
                },
                "description": "Partially update neighbor-ip-address on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete neighbor-ip-address",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/neighbor-ip-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "neighbor-ip-address"
                  ]
                },
                "description": "Remove neighbor-ip-address from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/vc-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "vc-id"
                  ]
                },
                "description": "Retrieve vc-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vc-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/vc-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "vc-id"
                  ]
                },
                "description": "Create or replace vc-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vc-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/vc-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "vc-id"
                  ]
                },
                "description": "Partially update vc-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vc-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/vc-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "vc-id"
                  ]
                },
                "description": "Remove vc-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get static-label",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/static-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "static-label"
                  ]
                },
                "description": "Retrieve static-label from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace static-label",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/static-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "static-label"
                  ]
                },
                "description": "Create or replace static-label on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"local-label\": 1,\n  \"remote-label\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update static-label",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/static-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "static-label"
                  ]
                },
                "description": "Partially update static-label on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"local-label\": 1,\n  \"remote-label\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete static-label",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/static-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "static-label"
                  ]
                },
                "description": "Remove static-label from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get local-label",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/static-label/local-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "static-label",
                    "local-label"
                  ]
                },
                "description": "Retrieve local-label from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace local-label",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/static-label/local-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "static-label",
                    "local-label"
                  ]
                },
                "description": "Create or replace local-label on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update local-label",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/static-label/local-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "static-label",
                    "local-label"
                  ]
                },
                "description": "Partially update local-label on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete local-label",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/static-label/local-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "static-label",
                    "local-label"
                  ]
                },
                "description": "Remove local-label from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get remote-label",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/static-label/remote-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "static-label",
                    "remote-label"
                  ]
                },
                "description": "Retrieve remote-label from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace remote-label",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/static-label/remote-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "static-label",
                    "remote-label"
                  ]
                },
                "description": "Create or replace remote-label on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update remote-label",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/static-label/remote-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "static-label",
                    "remote-label"
                  ]
                },
                "description": "Partially update remote-label on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete remote-label",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/static-label/remote-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "static-label",
                    "remote-label"
                  ]
                },
                "description": "Remove remote-label from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get source-template",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/source-template",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "source-template"
                  ]
                },
                "description": "Retrieve source-template from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace source-template",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/source-template",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "source-template"
                  ]
                },
                "description": "Create or replace source-template on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update source-template",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/source-template",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "source-template"
                  ]
                },
                "description": "Partially update source-template on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete source-template",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/source-template",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "source-template"
                  ]
                },
                "description": "Remove source-template from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get encapsulation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/encapsulation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "encapsulation"
                  ]
                },
                "description": "Retrieve encapsulation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace encapsulation",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/encapsulation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "encapsulation"
                  ]
                },
                "description": "Create or replace encapsulation on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update encapsulation",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/encapsulation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "encapsulation"
                  ]
                },
                "description": "Partially update encapsulation on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete encapsulation",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/encapsulation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "encapsulation"
                  ]
                },
                "description": "Remove encapsulation from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get control-word",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "control-word"
                  ]
                },
                "description": "Retrieve control-word from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace control-word",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "control-word"
                  ]
                },
                "description": "Create or replace control-word on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update control-word",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "control-word"
                  ]
                },
                "description": "Partially update control-word on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete control-word",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "control-word"
                  ]
                },
                "description": "Remove control-word from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get signaling-protocol",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/signaling-protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "signaling-protocol"
                  ]
                },
                "description": "Retrieve signaling-protocol from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace signaling-protocol",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/signaling-protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "signaling-protocol"
                  ]
                },
                "description": "Create or replace signaling-protocol on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update signaling-protocol",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/signaling-protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "signaling-protocol"
                  ]
                },
                "description": "Partially update signaling-protocol on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete signaling-protocol",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/signaling-protocol",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "signaling-protocol"
                  ]
                },
                "description": "Remove signaling-protocol from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get load-balance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance"
                  ]
                },
                "description": "Retrieve load-balance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace load-balance",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance"
                  ]
                },
                "description": "Create or replace load-balance on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ethernet\": \"configured-value\",\n  \"flow-label\": {\n    \"direction\": \"inbound\",\n    \"tlv-code-17\": true,\n    \"static\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update load-balance",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance"
                  ]
                },
                "description": "Partially update load-balance on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ethernet\": \"configured-value\",\n  \"flow-label\": {\n    \"direction\": \"inbound\",\n    \"tlv-code-17\": true,\n    \"static\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete load-balance",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance"
                  ]
                },
                "description": "Remove load-balance from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ethernet",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/ethernet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "ethernet"
                  ]
                },
                "description": "Retrieve ethernet from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ethernet",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/ethernet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "ethernet"
                  ]
                },
                "description": "Create or replace ethernet on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ethernet",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/ethernet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "ethernet"
                  ]
                },
                "description": "Partially update ethernet on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ethernet",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/ethernet",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "ethernet"
                  ]
                },
                "description": "Remove ethernet from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get flow-label",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/flow-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "flow-label"
                  ]
                },
                "description": "Retrieve flow-label from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace flow-label",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/flow-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "flow-label"
                  ]
                },
                "description": "Create or replace flow-label on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"direction\": \"inbound\",\n  \"tlv-code-17\": true,\n  \"static\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update flow-label",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/flow-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "flow-label"
                  ]
                },
                "description": "Partially update flow-label on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"direction\": \"inbound\",\n  \"tlv-code-17\": true,\n  \"static\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete flow-label",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/flow-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "flow-label"
                  ]
                },
                "description": "Remove flow-label from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get direction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/flow-label/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "flow-label",
                    "direction"
                  ]
                },
                "description": "Retrieve direction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace direction",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/flow-label/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "flow-label",
                    "direction"
                  ]
                },
                "description": "Create or replace direction on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"inbound\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update direction",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/flow-label/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "flow-label",
                    "direction"
                  ]
                },
                "description": "Partially update direction on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"inbound\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete direction",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/flow-label/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "flow-label",
                    "direction"
                  ]
                },
                "description": "Remove direction from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tlv-code-17",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/flow-label/tlv-code-17",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "flow-label",
                    "tlv-code-17"
                  ]
                },
                "description": "Retrieve tlv-code-17 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tlv-code-17",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/flow-label/tlv-code-17",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "flow-label",
                    "tlv-code-17"
                  ]
                },
                "description": "Create or replace tlv-code-17 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tlv-code-17",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/flow-label/tlv-code-17",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "flow-label",
                    "tlv-code-17"
                  ]
                },
                "description": "Partially update tlv-code-17 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tlv-code-17",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/flow-label/tlv-code-17",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "flow-label",
                    "tlv-code-17"
                  ]
                },
                "description": "Remove tlv-code-17 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get static",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/flow-label/static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "flow-label",
                    "static"
                  ]
                },
                "description": "Retrieve static from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace static",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/flow-label/static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "flow-label",
                    "static"
                  ]
                },
                "description": "Create or replace static on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update static",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/flow-label/static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "flow-label",
                    "static"
                  ]
                },
                "description": "Partially update static on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete static",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/load-balance/flow-label/static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "load-balance",
                    "flow-label",
                    "static"
                  ]
                },
                "description": "Remove static from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get preferred-path",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/preferred-path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "preferred-path"
                  ]
                },
                "description": "Retrieve preferred-path from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace preferred-path",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/preferred-path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "preferred-path"
                  ]
                },
                "description": "Create or replace preferred-path on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interface\": \"GigabitEthernet1/0/1\",\n  \"disable-fallback\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update preferred-path",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/preferred-path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "preferred-path"
                  ]
                },
                "description": "Partially update preferred-path on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interface\": \"GigabitEthernet1/0/1\",\n  \"disable-fallback\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete preferred-path",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/preferred-path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "preferred-path"
                  ]
                },
                "description": "Remove preferred-path from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/preferred-path/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "preferred-path",
                    "interface"
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/preferred-path/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "preferred-path",
                    "interface"
                  ]
                },
                "description": "Create or replace interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"GigabitEthernet1/0/1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/preferred-path/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "preferred-path",
                    "interface"
                  ]
                },
                "description": "Partially update interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"GigabitEthernet1/0/1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/preferred-path/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "preferred-path",
                    "interface"
                  ]
                },
                "description": "Remove interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get disable-fallback",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/preferred-path/disable-fallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "preferred-path",
                    "disable-fallback"
                  ]
                },
                "description": "Retrieve disable-fallback from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace disable-fallback",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/preferred-path/disable-fallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "preferred-path",
                    "disable-fallback"
                  ]
                },
                "description": "Create or replace disable-fallback on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update disable-fallback",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/preferred-path/disable-fallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "preferred-path",
                    "disable-fallback"
                  ]
                },
                "description": "Partially update disable-fallback on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete disable-fallback",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/preferred-path/disable-fallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "preferred-path",
                    "disable-fallback"
                  ]
                },
                "description": "Remove disable-fallback from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sequencing",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/sequencing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "sequencing"
                  ]
                },
                "description": "Retrieve sequencing from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sequencing",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/sequencing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "sequencing"
                  ]
                },
                "description": "Create or replace sequencing on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"direction\": \"inbound\",\n  \"resync\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sequencing",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/sequencing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "sequencing"
                  ]
                },
                "description": "Partially update sequencing on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"direction\": \"inbound\",\n  \"resync\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sequencing",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/sequencing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "sequencing"
                  ]
                },
                "description": "Remove sequencing from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get direction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/sequencing/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "sequencing",
                    "direction"
                  ]
                },
                "description": "Retrieve direction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace direction",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/sequencing/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "sequencing",
                    "direction"
                  ]
                },
                "description": "Create or replace direction on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"inbound\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update direction",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/sequencing/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "sequencing",
                    "direction"
                  ]
                },
                "description": "Partially update direction on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"inbound\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete direction",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/sequencing/direction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "sequencing",
                    "direction"
                  ]
                },
                "description": "Remove direction from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get resync",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/sequencing/resync",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "sequencing",
                    "resync"
                  ]
                },
                "description": "Retrieve resync from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace resync",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/sequencing/resync",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "sequencing",
                    "resync"
                  ]
                },
                "description": "Create or replace resync on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update resync",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/sequencing/resync",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "sequencing",
                    "resync"
                  ]
                },
                "description": "Partially update resync on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete resync",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/sequencing/resync",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "sequencing",
                    "resync"
                  ]
                },
                "description": "Remove resync from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/vc-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "vc-type"
                  ]
                },
                "description": "Retrieve vc-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vc-type",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/vc-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "vc-type"
                  ]
                },
                "description": "Create or replace vc-type on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vc-type",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/vc-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "vc-type"
                  ]
                },
                "description": "Partially update vc-type on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vc-type",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/vc-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "vc-type"
                  ]
                },
                "description": "Remove vc-type from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get switching-tlv",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/switching-tlv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "switching-tlv"
                  ]
                },
                "description": "Retrieve switching-tlv from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace switching-tlv",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/switching-tlv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "switching-tlv"
                  ]
                },
                "description": "Create or replace switching-tlv on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update switching-tlv",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/switching-tlv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "switching-tlv"
                  ]
                },
                "description": "Partially update switching-tlv on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete switching-tlv",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/switching-tlv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "switching-tlv"
                  ]
                },
                "description": "Remove switching-tlv from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vccv",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/vccv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "vccv"
                  ]
                },
                "description": "Retrieve vccv from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vccv",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/vccv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "vccv"
                  ]
                },
                "description": "Create or replace vccv on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"control-word\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vccv",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/vccv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "vccv"
                  ]
                },
                "description": "Partially update vccv on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"control-word\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vccv",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/vccv",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "vccv"
                  ]
                },
                "description": "Remove vccv from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get control-word",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/vccv/control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "vccv",
                    "control-word"
                  ]
                },
                "description": "Retrieve control-word from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace control-word",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/vccv/control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "vccv",
                    "control-word"
                  ]
                },
                "description": "Create or replace control-word on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update control-word",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/vccv/control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "vccv",
                    "control-word"
                  ]
                },
                "description": "Partially update control-word on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete control-word",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/vccv/control-word",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "vccv",
                    "control-word"
                  ]
                },
                "description": "Remove control-word from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get switchover-delay",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/switchover-delay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "switchover-delay"
                  ]
                },
                "description": "Retrieve switchover-delay from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace switchover-delay",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/switchover-delay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "switchover-delay"
                  ]
                },
                "description": "Create or replace switchover-delay on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"switchover-timer\": 1,\n  \"timer\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update switchover-delay",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/switchover-delay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "switchover-delay"
                  ]
                },
                "description": "Partially update switchover-delay on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"switchover-timer\": 1,\n  \"timer\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete switchover-delay",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/switchover-delay",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "switchover-delay"
                  ]
                },
                "description": "Remove switchover-delay from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get switchover-timer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/switchover-delay/switchover-timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "switchover-delay",
                    "switchover-timer"
                  ]
                },
                "description": "Retrieve switchover-timer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace switchover-timer",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/switchover-delay/switchover-timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "switchover-delay",
                    "switchover-timer"
                  ]
                },
                "description": "Create or replace switchover-timer on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update switchover-timer",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/switchover-delay/switchover-timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "switchover-delay",
                    "switchover-timer"
                  ]
                },
                "description": "Partially update switchover-timer on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete switchover-timer",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/switchover-delay/switchover-timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "switchover-delay",
                    "switchover-timer"
                  ]
                },
                "description": "Remove switchover-timer from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get timer",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/switchover-delay/timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "switchover-delay",
                    "timer"
                  ]
                },
                "description": "Retrieve timer from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace timer",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/switchover-delay/timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "switchover-delay",
                    "timer"
                  ]
                },
                "description": "Create or replace timer on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update timer",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/switchover-delay/timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "switchover-delay",
                    "timer"
                  ]
                },
                "description": "Partially update timer on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete timer",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/switchover-delay/timer",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "switchover-delay",
                    "timer"
                  ]
                },
                "description": "Remove timer from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get source-ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/source-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "source-ip"
                  ]
                },
                "description": "Retrieve source-ip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace source-ip",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/source-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "source-ip"
                  ]
                },
                "description": "Create or replace source-ip on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update source-ip",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/source-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "source-ip"
                  ]
                },
                "description": "Partially update source-ip on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete source-ip",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/source-ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "source-ip"
                  ]
                },
                "description": "Remove source-ip from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tag-rewrite-ingress-vlan",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/tag-rewrite-ingress-vlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "tag-rewrite-ingress-vlan"
                  ]
                },
                "description": "Retrieve tag-rewrite-ingress-vlan from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tag-rewrite-ingress-vlan",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/tag-rewrite-ingress-vlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "tag-rewrite-ingress-vlan"
                  ]
                },
                "description": "Create or replace tag-rewrite-ingress-vlan on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tag-rewrite-ingress-vlan",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/tag-rewrite-ingress-vlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "tag-rewrite-ingress-vlan"
                  ]
                },
                "description": "Partially update tag-rewrite-ingress-vlan on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tag-rewrite-ingress-vlan",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/tag-rewrite-ingress-vlan",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "tag-rewrite-ingress-vlan"
                  ]
                },
                "description": "Remove tag-rewrite-ingress-vlan from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac-withdraw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/mac-withdraw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "mac-withdraw"
                  ]
                },
                "description": "Retrieve mac-withdraw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mac-withdraw",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/mac-withdraw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "mac-withdraw"
                  ]
                },
                "description": "Create or replace mac-withdraw on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mac-withdraw",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/mac-withdraw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "mac-withdraw"
                  ]
                },
                "description": "Partially update mac-withdraw on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mac-withdraw",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/mac-withdraw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "mac-withdraw"
                  ]
                },
                "description": "Remove mac-withdraw from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status"
                  ]
                },
                "description": "Retrieve status from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace status",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status"
                  ]
                },
                "description": "Create or replace status on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"decoupled\": true,\n  \"disable\": false,\n  \"peer-topo-dual-homed\": true,\n  \"route-watch-disable\": true,\n  \"redundancy-master\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update status",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status"
                  ]
                },
                "description": "Partially update status on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"decoupled\": true,\n  \"disable\": false,\n  \"peer-topo-dual-homed\": true,\n  \"route-watch-disable\": true,\n  \"redundancy-master\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete status",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status"
                  ]
                },
                "description": "Remove status from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get decoupled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/decoupled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "decoupled"
                  ]
                },
                "description": "Retrieve decoupled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace decoupled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/decoupled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "decoupled"
                  ]
                },
                "description": "Create or replace decoupled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update decoupled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/decoupled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "decoupled"
                  ]
                },
                "description": "Partially update decoupled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete decoupled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/decoupled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "decoupled"
                  ]
                },
                "description": "Remove decoupled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get disable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "disable"
                  ]
                },
                "description": "Retrieve disable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace disable",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "disable"
                  ]
                },
                "description": "Create or replace disable on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update disable",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "disable"
                  ]
                },
                "description": "Partially update disable on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete disable",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "disable"
                  ]
                },
                "description": "Remove disable from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get peer-topo-dual-homed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/peer-topo-dual-homed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "peer-topo-dual-homed"
                  ]
                },
                "description": "Retrieve peer-topo-dual-homed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace peer-topo-dual-homed",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/peer-topo-dual-homed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "peer-topo-dual-homed"
                  ]
                },
                "description": "Create or replace peer-topo-dual-homed on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update peer-topo-dual-homed",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/peer-topo-dual-homed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "peer-topo-dual-homed"
                  ]
                },
                "description": "Partially update peer-topo-dual-homed on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete peer-topo-dual-homed",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/peer-topo-dual-homed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "peer-topo-dual-homed"
                  ]
                },
                "description": "Remove peer-topo-dual-homed from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get route-watch-disable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/route-watch-disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "route-watch-disable"
                  ]
                },
                "description": "Retrieve route-watch-disable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace route-watch-disable",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/route-watch-disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "route-watch-disable"
                  ]
                },
                "description": "Create or replace route-watch-disable on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update route-watch-disable",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/route-watch-disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "route-watch-disable"
                  ]
                },
                "description": "Partially update route-watch-disable on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete route-watch-disable",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/route-watch-disable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "route-watch-disable"
                  ]
                },
                "description": "Remove route-watch-disable from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get redundancy-master",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/redundancy-master",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "redundancy-master"
                  ]
                },
                "description": "Retrieve redundancy-master from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace redundancy-master",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/redundancy-master",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "redundancy-master"
                  ]
                },
                "description": "Create or replace redundancy-master on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update redundancy-master",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/redundancy-master",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "redundancy-master"
                  ]
                },
                "description": "Partially update redundancy-master on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete redundancy-master",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pw-neighbor/status/redundancy-master",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pw-neighbor",
                    "status",
                    "redundancy-master"
                  ]
                },
                "description": "Remove redundancy-master from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pseudowire",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowire",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowire"
                  ]
                },
                "description": "Retrieve pseudowire from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get neighbor-ip-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowire/neighbor-ip-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowire",
                    "neighbor-ip-address"
                  ]
                },
                "description": "Retrieve neighbor-ip-address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vc-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-pw:pseudowire-state/pseudowire/vc-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-pw:pseudowire-state",
                    "pseudowire",
                    "vc-id"
                  ]
                },
                "description": "Retrieve vc-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "cisco-smart-license",
          "description": "Cisco IOS-XE - cisco-smart-license\n\nData from `cisco-smart-license` module.\n\n**Root containers:** 1 (licensing)\n**Paths:** 228 | **Operations:** 318\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 228 | Operations: 318",
          "item": [
            {
              "name": "GET Get licensing",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing"
                  ]
                },
                "description": "Retrieve licensing from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace licensing",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing"
                  ]
                },
                "description": "Create or replace licensing on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"config\": {\n    \"enable\": true,\n    \"custom-id\": \"1\",\n    \"privacy\": {\n      \"hostname\": true,\n      \"version\": true\n    },\n    \"utility\": {\n      \"utility-enable\": true,\n      \"customer-info\": {\n        \"id\": {},\n        \"name\": {},\n        \"street\": {},\n        \"city\": {},\n        \"state\": {},\n        \"country\": {},\n        \"postal-code\": {}\n      }\n    },\n    \"usage\": {\n      \"interval\": 60,\n      \"customer-tags\": {\n        \"tag1\": {},\n        \"tag2\": {},\n        \"tag3\": {},\n        \"tag4\": {}\n      }\n    },\n    \"transport\": {\n      \"transport-type\": \"configured-value\",\n      \"transport-smart\": {\n        \"url-default\": {}\n      },\n      \"transport-cslu\": {\n        \"url-cslu\": {}\n      }\n    }\n  },\n  \"state\": {\n    \"always-enabled\": true,\n    \"smart-enabled\": true,\n    \"version\": \"17.18.1\",\n    \"state-info\": {\n      \"registration\": {\n        \"registration-state\": {},\n        \"registration-in-progress\": {},\n        \"registration-failed\": {},\n        \"registration-retry\": {},\n        \"registration-complete\": {},\n        \"export-control-allowed\": {}\n      },\n      \"authorization\": {\n        \"authorization-state\": {},\n        \"authorization-none\": {},\n        \"authorization-eval\": {},\n        \"authorization-eval-expired\": {},\n        \"authorization-authorized\": {},\n        \"authorization-authorized-reservation\": {},\n        \"authorization-out-of-compliance\": {},\n        \"authorization-authorization-expired\": {}\n      },\n      \"utility\": {\n        \"enabled\": {},\n        \"reporting\": {},\n        \"reporting-times\": {},\n        \"customer-info\": {}\n      },\n      \"custom-id\": \"1\",\n      \"transport\": {\n        \"transport-type\": {},\n        \"url-settings\": {}\n      },\n      \"privacy\": {\n        \"hostname\": {},\n        \"version\": {}\n      },\n      \"evaluation\": {\n        \"eval-in-use\": {},\n        \"eval-expired\": {},\n        \"eval-period-left\": {},\n        \"eval-expire-time\": {}\n      },\n      \"udi\": {\n        \"pid\": {},\n        \"sn\": {},\n        \"vid\": {},\n        \"uuid\": {},\n        \"suvi\": {},\n        \"host-identifier\": {},\n        \"mac-address\": {}\n      },\n      \"usage\": [\n        {}\n      ],\n      \"policy\": {\n        \"policy-type\": {},\n        \"policy-name\": {},\n        \"install-time\": {},\n        \"ack-required\": {},\n        \"policy-enforced\": {},\n        \"policy-export\": {},\n        \"policy-subscription\": {},\n        \"policy-perpetual\": {}\n      }\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update licensing",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing"
                  ]
                },
                "description": "Partially update licensing on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"config\": {\n    \"enable\": true,\n    \"custom-id\": \"1\",\n    \"privacy\": {\n      \"hostname\": true,\n      \"version\": true\n    },\n    \"utility\": {\n      \"utility-enable\": true,\n      \"customer-info\": {\n        \"id\": {},\n        \"name\": {},\n        \"street\": {},\n        \"city\": {},\n        \"state\": {},\n        \"country\": {},\n        \"postal-code\": {}\n      }\n    },\n    \"usage\": {\n      \"interval\": 60,\n      \"customer-tags\": {\n        \"tag1\": {},\n        \"tag2\": {},\n        \"tag3\": {},\n        \"tag4\": {}\n      }\n    },\n    \"transport\": {\n      \"transport-type\": \"configured-value\",\n      \"transport-smart\": {\n        \"url-default\": {}\n      },\n      \"transport-cslu\": {\n        \"url-cslu\": {}\n      }\n    }\n  },\n  \"state\": {\n    \"always-enabled\": true,\n    \"smart-enabled\": true,\n    \"version\": \"17.18.1\",\n    \"state-info\": {\n      \"registration\": {\n        \"registration-state\": {},\n        \"registration-in-progress\": {},\n        \"registration-failed\": {},\n        \"registration-retry\": {},\n        \"registration-complete\": {},\n        \"export-control-allowed\": {}\n      },\n      \"authorization\": {\n        \"authorization-state\": {},\n        \"authorization-none\": {},\n        \"authorization-eval\": {},\n        \"authorization-eval-expired\": {},\n        \"authorization-authorized\": {},\n        \"authorization-authorized-reservation\": {},\n        \"authorization-out-of-compliance\": {},\n        \"authorization-authorization-expired\": {}\n      },\n      \"utility\": {\n        \"enabled\": {},\n        \"reporting\": {},\n        \"reporting-times\": {},\n        \"customer-info\": {}\n      },\n      \"custom-id\": \"1\",\n      \"transport\": {\n        \"transport-type\": {},\n        \"url-settings\": {}\n      },\n      \"privacy\": {\n        \"hostname\": {},\n        \"version\": {}\n      },\n      \"evaluation\": {\n        \"eval-in-use\": {},\n        \"eval-expired\": {},\n        \"eval-period-left\": {},\n        \"eval-expire-time\": {}\n      },\n      \"udi\": {\n        \"pid\": {},\n        \"sn\": {},\n        \"vid\": {},\n        \"uuid\": {},\n        \"suvi\": {},\n        \"host-identifier\": {},\n        \"mac-address\": {}\n      },\n      \"usage\": [\n        {}\n      ],\n      \"policy\": {\n        \"policy-type\": {},\n        \"policy-name\": {},\n        \"install-time\": {},\n        \"ack-required\": {},\n        \"policy-enforced\": {},\n        \"policy-export\": {},\n        \"policy-subscription\": {},\n        \"policy-perpetual\": {}\n      }\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete licensing",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing"
                  ]
                },
                "description": "Remove licensing from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get config",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config"
                  ]
                },
                "description": "Retrieve config from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace config",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config"
                  ]
                },
                "description": "Create or replace config on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enable\": true,\n  \"custom-id\": \"1\",\n  \"privacy\": {\n    \"hostname\": true,\n    \"version\": true\n  },\n  \"utility\": {\n    \"utility-enable\": true,\n    \"customer-info\": {\n      \"id\": \"1\",\n      \"name\": \"example-1\",\n      \"street\": \"configured-value\",\n      \"city\": \"configured-value\",\n      \"state\": \"active\",\n      \"country\": \"US\",\n      \"postal-code\": \"configured-value\"\n    }\n  },\n  \"usage\": {\n    \"interval\": 60,\n    \"customer-tags\": {\n      \"tag1\": \"configured-value\",\n      \"tag2\": \"configured-value\",\n      \"tag3\": \"configured-value\",\n      \"tag4\": \"configured-value\"\n    }\n  },\n  \"transport\": {\n    \"transport-type\": \"configured-value\",\n    \"transport-smart\": {\n      \"url-default\": true\n    },\n    \"transport-cslu\": {\n      \"url-cslu\": \"https://10.1.1.1/restconf\"\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update config",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config"
                  ]
                },
                "description": "Partially update config on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enable\": true,\n  \"custom-id\": \"1\",\n  \"privacy\": {\n    \"hostname\": true,\n    \"version\": true\n  },\n  \"utility\": {\n    \"utility-enable\": true,\n    \"customer-info\": {\n      \"id\": \"1\",\n      \"name\": \"example-1\",\n      \"street\": \"configured-value\",\n      \"city\": \"configured-value\",\n      \"state\": \"active\",\n      \"country\": \"US\",\n      \"postal-code\": \"configured-value\"\n    }\n  },\n  \"usage\": {\n    \"interval\": 60,\n    \"customer-tags\": {\n      \"tag1\": \"configured-value\",\n      \"tag2\": \"configured-value\",\n      \"tag3\": \"configured-value\",\n      \"tag4\": \"configured-value\"\n    }\n  },\n  \"transport\": {\n    \"transport-type\": \"configured-value\",\n    \"transport-smart\": {\n      \"url-default\": true\n    },\n    \"transport-cslu\": {\n      \"url-cslu\": \"https://10.1.1.1/restconf\"\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete config",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config"
                  ]
                },
                "description": "Remove config from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/enable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "enable"
                  ]
                },
                "description": "Retrieve enable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enable",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/enable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "enable"
                  ]
                },
                "description": "Create or replace enable on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enable",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/enable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "enable"
                  ]
                },
                "description": "Partially update enable on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enable",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/enable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "enable"
                  ]
                },
                "description": "Remove enable from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get custom-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/custom-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "custom-id"
                  ]
                },
                "description": "Retrieve custom-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace custom-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/custom-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "custom-id"
                  ]
                },
                "description": "Create or replace custom-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update custom-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/custom-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "custom-id"
                  ]
                },
                "description": "Partially update custom-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete custom-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/custom-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "custom-id"
                  ]
                },
                "description": "Remove custom-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get privacy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/privacy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "privacy"
                  ]
                },
                "description": "Retrieve privacy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace privacy",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/privacy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "privacy"
                  ]
                },
                "description": "Create or replace privacy on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"hostname\": true,\n  \"version\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update privacy",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/privacy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "privacy"
                  ]
                },
                "description": "Partially update privacy on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"hostname\": true,\n  \"version\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete privacy",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/privacy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "privacy"
                  ]
                },
                "description": "Remove privacy from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostname",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/privacy/hostname",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "privacy",
                    "hostname"
                  ]
                },
                "description": "Retrieve hostname from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace hostname",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/privacy/hostname",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "privacy",
                    "hostname"
                  ]
                },
                "description": "Create or replace hostname on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update hostname",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/privacy/hostname",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "privacy",
                    "hostname"
                  ]
                },
                "description": "Partially update hostname on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete hostname",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/privacy/hostname",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "privacy",
                    "hostname"
                  ]
                },
                "description": "Remove hostname from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get version",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/privacy/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "privacy",
                    "version"
                  ]
                },
                "description": "Retrieve version from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace version",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/privacy/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "privacy",
                    "version"
                  ]
                },
                "description": "Create or replace version on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update version",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/privacy/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "privacy",
                    "version"
                  ]
                },
                "description": "Partially update version on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete version",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/privacy/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "privacy",
                    "version"
                  ]
                },
                "description": "Remove version from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get utility",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility"
                  ]
                },
                "description": "Retrieve utility from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace utility",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility"
                  ]
                },
                "description": "Create or replace utility on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"utility-enable\": true,\n  \"customer-info\": {\n    \"id\": \"1\",\n    \"name\": \"example-1\",\n    \"street\": \"configured-value\",\n    \"city\": \"configured-value\",\n    \"state\": \"active\",\n    \"country\": \"US\",\n    \"postal-code\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update utility",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility"
                  ]
                },
                "description": "Partially update utility on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"utility-enable\": true,\n  \"customer-info\": {\n    \"id\": \"1\",\n    \"name\": \"example-1\",\n    \"street\": \"configured-value\",\n    \"city\": \"configured-value\",\n    \"state\": \"active\",\n    \"country\": \"US\",\n    \"postal-code\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete utility",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility"
                  ]
                },
                "description": "Remove utility from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get utility-enable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/utility-enable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "utility-enable"
                  ]
                },
                "description": "Retrieve utility-enable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace utility-enable",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/utility-enable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "utility-enable"
                  ]
                },
                "description": "Create or replace utility-enable on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update utility-enable",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/utility-enable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "utility-enable"
                  ]
                },
                "description": "Partially update utility-enable on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete utility-enable",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/utility-enable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "utility-enable"
                  ]
                },
                "description": "Remove utility-enable from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get customer-info",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info"
                  ]
                },
                "description": "Retrieve customer-info from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace customer-info",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info"
                  ]
                },
                "description": "Create or replace customer-info on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"1\",\n  \"name\": \"example-1\",\n  \"street\": \"configured-value\",\n  \"city\": \"configured-value\",\n  \"state\": \"active\",\n  \"country\": \"US\",\n  \"postal-code\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update customer-info",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info"
                  ]
                },
                "description": "Partially update customer-info on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"id\": \"1\",\n  \"name\": \"example-1\",\n  \"street\": \"configured-value\",\n  \"city\": \"configured-value\",\n  \"state\": \"active\",\n  \"country\": \"US\",\n  \"postal-code\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete customer-info",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info"
                  ]
                },
                "description": "Remove customer-info from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "id"
                  ]
                },
                "description": "Retrieve id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "id"
                  ]
                },
                "description": "Create or replace id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "id"
                  ]
                },
                "description": "Partially update id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "id"
                  ]
                },
                "description": "Remove id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get street",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/street",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "street"
                  ]
                },
                "description": "Retrieve street from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace street",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/street",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "street"
                  ]
                },
                "description": "Create or replace street on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update street",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/street",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "street"
                  ]
                },
                "description": "Partially update street on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete street",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/street",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "street"
                  ]
                },
                "description": "Remove street from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get city",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/city",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "city"
                  ]
                },
                "description": "Retrieve city from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace city",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/city",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "city"
                  ]
                },
                "description": "Create or replace city on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update city",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/city",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "city"
                  ]
                },
                "description": "Partially update city on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete city",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/city",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "city"
                  ]
                },
                "description": "Remove city from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "state"
                  ]
                },
                "description": "Retrieve state from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace state",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "state"
                  ]
                },
                "description": "Create or replace state on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"active\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update state",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "state"
                  ]
                },
                "description": "Partially update state on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"active\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete state",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "state"
                  ]
                },
                "description": "Remove state from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get country",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/country",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "country"
                  ]
                },
                "description": "Retrieve country from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace country",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/country",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "country"
                  ]
                },
                "description": "Create or replace country on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"US\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update country",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/country",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "country"
                  ]
                },
                "description": "Partially update country on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"US\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete country",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/country",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "country"
                  ]
                },
                "description": "Remove country from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get postal-code",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/postal-code",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "postal-code"
                  ]
                },
                "description": "Retrieve postal-code from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace postal-code",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/postal-code",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "postal-code"
                  ]
                },
                "description": "Create or replace postal-code on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update postal-code",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/postal-code",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "postal-code"
                  ]
                },
                "description": "Partially update postal-code on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete postal-code",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/utility/customer-info/postal-code",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "utility",
                    "customer-info",
                    "postal-code"
                  ]
                },
                "description": "Remove postal-code from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage"
                  ]
                },
                "description": "Retrieve usage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace usage",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage"
                  ]
                },
                "description": "Create or replace usage on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interval\": 60,\n  \"customer-tags\": {\n    \"tag1\": \"configured-value\",\n    \"tag2\": \"configured-value\",\n    \"tag3\": \"configured-value\",\n    \"tag4\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update usage",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage"
                  ]
                },
                "description": "Partially update usage on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interval\": 60,\n  \"customer-tags\": {\n    \"tag1\": \"configured-value\",\n    \"tag2\": \"configured-value\",\n    \"tag3\": \"configured-value\",\n    \"tag4\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete usage",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage"
                  ]
                },
                "description": "Remove usage from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/interval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "interval"
                  ]
                },
                "description": "Retrieve interval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace interval",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/interval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "interval"
                  ]
                },
                "description": "Create or replace interval on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "60",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update interval",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/interval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "interval"
                  ]
                },
                "description": "Partially update interval on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "60",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete interval",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/interval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "interval"
                  ]
                },
                "description": "Remove interval from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get customer-tags",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags"
                  ]
                },
                "description": "Retrieve customer-tags from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace customer-tags",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags"
                  ]
                },
                "description": "Create or replace customer-tags on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"tag1\": \"configured-value\",\n  \"tag2\": \"configured-value\",\n  \"tag3\": \"configured-value\",\n  \"tag4\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update customer-tags",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags"
                  ]
                },
                "description": "Partially update customer-tags on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"tag1\": \"configured-value\",\n  \"tag2\": \"configured-value\",\n  \"tag3\": \"configured-value\",\n  \"tag4\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete customer-tags",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags"
                  ]
                },
                "description": "Remove customer-tags from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tag1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags/tag1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags",
                    "tag1"
                  ]
                },
                "description": "Retrieve tag1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tag1",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags/tag1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags",
                    "tag1"
                  ]
                },
                "description": "Create or replace tag1 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tag1",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags/tag1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags",
                    "tag1"
                  ]
                },
                "description": "Partially update tag1 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tag1",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags/tag1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags",
                    "tag1"
                  ]
                },
                "description": "Remove tag1 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tag2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags/tag2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags",
                    "tag2"
                  ]
                },
                "description": "Retrieve tag2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tag2",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags/tag2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags",
                    "tag2"
                  ]
                },
                "description": "Create or replace tag2 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tag2",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags/tag2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags",
                    "tag2"
                  ]
                },
                "description": "Partially update tag2 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tag2",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags/tag2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags",
                    "tag2"
                  ]
                },
                "description": "Remove tag2 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tag3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags/tag3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags",
                    "tag3"
                  ]
                },
                "description": "Retrieve tag3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tag3",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags/tag3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags",
                    "tag3"
                  ]
                },
                "description": "Create or replace tag3 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tag3",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags/tag3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags",
                    "tag3"
                  ]
                },
                "description": "Partially update tag3 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tag3",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags/tag3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags",
                    "tag3"
                  ]
                },
                "description": "Remove tag3 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tag4",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags/tag4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags",
                    "tag4"
                  ]
                },
                "description": "Retrieve tag4 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tag4",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags/tag4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags",
                    "tag4"
                  ]
                },
                "description": "Create or replace tag4 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tag4",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags/tag4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags",
                    "tag4"
                  ]
                },
                "description": "Partially update tag4 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tag4",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/usage/customer-tags/tag4",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "usage",
                    "customer-tags",
                    "tag4"
                  ]
                },
                "description": "Remove tag4 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get transport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport"
                  ]
                },
                "description": "Retrieve transport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace transport",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport"
                  ]
                },
                "description": "Create or replace transport on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"transport-type\": \"configured-value\",\n  \"transport-smart\": {\n    \"url-default\": true\n  },\n  \"transport-cslu\": {\n    \"url-cslu\": \"https://10.1.1.1/restconf\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update transport",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport"
                  ]
                },
                "description": "Partially update transport on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"transport-type\": \"configured-value\",\n  \"transport-smart\": {\n    \"url-default\": true\n  },\n  \"transport-cslu\": {\n    \"url-cslu\": \"https://10.1.1.1/restconf\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete transport",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport"
                  ]
                },
                "description": "Remove transport from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get transport-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-type"
                  ]
                },
                "description": "Retrieve transport-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace transport-type",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-type"
                  ]
                },
                "description": "Create or replace transport-type on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update transport-type",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-type"
                  ]
                },
                "description": "Partially update transport-type on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete transport-type",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-type"
                  ]
                },
                "description": "Remove transport-type from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get transport-smart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-smart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-smart"
                  ]
                },
                "description": "Retrieve transport-smart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace transport-smart",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-smart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-smart"
                  ]
                },
                "description": "Create or replace transport-smart on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"url-default\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update transport-smart",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-smart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-smart"
                  ]
                },
                "description": "Partially update transport-smart on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"url-default\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete transport-smart",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-smart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-smart"
                  ]
                },
                "description": "Remove transport-smart from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get url-default",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-smart/url-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-smart",
                    "url-default"
                  ]
                },
                "description": "Retrieve url-default from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace url-default",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-smart/url-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-smart",
                    "url-default"
                  ]
                },
                "description": "Create or replace url-default on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update url-default",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-smart/url-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-smart",
                    "url-default"
                  ]
                },
                "description": "Partially update url-default on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete url-default",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-smart/url-default",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-smart",
                    "url-default"
                  ]
                },
                "description": "Remove url-default from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get transport-cslu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-cslu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-cslu"
                  ]
                },
                "description": "Retrieve transport-cslu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace transport-cslu",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-cslu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-cslu"
                  ]
                },
                "description": "Create or replace transport-cslu on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"url-cslu\": \"https://10.1.1.1/restconf\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update transport-cslu",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-cslu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-cslu"
                  ]
                },
                "description": "Partially update transport-cslu on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"url-cslu\": \"https://10.1.1.1/restconf\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete transport-cslu",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-cslu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-cslu"
                  ]
                },
                "description": "Remove transport-cslu from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get url-cslu",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-cslu/url-cslu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-cslu",
                    "url-cslu"
                  ]
                },
                "description": "Retrieve url-cslu from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace url-cslu",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-cslu/url-cslu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-cslu",
                    "url-cslu"
                  ]
                },
                "description": "Create or replace url-cslu on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update url-cslu",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-cslu/url-cslu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-cslu",
                    "url-cslu"
                  ]
                },
                "description": "Partially update url-cslu on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete url-cslu",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/config/transport/transport-cslu/url-cslu",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "config",
                    "transport",
                    "transport-cslu",
                    "url-cslu"
                  ]
                },
                "description": "Remove url-cslu from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state"
                  ]
                },
                "description": "Retrieve state from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get always-enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/always-enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "always-enabled"
                  ]
                },
                "description": "Retrieve always-enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get smart-enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/smart-enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "smart-enabled"
                  ]
                },
                "description": "Retrieve smart-enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get version",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "version"
                  ]
                },
                "description": "Retrieve version from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get state-info",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info"
                  ]
                },
                "description": "Retrieve state-info from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get registration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration"
                  ]
                },
                "description": "Retrieve registration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get registration-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-state"
                  ]
                },
                "description": "Retrieve registration-state from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get registration-in-progress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-in-progress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-in-progress"
                  ]
                },
                "description": "Retrieve registration-in-progress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get start-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-in-progress/start-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-in-progress",
                    "start-time"
                  ]
                },
                "description": "Retrieve start-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get registration-failed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-failed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-failed"
                  ]
                },
                "description": "Retrieve registration-failed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get fail-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-failed/fail-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-failed",
                    "fail-time"
                  ]
                },
                "description": "Retrieve fail-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get fail-message",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-failed/fail-message",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-failed",
                    "fail-message"
                  ]
                },
                "description": "Retrieve fail-message from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get registration-retry",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-retry",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-retry"
                  ]
                },
                "description": "Retrieve registration-retry from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get retry-next-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-retry/retry-next-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-retry",
                    "retry-next-time"
                  ]
                },
                "description": "Retrieve retry-next-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get fail-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-retry/fail-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-retry",
                    "fail-time"
                  ]
                },
                "description": "Retrieve fail-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get fail-message",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-retry/fail-message",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-retry",
                    "fail-message"
                  ]
                },
                "description": "Retrieve fail-message from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get registration-complete",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-complete",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-complete"
                  ]
                },
                "description": "Retrieve registration-complete from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get complete-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-complete/complete-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-complete",
                    "complete-time"
                  ]
                },
                "description": "Retrieve complete-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get last-renew-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-complete/last-renew-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-complete",
                    "last-renew-time"
                  ]
                },
                "description": "Retrieve last-renew-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get next-renew-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-complete/next-renew-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-complete",
                    "next-renew-time"
                  ]
                },
                "description": "Retrieve next-renew-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expire-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-complete/expire-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-complete",
                    "expire-time"
                  ]
                },
                "description": "Retrieve expire-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get last-renew-success",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-complete/last-renew-success",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-complete",
                    "last-renew-success"
                  ]
                },
                "description": "Retrieve last-renew-success from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get fail-message",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-complete/fail-message",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-complete",
                    "fail-message"
                  ]
                },
                "description": "Retrieve fail-message from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get smart-account",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-complete/smart-account",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-complete",
                    "smart-account"
                  ]
                },
                "description": "Retrieve smart-account from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get virtual-account",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/registration-complete/virtual-account",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "registration-complete",
                    "virtual-account"
                  ]
                },
                "description": "Retrieve virtual-account from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get export-control-allowed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/registration/export-control-allowed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "registration",
                    "export-control-allowed"
                  ]
                },
                "description": "Retrieve export-control-allowed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get authorization",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization"
                  ]
                },
                "description": "Retrieve authorization from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get authorization-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-state"
                  ]
                },
                "description": "Retrieve authorization-state from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get authorization-none",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-none",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-none"
                  ]
                },
                "description": "Retrieve authorization-none from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get authorization-eval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-eval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-eval"
                  ]
                },
                "description": "Retrieve authorization-eval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get seconds-left",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-eval/seconds-left",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-eval",
                    "seconds-left"
                  ]
                },
                "description": "Retrieve seconds-left from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get authorization-eval-expired",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-eval-expired",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-eval-expired"
                  ]
                },
                "description": "Retrieve authorization-eval-expired from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expire-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-eval-expired/expire-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-eval-expired",
                    "expire-time"
                  ]
                },
                "description": "Retrieve expire-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get authorization-authorized",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-authorized",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-authorized"
                  ]
                },
                "description": "Retrieve authorization-authorized from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get last-comm-status-success",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-authorized/last-comm-status-success",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-authorized",
                    "last-comm-status-success"
                  ]
                },
                "description": "Retrieve last-comm-status-success from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get fail-message",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-authorized/fail-message",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-authorized",
                    "fail-message"
                  ]
                },
                "description": "Retrieve fail-message from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get last-comm-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-authorized/last-comm-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-authorized",
                    "last-comm-time"
                  ]
                },
                "description": "Retrieve last-comm-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get next-comm-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-authorized/next-comm-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-authorized",
                    "next-comm-time"
                  ]
                },
                "description": "Retrieve next-comm-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get comm-deadline-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-authorized/comm-deadline-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-authorized",
                    "comm-deadline-time"
                  ]
                },
                "description": "Retrieve comm-deadline-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get authorization-authorized-reservation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-authorized-reservation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-authorized-reservation"
                  ]
                },
                "description": "Retrieve authorization-authorized-reservation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reservation-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-authorized-reservation/reservation-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-authorized-reservation",
                    "reservation-time"
                  ]
                },
                "description": "Retrieve reservation-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get authorization-out-of-compliance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-out-of-compliance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-out-of-compliance"
                  ]
                },
                "description": "Retrieve authorization-out-of-compliance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get last-comm-status-success",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-out-of-compliance/last-comm-status-success",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-out-of-compliance",
                    "last-comm-status-success"
                  ]
                },
                "description": "Retrieve last-comm-status-success from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get fail-message",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-out-of-compliance/fail-message",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-out-of-compliance",
                    "fail-message"
                  ]
                },
                "description": "Retrieve fail-message from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get last-comm-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-out-of-compliance/last-comm-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-out-of-compliance",
                    "last-comm-time"
                  ]
                },
                "description": "Retrieve last-comm-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get next-comm-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-out-of-compliance/next-comm-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-out-of-compliance",
                    "next-comm-time"
                  ]
                },
                "description": "Retrieve next-comm-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get comm-deadline-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-out-of-compliance/comm-deadline-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-out-of-compliance",
                    "comm-deadline-time"
                  ]
                },
                "description": "Retrieve comm-deadline-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ooc-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-out-of-compliance/ooc-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-out-of-compliance",
                    "ooc-time"
                  ]
                },
                "description": "Retrieve ooc-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get authorization-authorization-expired",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-authorization-expired",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-authorization-expired"
                  ]
                },
                "description": "Retrieve authorization-authorization-expired from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get last-comm-status-success",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-authorization-expired/last-comm-status-success",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-authorization-expired",
                    "last-comm-status-success"
                  ]
                },
                "description": "Retrieve last-comm-status-success from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get fail-message",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-authorization-expired/fail-message",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-authorization-expired",
                    "fail-message"
                  ]
                },
                "description": "Retrieve fail-message from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get last-comm-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-authorization-expired/last-comm-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-authorization-expired",
                    "last-comm-time"
                  ]
                },
                "description": "Retrieve last-comm-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get next-comm-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-authorization-expired/next-comm-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-authorization-expired",
                    "next-comm-time"
                  ]
                },
                "description": "Retrieve next-comm-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get comm-deadline-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/authorization/authorization-authorization-expired/comm-deadline-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "authorization",
                    "authorization-authorization-expired",
                    "comm-deadline-time"
                  ]
                },
                "description": "Retrieve comm-deadline-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get utility",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/utility",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "utility"
                  ]
                },
                "description": "Retrieve utility from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/utility/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "utility",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reporting",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/utility/reporting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "utility",
                    "reporting"
                  ]
                },
                "description": "Retrieve reporting from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reporting-times",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/utility/reporting-times",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "utility",
                    "reporting-times"
                  ]
                },
                "description": "Retrieve reporting-times from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get last-report-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/utility/reporting-times/last-report-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "utility",
                    "reporting-times",
                    "last-report-time"
                  ]
                },
                "description": "Retrieve last-report-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get last-report-success",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/utility/reporting-times/last-report-success",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "utility",
                    "reporting-times",
                    "last-report-success"
                  ]
                },
                "description": "Retrieve last-report-success from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get fail-message",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/utility/reporting-times/fail-message",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "utility",
                    "reporting-times",
                    "fail-message"
                  ]
                },
                "description": "Retrieve fail-message from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get next-report-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/utility/reporting-times/next-report-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "utility",
                    "reporting-times",
                    "next-report-time"
                  ]
                },
                "description": "Retrieve next-report-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get customer-info",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/utility/customer-info",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "utility",
                    "customer-info"
                  ]
                },
                "description": "Retrieve customer-info from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/utility/customer-info/id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "utility",
                    "customer-info",
                    "id"
                  ]
                },
                "description": "Retrieve id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/utility/customer-info/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "utility",
                    "customer-info",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get street",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/utility/customer-info/street",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "utility",
                    "customer-info",
                    "street"
                  ]
                },
                "description": "Retrieve street from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get city",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/utility/customer-info/city",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "utility",
                    "customer-info",
                    "city"
                  ]
                },
                "description": "Retrieve city from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/utility/customer-info/state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "utility",
                    "customer-info",
                    "state"
                  ]
                },
                "description": "Retrieve state from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get country",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/utility/customer-info/country",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "utility",
                    "customer-info",
                    "country"
                  ]
                },
                "description": "Retrieve country from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get postal-code",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/utility/customer-info/postal-code",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "utility",
                    "customer-info",
                    "postal-code"
                  ]
                },
                "description": "Retrieve postal-code from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get custom-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/custom-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "custom-id"
                  ]
                },
                "description": "Retrieve custom-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get transport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "transport"
                  ]
                },
                "description": "Retrieve transport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get transport-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/transport/transport-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "transport",
                    "transport-type"
                  ]
                },
                "description": "Retrieve transport-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get url-settings",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/transport/url-settings",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "transport",
                    "url-settings"
                  ]
                },
                "description": "Retrieve url-settings from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get url-registration",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/transport/url-settings/url-registration",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "transport",
                    "url-settings",
                    "url-registration"
                  ]
                },
                "description": "Retrieve url-registration from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get url-utility",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/transport/url-settings/url-utility",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "transport",
                    "url-settings",
                    "url-utility"
                  ]
                },
                "description": "Retrieve url-utility from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get privacy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/privacy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "privacy"
                  ]
                },
                "description": "Retrieve privacy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hostname",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/privacy/hostname",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "privacy",
                    "hostname"
                  ]
                },
                "description": "Retrieve hostname from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get version",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/privacy/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "privacy",
                    "version"
                  ]
                },
                "description": "Retrieve version from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get evaluation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/evaluation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "evaluation"
                  ]
                },
                "description": "Retrieve evaluation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get eval-in-use",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/evaluation/eval-in-use",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "evaluation",
                    "eval-in-use"
                  ]
                },
                "description": "Retrieve eval-in-use from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get eval-expired",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/evaluation/eval-expired",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "evaluation",
                    "eval-expired"
                  ]
                },
                "description": "Retrieve eval-expired from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get eval-period-left",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/evaluation/eval-period-left",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "evaluation",
                    "eval-period-left"
                  ]
                },
                "description": "Retrieve eval-period-left from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get time-left",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/evaluation/eval-period-left/time-left",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "evaluation",
                    "eval-period-left",
                    "time-left"
                  ]
                },
                "description": "Retrieve time-left from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get eval-expire-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/evaluation/eval-expire-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "evaluation",
                    "eval-expire-time"
                  ]
                },
                "description": "Retrieve eval-expire-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expire-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/evaluation/eval-expire-time/expire-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "evaluation",
                    "eval-expire-time",
                    "expire-time"
                  ]
                },
                "description": "Retrieve expire-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/udi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "udi"
                  ]
                },
                "description": "Retrieve udi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/udi/pid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "udi",
                    "pid"
                  ]
                },
                "description": "Retrieve pid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/udi/sn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "udi",
                    "sn"
                  ]
                },
                "description": "Retrieve sn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/udi/vid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "udi",
                    "vid"
                  ]
                },
                "description": "Retrieve vid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get uuid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/udi/uuid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "udi",
                    "uuid"
                  ]
                },
                "description": "Retrieve uuid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get suvi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/udi/suvi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "udi",
                    "suvi"
                  ]
                },
                "description": "Retrieve suvi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get host-identifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/udi/host-identifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "udi",
                    "host-identifier"
                  ]
                },
                "description": "Retrieve host-identifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/udi/mac-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "udi",
                    "mac-address"
                  ]
                },
                "description": "Retrieve mac-address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get usage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/usage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "usage"
                  ]
                },
                "description": "Retrieve usage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entitlement-tag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/usage/entitlement-tag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "usage",
                    "entitlement-tag"
                  ]
                },
                "description": "Retrieve entitlement-tag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get short-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/usage/short-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "usage",
                    "short-name"
                  ]
                },
                "description": "Retrieve short-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get license-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/usage/license-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "usage",
                    "license-name"
                  ]
                },
                "description": "Retrieve license-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get description",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/usage/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "usage",
                    "description"
                  ]
                },
                "description": "Retrieve description from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get count",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/usage/count",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "usage",
                    "count"
                  ]
                },
                "description": "Retrieve count from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enforcement-mode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/usage/enforcement-mode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "usage",
                    "enforcement-mode"
                  ]
                },
                "description": "Retrieve enforcement-mode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get post-paid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/usage/post-paid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "usage",
                    "post-paid"
                  ]
                },
                "description": "Retrieve post-paid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get subscription-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/usage/subscription-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "usage",
                    "subscription-id"
                  ]
                },
                "description": "Retrieve subscription-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get policy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy"
                  ]
                },
                "description": "Retrieve policy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get policy-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-type"
                  ]
                },
                "description": "Retrieve policy-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get policy-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-name"
                  ]
                },
                "description": "Retrieve policy-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get install-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/install-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "install-time"
                  ]
                },
                "description": "Retrieve install-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ack-required",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/ack-required",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "ack-required"
                  ]
                },
                "description": "Retrieve ack-required from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get policy-enforced",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-enforced",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-enforced"
                  ]
                },
                "description": "Retrieve policy-enforced from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reporting-first-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-enforced/reporting-first-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-enforced",
                    "reporting-first-time"
                  ]
                },
                "description": "Retrieve reporting-first-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reporting-ongoing",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-enforced/reporting-ongoing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-enforced",
                    "reporting-ongoing"
                  ]
                },
                "description": "Retrieve reporting-ongoing from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reporting-macd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-enforced/reporting-macd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-enforced",
                    "reporting-macd"
                  ]
                },
                "description": "Retrieve reporting-macd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get policy-export",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-export",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-export"
                  ]
                },
                "description": "Retrieve policy-export from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reporting-first-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-export/reporting-first-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-export",
                    "reporting-first-time"
                  ]
                },
                "description": "Retrieve reporting-first-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reporting-ongoing",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-export/reporting-ongoing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-export",
                    "reporting-ongoing"
                  ]
                },
                "description": "Retrieve reporting-ongoing from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reporting-macd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-export/reporting-macd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-export",
                    "reporting-macd"
                  ]
                },
                "description": "Retrieve reporting-macd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get policy-subscription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-subscription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-subscription"
                  ]
                },
                "description": "Retrieve policy-subscription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reporting-first-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-subscription/reporting-first-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-subscription",
                    "reporting-first-time"
                  ]
                },
                "description": "Retrieve reporting-first-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reporting-ongoing",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-subscription/reporting-ongoing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-subscription",
                    "reporting-ongoing"
                  ]
                },
                "description": "Retrieve reporting-ongoing from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reporting-macd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-subscription/reporting-macd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-subscription",
                    "reporting-macd"
                  ]
                },
                "description": "Retrieve reporting-macd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get policy-perpetual",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-perpetual",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-perpetual"
                  ]
                },
                "description": "Retrieve policy-perpetual from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reporting-first-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-perpetual/reporting-first-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-perpetual",
                    "reporting-first-time"
                  ]
                },
                "description": "Retrieve reporting-first-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reporting-ongoing",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-perpetual/reporting-ongoing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-perpetual",
                    "reporting-ongoing"
                  ]
                },
                "description": "Retrieve reporting-ongoing from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reporting-macd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/policy/policy-perpetual/reporting-macd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "policy",
                    "policy-perpetual",
                    "reporting-macd"
                  ]
                },
                "description": "Retrieve reporting-macd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get trust-code",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/trust-code",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "trust-code"
                  ]
                },
                "description": "Retrieve trust-code from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get key_udi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/trust-code/key_udi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "trust-code",
                    "key_udi"
                  ]
                },
                "description": "Retrieve key_udi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get is-installed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/trust-code/is-installed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "trust-code",
                    "is-installed"
                  ]
                },
                "description": "Retrieve is-installed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get time-installed",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/trust-code/time-installed",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "trust-code",
                    "time-installed"
                  ]
                },
                "description": "Retrieve time-installed from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/trust-code/udi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "trust-code",
                    "udi"
                  ]
                },
                "description": "Retrieve udi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/trust-code/udi/pid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "trust-code",
                    "udi",
                    "pid"
                  ]
                },
                "description": "Retrieve pid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/trust-code/udi/sn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "trust-code",
                    "udi",
                    "sn"
                  ]
                },
                "description": "Retrieve sn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/trust-code/udi/vid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "trust-code",
                    "udi",
                    "vid"
                  ]
                },
                "description": "Retrieve vid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get uuid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/trust-code/udi/uuid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "trust-code",
                    "udi",
                    "uuid"
                  ]
                },
                "description": "Retrieve uuid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get suvi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/trust-code/udi/suvi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "trust-code",
                    "udi",
                    "suvi"
                  ]
                },
                "description": "Retrieve suvi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get host-identifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/trust-code/udi/host-identifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "trust-code",
                    "udi",
                    "host-identifier"
                  ]
                },
                "description": "Retrieve host-identifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/trust-code/udi/mac-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "trust-code",
                    "udi",
                    "mac-address"
                  ]
                },
                "description": "Retrieve mac-address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get conversion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/conversion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "conversion"
                  ]
                },
                "description": "Retrieve conversion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get key_udi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/conversion/key_udi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "conversion",
                    "key_udi"
                  ]
                },
                "description": "Retrieve key_udi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/conversion/status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "conversion",
                    "status"
                  ]
                },
                "description": "Retrieve status from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get status-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/conversion/status-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "conversion",
                    "status-time"
                  ]
                },
                "description": "Retrieve status-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/conversion/udi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "conversion",
                    "udi"
                  ]
                },
                "description": "Retrieve udi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/conversion/udi/pid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "conversion",
                    "udi",
                    "pid"
                  ]
                },
                "description": "Retrieve pid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/conversion/udi/sn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "conversion",
                    "udi",
                    "sn"
                  ]
                },
                "description": "Retrieve sn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/conversion/udi/vid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "conversion",
                    "udi",
                    "vid"
                  ]
                },
                "description": "Retrieve vid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get uuid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/conversion/udi/uuid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "conversion",
                    "udi",
                    "uuid"
                  ]
                },
                "description": "Retrieve uuid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get suvi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/conversion/udi/suvi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "conversion",
                    "udi",
                    "suvi"
                  ]
                },
                "description": "Retrieve suvi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get host-identifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/conversion/udi/host-identifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "conversion",
                    "udi",
                    "host-identifier"
                  ]
                },
                "description": "Retrieve host-identifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/conversion/udi/mac-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "conversion",
                    "udi",
                    "mac-address"
                  ]
                },
                "description": "Retrieve mac-address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rum-reports-closed-keys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-reports-closed-keys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-reports-closed-keys"
                  ]
                },
                "description": "Retrieve rum-reports-closed-keys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get report-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-reports-closed-keys/report-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-reports-closed-keys",
                    "report-id"
                  ]
                },
                "description": "Retrieve report-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-reports-closed-keys/udi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-reports-closed-keys",
                    "udi"
                  ]
                },
                "description": "Retrieve udi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-reports-closed-keys/udi/pid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-reports-closed-keys",
                    "udi",
                    "pid"
                  ]
                },
                "description": "Retrieve pid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-reports-closed-keys/udi/sn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-reports-closed-keys",
                    "udi",
                    "sn"
                  ]
                },
                "description": "Retrieve sn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-reports-closed-keys/udi/vid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-reports-closed-keys",
                    "udi",
                    "vid"
                  ]
                },
                "description": "Retrieve vid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get uuid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-reports-closed-keys/udi/uuid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-reports-closed-keys",
                    "udi",
                    "uuid"
                  ]
                },
                "description": "Retrieve uuid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get suvi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-reports-closed-keys/udi/suvi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-reports-closed-keys",
                    "udi",
                    "suvi"
                  ]
                },
                "description": "Retrieve suvi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get host-identifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-reports-closed-keys/udi/host-identifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-reports-closed-keys",
                    "udi",
                    "host-identifier"
                  ]
                },
                "description": "Retrieve host-identifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-reports-closed-keys/udi/mac-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-reports-closed-keys",
                    "udi",
                    "mac-address"
                  ]
                },
                "description": "Retrieve mac-address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get report-start-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-reports-closed-keys/report-start-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-reports-closed-keys",
                    "report-start-time"
                  ]
                },
                "description": "Retrieve report-start-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get report-end-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-reports-closed-keys/report-end-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-reports-closed-keys",
                    "report-end-time"
                  ]
                },
                "description": "Retrieve report-end-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get report-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-reports-closed-keys/report-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-reports-closed-keys",
                    "report-state"
                  ]
                },
                "description": "Retrieve report-state from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rum-report-key",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-reports-closed-keys/rum-report-key",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-reports-closed-keys",
                    "rum-report-key"
                  ]
                },
                "description": "Retrieve rum-report-key from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rum-ack",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-ack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-ack"
                  ]
                },
                "description": "Retrieve rum-ack from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get last-received-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-ack/last-received-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-ack",
                    "last-received-time"
                  ]
                },
                "description": "Retrieve last-received-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get next-report-deadline",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/rum-ack/next-report-deadline",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "rum-ack",
                    "next-report-deadline"
                  ]
                },
                "description": "Retrieve next-report-deadline from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get factory-purchase",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase"
                  ]
                },
                "description": "Retrieve factory-purchase from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get key_udi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/key_udi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "key_udi"
                  ]
                },
                "description": "Retrieve key_udi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/udi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "udi"
                  ]
                },
                "description": "Retrieve udi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/udi/pid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "udi",
                    "pid"
                  ]
                },
                "description": "Retrieve pid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sn",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/udi/sn",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "udi",
                    "sn"
                  ]
                },
                "description": "Retrieve sn from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/udi/vid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "udi",
                    "vid"
                  ]
                },
                "description": "Retrieve vid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get uuid",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/udi/uuid",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "udi",
                    "uuid"
                  ]
                },
                "description": "Retrieve uuid from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get suvi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/udi/suvi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "udi",
                    "suvi"
                  ]
                },
                "description": "Retrieve suvi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get host-identifier",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/udi/host-identifier",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "udi",
                    "host-identifier"
                  ]
                },
                "description": "Retrieve host-identifier from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac-address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/udi/mac-address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "udi",
                    "mac-address"
                  ]
                },
                "description": "Retrieve mac-address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get basic-license-info",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/basic-license-info",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "basic-license-info"
                  ]
                },
                "description": "Retrieve basic-license-info from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entitlement-tag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/basic-license-info/entitlement-tag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "basic-license-info",
                    "entitlement-tag"
                  ]
                },
                "description": "Retrieve entitlement-tag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get short-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/basic-license-info/short-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "basic-license-info",
                    "short-name"
                  ]
                },
                "description": "Retrieve short-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get license-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/basic-license-info/license-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "basic-license-info",
                    "license-name"
                  ]
                },
                "description": "Retrieve license-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get description",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/basic-license-info/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "basic-license-info",
                    "description"
                  ]
                },
                "description": "Retrieve description from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get count",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/basic-license-info/count",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "basic-license-info",
                    "count"
                  ]
                },
                "description": "Retrieve count from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get license-enforcement-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/basic-license-info/license-enforcement-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "basic-license-info",
                    "license-enforcement-type"
                  ]
                },
                "description": "Retrieve license-enforcement-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get license-term-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/basic-license-info/license-term-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "basic-license-info",
                    "license-term-type"
                  ]
                },
                "description": "Retrieve license-term-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get start-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/basic-license-info/start-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "basic-license-info",
                    "start-time"
                  ]
                },
                "description": "Retrieve start-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get end-time",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/basic-license-info/end-time",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "basic-license-info",
                    "end-time"
                  ]
                },
                "description": "Retrieve end-time from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get subscription-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/factory-purchase/basic-license-info/subscription-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "factory-purchase",
                    "basic-license-info",
                    "subscription-id"
                  ]
                },
                "description": "Retrieve subscription-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get imported-authorizations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/imported-authorizations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "imported-authorizations"
                  ]
                },
                "description": "Retrieve imported-authorizations from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get overall-status",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/imported-authorizations/overall-status",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "imported-authorizations",
                    "overall-status"
                  ]
                },
                "description": "Retrieve overall-status from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get key_udi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/imported-authorizations/overall-status/key_udi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "imported-authorizations",
                    "overall-status",
                    "key_udi"
                  ]
                },
                "description": "Retrieve key_udi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/imported-authorizations/overall-status/udi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "imported-authorizations",
                    "overall-status",
                    "udi"
                  ]
                },
                "description": "Retrieve udi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get installed-list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/imported-authorizations/overall-status/installed-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "imported-authorizations",
                    "overall-status",
                    "installed-list"
                  ]
                },
                "description": "Retrieve installed-list from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get authorization-list",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/imported-authorizations/authorization-list",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "imported-authorizations",
                    "authorization-list"
                  ]
                },
                "description": "Retrieve authorization-list from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get entitlement-tag",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/imported-authorizations/authorization-list/entitlement-tag",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "imported-authorizations",
                    "authorization-list",
                    "entitlement-tag"
                  ]
                },
                "description": "Retrieve entitlement-tag from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get short-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/imported-authorizations/authorization-list/short-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "imported-authorizations",
                    "authorization-list",
                    "short-name"
                  ]
                },
                "description": "Retrieve short-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get license-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/imported-authorizations/authorization-list/license-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "imported-authorizations",
                    "authorization-list",
                    "license-name"
                  ]
                },
                "description": "Retrieve license-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get description",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/imported-authorizations/authorization-list/description",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "imported-authorizations",
                    "authorization-list",
                    "description"
                  ]
                },
                "description": "Retrieve description from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get total-count",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/imported-authorizations/authorization-list/total-count",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "imported-authorizations",
                    "authorization-list",
                    "total-count"
                  ]
                },
                "description": "Retrieve total-count from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get license-enforcement-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/cisco-smart-license:licensing/state/state-info/imported-authorizations/authorization-list/license-enforcement-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "cisco-smart-license:licensing",
                    "state",
                    "state-info",
                    "imported-authorizations",
                    "authorization-list",
                    "license-enforcement-type"
                  ]
                },
                "description": "Retrieve license-enforcement-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "common-mpls-static",
          "description": "Cisco IOS-XE - common-mpls-static\n\nData from `common-mpls-static` module.\n\n**Root containers:** 1 (mpls-static)\n**Paths:** 57 | **Operations:** 186\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 57 | Operations: 186",
          "item": [
            {
              "name": "GET Get mpls-static",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static"
                  ]
                },
                "description": "Retrieve mpls-static from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mpls-static",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static"
                  ]
                },
                "description": "Create or replace mpls-static on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mpls-static-cfg\": {\n    \"interfaces\": {\n      \"interface\": [\n        {}\n      ]\n    },\n    \"ipv4-ingress-lsps\": {\n      \"ipv4-ingress-lsp\": {\n        \"vrf-name\": {},\n        \"prefix\": {},\n        \"name\": {},\n        \"in-label\": {},\n        \"path\": {}\n      }\n    },\n    \"ipv6-ingress-lsps\": {\n      \"ipv6-ingress-lsp\": {\n        \"prefix\": {},\n        \"name\": {},\n        \"in-label\": {},\n        \"vrf-name\": {},\n        \"path\": {}\n      }\n    },\n    \"in-label-lsps\": {\n      \"in-label-lsp\": {\n        \"in-label\": {},\n        \"vrf-name\": {},\n        \"path\": {}\n      }\n    },\n    \"named-lsps\": {\n      \"named-lsp\": {\n        \"name\": {},\n        \"lsp-type\": {},\n        \"vrf-name\": {},\n        \"in-label\": {},\n        \"ipv4-prefix\": {},\n        \"ipv6-prefix\": {},\n        \"path\": {}\n      }\n    }\n  },\n  \"mpls-static-state\": {\n    \"label-switched-paths\": {\n      \"label-switched-path\": {\n        \"name\": {},\n        \"vrf-name\": {},\n        \"in-label-value\": {},\n        \"prefix\": {},\n        \"ingress-stats\": {},\n        \"egress-stats\": {},\n        \"path\": {}\n      }\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mpls-static",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static"
                  ]
                },
                "description": "Partially update mpls-static on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"mpls-static-cfg\": {\n    \"interfaces\": {\n      \"interface\": [\n        {}\n      ]\n    },\n    \"ipv4-ingress-lsps\": {\n      \"ipv4-ingress-lsp\": {\n        \"vrf-name\": {},\n        \"prefix\": {},\n        \"name\": {},\n        \"in-label\": {},\n        \"path\": {}\n      }\n    },\n    \"ipv6-ingress-lsps\": {\n      \"ipv6-ingress-lsp\": {\n        \"prefix\": {},\n        \"name\": {},\n        \"in-label\": {},\n        \"vrf-name\": {},\n        \"path\": {}\n      }\n    },\n    \"in-label-lsps\": {\n      \"in-label-lsp\": {\n        \"in-label\": {},\n        \"vrf-name\": {},\n        \"path\": {}\n      }\n    },\n    \"named-lsps\": {\n      \"named-lsp\": {\n        \"name\": {},\n        \"lsp-type\": {},\n        \"vrf-name\": {},\n        \"in-label\": {},\n        \"ipv4-prefix\": {},\n        \"ipv6-prefix\": {},\n        \"path\": {}\n      }\n    }\n  },\n  \"mpls-static-state\": {\n    \"label-switched-paths\": {\n      \"label-switched-path\": {\n        \"name\": {},\n        \"vrf-name\": {},\n        \"in-label-value\": {},\n        \"prefix\": {},\n        \"ingress-stats\": {},\n        \"egress-stats\": {},\n        \"path\": {}\n      }\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mpls-static",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static"
                  ]
                },
                "description": "Remove mpls-static from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mpls-static-cfg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg"
                  ]
                },
                "description": "Retrieve mpls-static-cfg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mpls-static-cfg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg"
                  ]
                },
                "description": "Create or replace mpls-static-cfg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interfaces\": {\n    \"interface\": [\n      {\n        \"name\": {},\n        \"enabled\": {}\n      }\n    ]\n  },\n  \"ipv4-ingress-lsps\": {\n    \"ipv4-ingress-lsp\": {\n      \"vrf-name\": \"default\",\n      \"prefix\": \"10.0.0.0/24\",\n      \"name\": \"example-1\",\n      \"in-label\": \"configured-value\",\n      \"path\": {\n        \"operations\": {},\n        \"auto-protect\": {}\n      }\n    }\n  },\n  \"ipv6-ingress-lsps\": {\n    \"ipv6-ingress-lsp\": {\n      \"prefix\": \"10.0.0.0/24\",\n      \"name\": \"example-1\",\n      \"in-label\": \"configured-value\",\n      \"vrf-name\": \"default\",\n      \"path\": {\n        \"operations\": {},\n        \"auto-protect\": {}\n      }\n    }\n  },\n  \"in-label-lsps\": {\n    \"in-label-lsp\": {\n      \"in-label\": \"configured-value\",\n      \"vrf-name\": \"default\",\n      \"path\": {\n        \"operations\": {},\n        \"auto-protect\": {}\n      }\n    }\n  },\n  \"named-lsps\": {\n    \"named-lsp\": {\n      \"name\": \"example-1\",\n      \"lsp-type\": \"configured-value\",\n      \"vrf-name\": \"default\",\n      \"in-label\": \"configured-value\",\n      \"ipv4-prefix\": \"configured-value\",\n      \"ipv6-prefix\": \"2001:db8::1\",\n      \"path\": {\n        \"operations\": {},\n        \"auto-protect\": {}\n      }\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mpls-static-cfg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg"
                  ]
                },
                "description": "Partially update mpls-static-cfg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interfaces\": {\n    \"interface\": [\n      {\n        \"name\": {},\n        \"enabled\": {}\n      }\n    ]\n  },\n  \"ipv4-ingress-lsps\": {\n    \"ipv4-ingress-lsp\": {\n      \"vrf-name\": \"default\",\n      \"prefix\": \"10.0.0.0/24\",\n      \"name\": \"example-1\",\n      \"in-label\": \"configured-value\",\n      \"path\": {\n        \"operations\": {},\n        \"auto-protect\": {}\n      }\n    }\n  },\n  \"ipv6-ingress-lsps\": {\n    \"ipv6-ingress-lsp\": {\n      \"prefix\": \"10.0.0.0/24\",\n      \"name\": \"example-1\",\n      \"in-label\": \"configured-value\",\n      \"vrf-name\": \"default\",\n      \"path\": {\n        \"operations\": {},\n        \"auto-protect\": {}\n      }\n    }\n  },\n  \"in-label-lsps\": {\n    \"in-label-lsp\": {\n      \"in-label\": \"configured-value\",\n      \"vrf-name\": \"default\",\n      \"path\": {\n        \"operations\": {},\n        \"auto-protect\": {}\n      }\n    }\n  },\n  \"named-lsps\": {\n    \"named-lsp\": {\n      \"name\": \"example-1\",\n      \"lsp-type\": \"configured-value\",\n      \"vrf-name\": \"default\",\n      \"in-label\": \"configured-value\",\n      \"ipv4-prefix\": \"configured-value\",\n      \"ipv6-prefix\": \"2001:db8::1\",\n      \"path\": {\n        \"operations\": {},\n        \"auto-protect\": {}\n      }\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mpls-static-cfg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg"
                  ]
                },
                "description": "Remove mpls-static-cfg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interfaces",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces"
                  ]
                },
                "description": "Retrieve interfaces from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace interfaces",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces"
                  ]
                },
                "description": "Create or replace interfaces on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interface\": [\n    {\n      \"name\": \"example-1\",\n      \"enabled\": 1\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update interfaces",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces"
                  ]
                },
                "description": "Partially update interfaces on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"interface\": [\n    {\n      \"name\": \"example-1\",\n      \"enabled\": 1\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete interfaces",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces"
                  ]
                },
                "description": "Remove interfaces from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces",
                    "interface"
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces",
                    "interface"
                  ]
                },
                "description": "Create or replace interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"enabled\": 1\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces",
                    "interface"
                  ]
                },
                "description": "Partially update interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"enabled\": 1\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces/interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces",
                    "interface"
                  ]
                },
                "description": "Remove interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces/interface={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces",
                    "interface=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces/interface={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces",
                    "interface=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"enabled\": 1\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces/interface={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces",
                    "interface=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"enabled\": 1\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces/interface={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces",
                    "interface=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces/interface/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces",
                    "interface",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces/interface/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces",
                    "interface",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces/interface/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces",
                    "interface",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces/interface/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces",
                    "interface",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces/interface/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces",
                    "interface",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces/interface/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces",
                    "interface",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces/interface/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces",
                    "interface",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/interfaces/interface/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "interfaces",
                    "interface",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4-ingress-lsps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps"
                  ]
                },
                "description": "Retrieve ipv4-ingress-lsps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv4-ingress-lsps",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps"
                  ]
                },
                "description": "Create or replace ipv4-ingress-lsps on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv4-ingress-lsp\": {\n    \"vrf-name\": \"default\",\n    \"prefix\": \"10.0.0.0/24\",\n    \"name\": \"example-1\",\n    \"in-label\": \"configured-value\",\n    \"path\": {\n      \"operations\": {\n        \"preserve\": {}\n      },\n      \"auto-protect\": true\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv4-ingress-lsps",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps"
                  ]
                },
                "description": "Partially update ipv4-ingress-lsps on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv4-ingress-lsp\": {\n    \"vrf-name\": \"default\",\n    \"prefix\": \"10.0.0.0/24\",\n    \"name\": \"example-1\",\n    \"in-label\": \"configured-value\",\n    \"path\": {\n      \"operations\": {\n        \"preserve\": {}\n      },\n      \"auto-protect\": true\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv4-ingress-lsps",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps"
                  ]
                },
                "description": "Remove ipv4-ingress-lsps from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4-ingress-lsp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp"
                  ]
                },
                "description": "Retrieve ipv4-ingress-lsp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv4-ingress-lsp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp"
                  ]
                },
                "description": "Create or replace ipv4-ingress-lsp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vrf-name\": \"default\",\n  \"prefix\": \"10.0.0.0/24\",\n  \"name\": \"example-1\",\n  \"in-label\": \"configured-value\",\n  \"path\": {\n    \"operations\": {\n      \"preserve\": true\n    },\n    \"auto-protect\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv4-ingress-lsp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp"
                  ]
                },
                "description": "Partially update ipv4-ingress-lsp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vrf-name\": \"default\",\n  \"prefix\": \"10.0.0.0/24\",\n  \"name\": \"example-1\",\n  \"in-label\": \"configured-value\",\n  \"path\": {\n    \"operations\": {\n      \"preserve\": true\n    },\n    \"auto-protect\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv4-ingress-lsp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp"
                  ]
                },
                "description": "Remove ipv4-ingress-lsp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "vrf-name"
                  ]
                },
                "description": "Retrieve vrf-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vrf-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "vrf-name"
                  ]
                },
                "description": "Create or replace vrf-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vrf-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "vrf-name"
                  ]
                },
                "description": "Partially update vrf-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vrf-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "vrf-name"
                  ]
                },
                "description": "Remove vrf-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "prefix"
                  ]
                },
                "description": "Retrieve prefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace prefix",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "prefix"
                  ]
                },
                "description": "Create or replace prefix on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.0.0.0/24\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update prefix",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "prefix"
                  ]
                },
                "description": "Partially update prefix on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.0.0.0/24\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete prefix",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "prefix"
                  ]
                },
                "description": "Remove prefix from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-label",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/in-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "in-label"
                  ]
                },
                "description": "Retrieve in-label from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace in-label",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/in-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "in-label"
                  ]
                },
                "description": "Create or replace in-label on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update in-label",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/in-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "in-label"
                  ]
                },
                "description": "Partially update in-label on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete in-label",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/in-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "in-label"
                  ]
                },
                "description": "Remove in-label from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get path",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "path"
                  ]
                },
                "description": "Retrieve path from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace path",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "path"
                  ]
                },
                "description": "Create or replace path on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"operations\": {\n    \"preserve\": true\n  },\n  \"auto-protect\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update path",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "path"
                  ]
                },
                "description": "Partially update path on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"operations\": {\n    \"preserve\": true\n  },\n  \"auto-protect\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete path",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "path"
                  ]
                },
                "description": "Remove path from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get operations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "path",
                    "operations"
                  ]
                },
                "description": "Retrieve operations from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace operations",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "path",
                    "operations"
                  ]
                },
                "description": "Create or replace operations on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"preserve\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update operations",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "path",
                    "operations"
                  ]
                },
                "description": "Partially update operations on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"preserve\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete operations",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "path",
                    "operations"
                  ]
                },
                "description": "Remove operations from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get auto-protect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Retrieve auto-protect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace auto-protect",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Create or replace auto-protect on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update auto-protect",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Partially update auto-protect on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete auto-protect",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv4-ingress-lsps/ipv4-ingress-lsp/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv4-ingress-lsps",
                    "ipv4-ingress-lsp",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Remove auto-protect from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6-ingress-lsps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps"
                  ]
                },
                "description": "Retrieve ipv6-ingress-lsps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv6-ingress-lsps",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps"
                  ]
                },
                "description": "Create or replace ipv6-ingress-lsps on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv6-ingress-lsp\": {\n    \"prefix\": \"10.0.0.0/24\",\n    \"name\": \"example-1\",\n    \"in-label\": \"configured-value\",\n    \"vrf-name\": \"default\",\n    \"path\": {\n      \"operations\": {\n        \"preserve\": {}\n      },\n      \"auto-protect\": true\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv6-ingress-lsps",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps"
                  ]
                },
                "description": "Partially update ipv6-ingress-lsps on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv6-ingress-lsp\": {\n    \"prefix\": \"10.0.0.0/24\",\n    \"name\": \"example-1\",\n    \"in-label\": \"configured-value\",\n    \"vrf-name\": \"default\",\n    \"path\": {\n      \"operations\": {\n        \"preserve\": {}\n      },\n      \"auto-protect\": true\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv6-ingress-lsps",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps"
                  ]
                },
                "description": "Remove ipv6-ingress-lsps from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6-ingress-lsp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp"
                  ]
                },
                "description": "Retrieve ipv6-ingress-lsp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv6-ingress-lsp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp"
                  ]
                },
                "description": "Create or replace ipv6-ingress-lsp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"prefix\": \"10.0.0.0/24\",\n  \"name\": \"example-1\",\n  \"in-label\": \"configured-value\",\n  \"vrf-name\": \"default\",\n  \"path\": {\n    \"operations\": {\n      \"preserve\": true\n    },\n    \"auto-protect\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv6-ingress-lsp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp"
                  ]
                },
                "description": "Partially update ipv6-ingress-lsp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"prefix\": \"10.0.0.0/24\",\n  \"name\": \"example-1\",\n  \"in-label\": \"configured-value\",\n  \"vrf-name\": \"default\",\n  \"path\": {\n    \"operations\": {\n      \"preserve\": true\n    },\n    \"auto-protect\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv6-ingress-lsp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp"
                  ]
                },
                "description": "Remove ipv6-ingress-lsp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "prefix"
                  ]
                },
                "description": "Retrieve prefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace prefix",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "prefix"
                  ]
                },
                "description": "Create or replace prefix on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.0.0.0/24\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update prefix",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "prefix"
                  ]
                },
                "description": "Partially update prefix on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.0.0.0/24\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete prefix",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "prefix"
                  ]
                },
                "description": "Remove prefix from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-label",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/in-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "in-label"
                  ]
                },
                "description": "Retrieve in-label from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace in-label",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/in-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "in-label"
                  ]
                },
                "description": "Create or replace in-label on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update in-label",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/in-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "in-label"
                  ]
                },
                "description": "Partially update in-label on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete in-label",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/in-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "in-label"
                  ]
                },
                "description": "Remove in-label from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "vrf-name"
                  ]
                },
                "description": "Retrieve vrf-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vrf-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "vrf-name"
                  ]
                },
                "description": "Create or replace vrf-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vrf-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "vrf-name"
                  ]
                },
                "description": "Partially update vrf-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vrf-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "vrf-name"
                  ]
                },
                "description": "Remove vrf-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get path",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "path"
                  ]
                },
                "description": "Retrieve path from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace path",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "path"
                  ]
                },
                "description": "Create or replace path on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"operations\": {\n    \"preserve\": true\n  },\n  \"auto-protect\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update path",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "path"
                  ]
                },
                "description": "Partially update path on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"operations\": {\n    \"preserve\": true\n  },\n  \"auto-protect\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete path",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "path"
                  ]
                },
                "description": "Remove path from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get operations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "path",
                    "operations"
                  ]
                },
                "description": "Retrieve operations from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace operations",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "path",
                    "operations"
                  ]
                },
                "description": "Create or replace operations on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"preserve\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update operations",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "path",
                    "operations"
                  ]
                },
                "description": "Partially update operations on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"preserve\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete operations",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "path",
                    "operations"
                  ]
                },
                "description": "Remove operations from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get auto-protect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Retrieve auto-protect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace auto-protect",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Create or replace auto-protect on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update auto-protect",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Partially update auto-protect on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete auto-protect",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/ipv6-ingress-lsps/ipv6-ingress-lsp/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "ipv6-ingress-lsps",
                    "ipv6-ingress-lsp",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Remove auto-protect from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-label-lsps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps"
                  ]
                },
                "description": "Retrieve in-label-lsps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace in-label-lsps",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps"
                  ]
                },
                "description": "Create or replace in-label-lsps on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"in-label-lsp\": {\n    \"in-label\": \"configured-value\",\n    \"vrf-name\": \"default\",\n    \"path\": {\n      \"operations\": {\n        \"preserve\": {}\n      },\n      \"auto-protect\": true\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update in-label-lsps",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps"
                  ]
                },
                "description": "Partially update in-label-lsps on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"in-label-lsp\": {\n    \"in-label\": \"configured-value\",\n    \"vrf-name\": \"default\",\n    \"path\": {\n      \"operations\": {\n        \"preserve\": {}\n      },\n      \"auto-protect\": true\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete in-label-lsps",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps"
                  ]
                },
                "description": "Remove in-label-lsps from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-label-lsp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp"
                  ]
                },
                "description": "Retrieve in-label-lsp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace in-label-lsp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp"
                  ]
                },
                "description": "Create or replace in-label-lsp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"in-label\": \"configured-value\",\n  \"vrf-name\": \"default\",\n  \"path\": {\n    \"operations\": {\n      \"preserve\": true\n    },\n    \"auto-protect\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update in-label-lsp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp"
                  ]
                },
                "description": "Partially update in-label-lsp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"in-label\": \"configured-value\",\n  \"vrf-name\": \"default\",\n  \"path\": {\n    \"operations\": {\n      \"preserve\": true\n    },\n    \"auto-protect\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete in-label-lsp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp"
                  ]
                },
                "description": "Remove in-label-lsp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-label",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/in-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "in-label"
                  ]
                },
                "description": "Retrieve in-label from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace in-label",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/in-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "in-label"
                  ]
                },
                "description": "Create or replace in-label on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update in-label",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/in-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "in-label"
                  ]
                },
                "description": "Partially update in-label on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete in-label",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/in-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "in-label"
                  ]
                },
                "description": "Remove in-label from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "vrf-name"
                  ]
                },
                "description": "Retrieve vrf-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vrf-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "vrf-name"
                  ]
                },
                "description": "Create or replace vrf-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vrf-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "vrf-name"
                  ]
                },
                "description": "Partially update vrf-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vrf-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "vrf-name"
                  ]
                },
                "description": "Remove vrf-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get path",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "path"
                  ]
                },
                "description": "Retrieve path from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace path",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "path"
                  ]
                },
                "description": "Create or replace path on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"operations\": {\n    \"preserve\": true\n  },\n  \"auto-protect\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update path",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "path"
                  ]
                },
                "description": "Partially update path on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"operations\": {\n    \"preserve\": true\n  },\n  \"auto-protect\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete path",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "path"
                  ]
                },
                "description": "Remove path from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get operations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "path",
                    "operations"
                  ]
                },
                "description": "Retrieve operations from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace operations",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "path",
                    "operations"
                  ]
                },
                "description": "Create or replace operations on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"preserve\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update operations",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "path",
                    "operations"
                  ]
                },
                "description": "Partially update operations on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"preserve\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete operations",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "path",
                    "operations"
                  ]
                },
                "description": "Remove operations from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get auto-protect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Retrieve auto-protect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace auto-protect",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Create or replace auto-protect on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update auto-protect",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Partially update auto-protect on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete auto-protect",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/in-label-lsps/in-label-lsp/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "in-label-lsps",
                    "in-label-lsp",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Remove auto-protect from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get named-lsps",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps"
                  ]
                },
                "description": "Retrieve named-lsps from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace named-lsps",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps"
                  ]
                },
                "description": "Create or replace named-lsps on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"named-lsp\": {\n    \"name\": \"example-1\",\n    \"lsp-type\": \"configured-value\",\n    \"vrf-name\": \"default\",\n    \"in-label\": \"configured-value\",\n    \"ipv4-prefix\": \"configured-value\",\n    \"ipv6-prefix\": \"2001:db8::1\",\n    \"path\": {\n      \"operations\": {\n        \"preserve\": {}\n      },\n      \"auto-protect\": true\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update named-lsps",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps"
                  ]
                },
                "description": "Partially update named-lsps on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"named-lsp\": {\n    \"name\": \"example-1\",\n    \"lsp-type\": \"configured-value\",\n    \"vrf-name\": \"default\",\n    \"in-label\": \"configured-value\",\n    \"ipv4-prefix\": \"configured-value\",\n    \"ipv6-prefix\": \"2001:db8::1\",\n    \"path\": {\n      \"operations\": {\n        \"preserve\": {}\n      },\n      \"auto-protect\": true\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete named-lsps",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps"
                  ]
                },
                "description": "Remove named-lsps from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get named-lsp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp"
                  ]
                },
                "description": "Retrieve named-lsp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace named-lsp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp"
                  ]
                },
                "description": "Create or replace named-lsp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"name\": \"example-1\",\n  \"lsp-type\": \"configured-value\",\n  \"vrf-name\": \"default\",\n  \"in-label\": \"configured-value\",\n  \"ipv4-prefix\": \"configured-value\",\n  \"ipv6-prefix\": \"2001:db8::1\",\n  \"path\": {\n    \"operations\": {\n      \"preserve\": true\n    },\n    \"auto-protect\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update named-lsp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp"
                  ]
                },
                "description": "Partially update named-lsp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"name\": \"example-1\",\n  \"lsp-type\": \"configured-value\",\n  \"vrf-name\": \"default\",\n  \"in-label\": \"configured-value\",\n  \"ipv4-prefix\": \"configured-value\",\n  \"ipv6-prefix\": \"2001:db8::1\",\n  \"path\": {\n    \"operations\": {\n      \"preserve\": true\n    },\n    \"auto-protect\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete named-lsp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp"
                  ]
                },
                "description": "Remove named-lsp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get lsp-type",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/lsp-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "lsp-type"
                  ]
                },
                "description": "Retrieve lsp-type from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace lsp-type",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/lsp-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "lsp-type"
                  ]
                },
                "description": "Create or replace lsp-type on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update lsp-type",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/lsp-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "lsp-type"
                  ]
                },
                "description": "Partially update lsp-type on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete lsp-type",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/lsp-type",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "lsp-type"
                  ]
                },
                "description": "Remove lsp-type from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "vrf-name"
                  ]
                },
                "description": "Retrieve vrf-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vrf-name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "vrf-name"
                  ]
                },
                "description": "Create or replace vrf-name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vrf-name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "vrf-name"
                  ]
                },
                "description": "Partially update vrf-name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vrf-name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "vrf-name"
                  ]
                },
                "description": "Remove vrf-name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-label",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/in-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "in-label"
                  ]
                },
                "description": "Retrieve in-label from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace in-label",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/in-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "in-label"
                  ]
                },
                "description": "Create or replace in-label on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update in-label",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/in-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "in-label"
                  ]
                },
                "description": "Partially update in-label on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete in-label",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/in-label",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "in-label"
                  ]
                },
                "description": "Remove in-label from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv4-prefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/ipv4-prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "ipv4-prefix"
                  ]
                },
                "description": "Retrieve ipv4-prefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv4-prefix",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/ipv4-prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "ipv4-prefix"
                  ]
                },
                "description": "Create or replace ipv4-prefix on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv4-prefix",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/ipv4-prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "ipv4-prefix"
                  ]
                },
                "description": "Partially update ipv4-prefix on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv4-prefix",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/ipv4-prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "ipv4-prefix"
                  ]
                },
                "description": "Remove ipv4-prefix from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ipv6-prefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/ipv6-prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "ipv6-prefix"
                  ]
                },
                "description": "Retrieve ipv6-prefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ipv6-prefix",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/ipv6-prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "ipv6-prefix"
                  ]
                },
                "description": "Create or replace ipv6-prefix on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"2001:db8::1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ipv6-prefix",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/ipv6-prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "ipv6-prefix"
                  ]
                },
                "description": "Partially update ipv6-prefix on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"2001:db8::1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ipv6-prefix",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/ipv6-prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "ipv6-prefix"
                  ]
                },
                "description": "Remove ipv6-prefix from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get path",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "path"
                  ]
                },
                "description": "Retrieve path from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace path",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "path"
                  ]
                },
                "description": "Create or replace path on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"operations\": {\n    \"preserve\": true\n  },\n  \"auto-protect\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update path",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "path"
                  ]
                },
                "description": "Partially update path on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"operations\": {\n    \"preserve\": true\n  },\n  \"auto-protect\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete path",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "path"
                  ]
                },
                "description": "Remove path from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get operations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "path",
                    "operations"
                  ]
                },
                "description": "Retrieve operations from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace operations",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "path",
                    "operations"
                  ]
                },
                "description": "Create or replace operations on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"preserve\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update operations",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "path",
                    "operations"
                  ]
                },
                "description": "Partially update operations on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"preserve\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete operations",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "path",
                    "operations"
                  ]
                },
                "description": "Remove operations from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get auto-protect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Retrieve auto-protect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace auto-protect",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Create or replace auto-protect on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update auto-protect",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Partially update auto-protect on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete auto-protect",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-cfg/named-lsps/named-lsp/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-cfg",
                    "named-lsps",
                    "named-lsp",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Remove auto-protect from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mpls-static-state",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-state",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-state"
                  ]
                },
                "description": "Retrieve mpls-static-state from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get label-switched-paths",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-state/label-switched-paths",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-state",
                    "label-switched-paths"
                  ]
                },
                "description": "Retrieve label-switched-paths from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get label-switched-path",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-state/label-switched-paths/label-switched-path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-state",
                    "label-switched-paths",
                    "label-switched-path"
                  ]
                },
                "description": "Retrieve label-switched-path from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-state/label-switched-paths/label-switched-path/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-state",
                    "label-switched-paths",
                    "label-switched-path",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vrf-name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-state/label-switched-paths/label-switched-path/vrf-name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-state",
                    "label-switched-paths",
                    "label-switched-path",
                    "vrf-name"
                  ]
                },
                "description": "Retrieve vrf-name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get in-label-value",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-state/label-switched-paths/label-switched-path/in-label-value",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-state",
                    "label-switched-paths",
                    "label-switched-path",
                    "in-label-value"
                  ]
                },
                "description": "Retrieve in-label-value from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-state/label-switched-paths/label-switched-path/prefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-state",
                    "label-switched-paths",
                    "label-switched-path",
                    "prefix"
                  ]
                },
                "description": "Retrieve prefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ingress-stats",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-state/label-switched-paths/label-switched-path/ingress-stats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-state",
                    "label-switched-paths",
                    "label-switched-path",
                    "ingress-stats"
                  ]
                },
                "description": "Retrieve ingress-stats from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stats",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-state/label-switched-paths/label-switched-path/ingress-stats/stats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-state",
                    "label-switched-paths",
                    "label-switched-path",
                    "ingress-stats",
                    "stats"
                  ]
                },
                "description": "Retrieve stats from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get egress-stats",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-state/label-switched-paths/label-switched-path/egress-stats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-state",
                    "label-switched-paths",
                    "label-switched-path",
                    "egress-stats"
                  ]
                },
                "description": "Retrieve egress-stats from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stats",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-state/label-switched-paths/label-switched-path/egress-stats/stats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-state",
                    "label-switched-paths",
                    "label-switched-path",
                    "egress-stats",
                    "stats"
                  ]
                },
                "description": "Retrieve stats from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get path",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-state/label-switched-paths/label-switched-path/path",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-state",
                    "label-switched-paths",
                    "label-switched-path",
                    "path"
                  ]
                },
                "description": "Retrieve path from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get operations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-state/label-switched-paths/label-switched-path/path/operations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-state",
                    "label-switched-paths",
                    "label-switched-path",
                    "path",
                    "operations"
                  ]
                },
                "description": "Retrieve operations from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get auto-protect",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/common-mpls-static:mpls-static/mpls-static-state/label-switched-paths/label-switched-path/path/auto-protect",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "common-mpls-static:mpls-static",
                    "mpls-static-state",
                    "label-switched-paths",
                    "label-switched-path",
                    "path",
                    "auto-protect"
                  ]
                },
                "description": "Retrieve auto-protect from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "confd_dyncfg",
          "description": "Cisco IOS-XE - confd_dyncfg\n\nData from `confd_dyncfg` module.\n\n**Root containers:** 1 (confdConfig)\n**Paths:** 585 | **Operations:** 2340\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 585 | Operations: 2340",
          "item": [
            {
              "name": "GET Get confdConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig"
                  ]
                },
                "description": "Retrieve confdConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace confdConfig",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig"
                  ]
                },
                "description": "Create or replace confdConfig on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"subagents\": {\n    \"subagent\": [\n      {\n        \"name\": {},\n        \"enabled\": {},\n        \"tcp\": {},\n        \"ssh\": {},\n        \"mount\": {},\n        \"disableSubtreeOptimization\": {}\n      }\n    ]\n  },\n  \"notifications\": {\n    \"eventStreams\": {\n      \"stream\": [\n        {}\n      ]\n    }\n  },\n  \"opcache\": {\n    \"enabled\": true,\n    \"timeout\": 1\n  },\n  \"snmpgw\": {\n    \"enabled\": true,\n    \"trapPort\": \"configured-value\",\n    \"rowCacheMaxAge\": \"configured-value\",\n    \"rowCacheMaxSize\": 1,\n    \"agent\": [\n      {\n        \"name\": {},\n        \"subscriptionId\": {},\n        \"forwardNotifStream\": {},\n        \"enabled\": {},\n        \"community\": {},\n        \"community_bin\": {},\n        \"version\": {},\n        \"timeout\": {},\n        \"retries\": {},\n        \"ip\": {}\n      }\n    ]\n  },\n  \"hideGroup\": [\n    {\n      \"name\": \"example-1\",\n      \"password\": \"***\",\n      \"callback\": \"configured-value\"\n    }\n  ],\n  \"encryptedStrings\": {\n    \"externalKeys\": {\n      \"command\": \"configured-value\",\n      \"commandTimeout\": \"10:30:45\",\n      \"commandArgument\": \"configured-value\"\n    }\n  },\n  \"logs\": {\n    \"syslogConfig\": {\n      \"version\": \"17.18.1\",\n      \"facility\": \"local7\",\n      \"udp\": {\n        \"enabled\": {},\n        \"host\": {},\n        \"port\": {}\n      },\n      \"syslogServers\": {\n        \"server\": {}\n      }\n    },\n    \"confdLog\": {\n      \"enabled\": true,\n      \"file\": {\n        \"enabled\": {},\n        \"name\": {}\n      },\n      \"syslog\": {\n        \"enabled\": {},\n        \"facility\": {}\n      },\n      \"external\": {\n        \"enabled\": {}\n      }\n    },\n    \"developerLog\": {\n      \"enabled\": true,\n      \"file\": {\n        \"enabled\": {},\n        \"name\": {}\n      },\n      \"syslog\": {\n        \"enabled\": {},\n        \"facility\": {}\n      },\n      \"external\": {\n        \"enabled\": {}\n      }\n    },\n    \"developerLogLevel\": \"configured-value\",\n    \"auditLog\": {\n      \"enabled\": true,\n      \"file\": {\n        \"enabled\": {},\n        \"name\": {}\n      },\n      \"syslog\": {\n        \"enabled\": {},\n        \"facility\": {}\n      },\n      \"external\": {\n        \"enabled\": {}\n      }\n    },\n    \"auditLogCommit\": true,\n    \"auditLogCommitDefaults\": true,\n    \"auditNetworkLog\": {\n      \"enabled\": true,\n      \"file\": {\n        \"enabled\": {},\n        \"name\": {}\n      },\n      \"syslog\": {\n        \"enabled\": {},\n        \"facility\": {}\n      },\n      \"external\": {\n        \"enabled\": {}\n      }\n    },\n    \"netconfLog\": {\n      \"enabled\": true,\n      \"file\": {\n        \"enabled\": {},\n        \"name\": {}\n      },\n      \"syslog\": {\n        \"enabled\": {},\n        \"facility\": {}\n      },\n      \"external\": {\n        \"enabled\": {}\n      },\n      \"logReplyStatus\": true,\n      \"logGetContent\": true,\n      \"maxContentSize\": 1\n    },\n    \"jsonrpcLog\": {\n      \"enabled\": true,\n      \"file\": {\n        \"enabled\": {},\n        \"name\": {}\n      },\n      \"syslog\": {\n        \"enabled\": {},\n        \"facility\": {}\n      },\n      \"external\": {\n        \"enabled\": {}\n      }\n    }\n  },\n  \"sessionLimits\": {\n    \"maxSessions\": \"configured-value\",\n    \"sessionLimit\": [\n      {\n        \"context\": {},\n        \"maxSessions\": {}\n      }\n    ],\n    \"maxConfigSessions\": \"configured-value\",\n    \"configSessionLimit\": [\n      {\n        \"context\": {},\n        \"maxSessions\": {}\n      }\n    ]\n  },\n  \"parserLimits\": {\n    \"maxProcessingInstructionLength\": \"configured-value\",\n    \"maxTagLength\": \"configured-value\",\n    \"maxAttributeLength\": \"configured-value\",\n    \"maxAttributeValueLength\": \"configured-value\",\n    \"maxAttributeCount\": \"10\",\n    \"maxXmlnsPrefixLength\": \"configured-value\",\n    \"maxXmlnsValueLength\": \"configured-value\",\n    \"maxXmlnsCount\": \"10\",\n    \"maxDataLength\": \"configured-value\"\n  },\n  \"aaa\": {\n    \"sshPubkeyAuthentication\": \"configured-value\",\n    \"sshLoginGraceTime\": \"10:30:45\",\n    \"sshMaxAuthTries\": \"configured-value\",\n    \"defaultGroup\": \"configured-value\",\n    \"authOrder\": \"configured-value\",\n    \"validationOrder\": \"1\",\n    \"challengeOrder\": \"configured-value\",\n    \"expirationWarning\": \"50\",\n    \"auditUserName\": \"example-1\",\n    \"maxPasswordLength\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update confdConfig",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig"
                  ]
                },
                "description": "Partially update confdConfig on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"subagents\": {\n    \"subagent\": [\n      {\n        \"name\": {},\n        \"enabled\": {},\n        \"tcp\": {},\n        \"ssh\": {},\n        \"mount\": {},\n        \"disableSubtreeOptimization\": {}\n      }\n    ]\n  },\n  \"notifications\": {\n    \"eventStreams\": {\n      \"stream\": [\n        {}\n      ]\n    }\n  },\n  \"opcache\": {\n    \"enabled\": true,\n    \"timeout\": 1\n  },\n  \"snmpgw\": {\n    \"enabled\": true,\n    \"trapPort\": \"configured-value\",\n    \"rowCacheMaxAge\": \"configured-value\",\n    \"rowCacheMaxSize\": 1,\n    \"agent\": [\n      {\n        \"name\": {},\n        \"subscriptionId\": {},\n        \"forwardNotifStream\": {},\n        \"enabled\": {},\n        \"community\": {},\n        \"community_bin\": {},\n        \"version\": {},\n        \"timeout\": {},\n        \"retries\": {},\n        \"ip\": {}\n      }\n    ]\n  },\n  \"hideGroup\": [\n    {\n      \"name\": \"example-1\",\n      \"password\": \"***\",\n      \"callback\": \"configured-value\"\n    }\n  ],\n  \"encryptedStrings\": {\n    \"externalKeys\": {\n      \"command\": \"configured-value\",\n      \"commandTimeout\": \"10:30:45\",\n      \"commandArgument\": \"configured-value\"\n    }\n  },\n  \"logs\": {\n    \"syslogConfig\": {\n      \"version\": \"17.18.1\",\n      \"facility\": \"local7\",\n      \"udp\": {\n        \"enabled\": {},\n        \"host\": {},\n        \"port\": {}\n      },\n      \"syslogServers\": {\n        \"server\": {}\n      }\n    },\n    \"confdLog\": {\n      \"enabled\": true,\n      \"file\": {\n        \"enabled\": {},\n        \"name\": {}\n      },\n      \"syslog\": {\n        \"enabled\": {},\n        \"facility\": {}\n      },\n      \"external\": {\n        \"enabled\": {}\n      }\n    },\n    \"developerLog\": {\n      \"enabled\": true,\n      \"file\": {\n        \"enabled\": {},\n        \"name\": {}\n      },\n      \"syslog\": {\n        \"enabled\": {},\n        \"facility\": {}\n      },\n      \"external\": {\n        \"enabled\": {}\n      }\n    },\n    \"developerLogLevel\": \"configured-value\",\n    \"auditLog\": {\n      \"enabled\": true,\n      \"file\": {\n        \"enabled\": {},\n        \"name\": {}\n      },\n      \"syslog\": {\n        \"enabled\": {},\n        \"facility\": {}\n      },\n      \"external\": {\n        \"enabled\": {}\n      }\n    },\n    \"auditLogCommit\": true,\n    \"auditLogCommitDefaults\": true,\n    \"auditNetworkLog\": {\n      \"enabled\": true,\n      \"file\": {\n        \"enabled\": {},\n        \"name\": {}\n      },\n      \"syslog\": {\n        \"enabled\": {},\n        \"facility\": {}\n      },\n      \"external\": {\n        \"enabled\": {}\n      }\n    },\n    \"netconfLog\": {\n      \"enabled\": true,\n      \"file\": {\n        \"enabled\": {},\n        \"name\": {}\n      },\n      \"syslog\": {\n        \"enabled\": {},\n        \"facility\": {}\n      },\n      \"external\": {\n        \"enabled\": {}\n      },\n      \"logReplyStatus\": true,\n      \"logGetContent\": true,\n      \"maxContentSize\": 1\n    },\n    \"jsonrpcLog\": {\n      \"enabled\": true,\n      \"file\": {\n        \"enabled\": {},\n        \"name\": {}\n      },\n      \"syslog\": {\n        \"enabled\": {},\n        \"facility\": {}\n      },\n      \"external\": {\n        \"enabled\": {}\n      }\n    }\n  },\n  \"sessionLimits\": {\n    \"maxSessions\": \"configured-value\",\n    \"sessionLimit\": [\n      {\n        \"context\": {},\n        \"maxSessions\": {}\n      }\n    ],\n    \"maxConfigSessions\": \"configured-value\",\n    \"configSessionLimit\": [\n      {\n        \"context\": {},\n        \"maxSessions\": {}\n      }\n    ]\n  },\n  \"parserLimits\": {\n    \"maxProcessingInstructionLength\": \"configured-value\",\n    \"maxTagLength\": \"configured-value\",\n    \"maxAttributeLength\": \"configured-value\",\n    \"maxAttributeValueLength\": \"configured-value\",\n    \"maxAttributeCount\": \"10\",\n    \"maxXmlnsPrefixLength\": \"configured-value\",\n    \"maxXmlnsValueLength\": \"configured-value\",\n    \"maxXmlnsCount\": \"10\",\n    \"maxDataLength\": \"configured-value\"\n  },\n  \"aaa\": {\n    \"sshPubkeyAuthentication\": \"configured-value\",\n    \"sshLoginGraceTime\": \"10:30:45\",\n    \"sshMaxAuthTries\": \"configured-value\",\n    \"defaultGroup\": \"configured-value\",\n    \"authOrder\": \"configured-value\",\n    \"validationOrder\": \"1\",\n    \"challengeOrder\": \"configured-value\",\n    \"expirationWarning\": \"50\",\n    \"auditUserName\": \"example-1\",\n    \"maxPasswordLength\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete confdConfig",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig"
                  ]
                },
                "description": "Remove confdConfig from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get subagents",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents"
                  ]
                },
                "description": "Retrieve subagents from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace subagents",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents"
                  ]
                },
                "description": "Create or replace subagents on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"subagent\": [\n    {\n      \"name\": \"example-1\",\n      \"enabled\": true,\n      \"tcp\": {\n        \"ip\": {},\n        \"port\": {},\n        \"netns\": {},\n        \"vrf\": {},\n        \"confdAuth\": {}\n      },\n      \"ssh\": {\n        \"ip\": {},\n        \"port\": {},\n        \"netns\": {},\n        \"vrf\": {},\n        \"user\": {},\n        \"password\": {}\n      },\n      \"mount\": {\n        \"path\": {},\n        \"node\": {}\n      },\n      \"disableSubtreeOptimization\": true\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update subagents",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents"
                  ]
                },
                "description": "Partially update subagents on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"subagent\": [\n    {\n      \"name\": \"example-1\",\n      \"enabled\": true,\n      \"tcp\": {\n        \"ip\": {},\n        \"port\": {},\n        \"netns\": {},\n        \"vrf\": {},\n        \"confdAuth\": {}\n      },\n      \"ssh\": {\n        \"ip\": {},\n        \"port\": {},\n        \"netns\": {},\n        \"vrf\": {},\n        \"user\": {},\n        \"password\": {}\n      },\n      \"mount\": {\n        \"path\": {},\n        \"node\": {}\n      },\n      \"disableSubtreeOptimization\": true\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete subagents",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents"
                  ]
                },
                "description": "Remove subagents from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get subagent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent"
                  ]
                },
                "description": "Retrieve subagent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace subagent",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent"
                  ]
                },
                "description": "Create or replace subagent on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"enabled\": true,\n    \"tcp\": {\n      \"ip\": \"10.1.1.1\",\n      \"port\": \"443\",\n      \"netns\": \"configured-value\",\n      \"vrf\": \"default\",\n      \"confdAuth\": {\n        \"user\": {},\n        \"group\": {}\n      }\n    },\n    \"ssh\": {\n      \"ip\": \"10.1.1.1\",\n      \"port\": \"443\",\n      \"netns\": \"configured-value\",\n      \"vrf\": \"default\",\n      \"user\": \"admin\",\n      \"password\": \"***\"\n    },\n    \"mount\": {\n      \"path\": \"/data/example\",\n      \"node\": [\n        {}\n      ]\n    },\n    \"disableSubtreeOptimization\": true\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update subagent",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent"
                  ]
                },
                "description": "Partially update subagent on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"enabled\": true,\n    \"tcp\": {\n      \"ip\": \"10.1.1.1\",\n      \"port\": \"443\",\n      \"netns\": \"configured-value\",\n      \"vrf\": \"default\",\n      \"confdAuth\": {\n        \"user\": {},\n        \"group\": {}\n      }\n    },\n    \"ssh\": {\n      \"ip\": \"10.1.1.1\",\n      \"port\": \"443\",\n      \"netns\": \"configured-value\",\n      \"vrf\": \"default\",\n      \"user\": \"admin\",\n      \"password\": \"***\"\n    },\n    \"mount\": {\n      \"path\": \"/data/example\",\n      \"node\": [\n        {}\n      ]\n    },\n    \"disableSubtreeOptimization\": true\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete subagent",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent"
                  ]
                },
                "description": "Remove subagent from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get subagent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve subagent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace subagent",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace subagent on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"enabled\": true,\n    \"tcp\": {\n      \"ip\": \"10.1.1.1\",\n      \"port\": \"443\",\n      \"netns\": \"configured-value\",\n      \"vrf\": \"default\",\n      \"confdAuth\": {\n        \"user\": {},\n        \"group\": {}\n      }\n    },\n    \"ssh\": {\n      \"ip\": \"10.1.1.1\",\n      \"port\": \"443\",\n      \"netns\": \"configured-value\",\n      \"vrf\": \"default\",\n      \"user\": \"admin\",\n      \"password\": \"***\"\n    },\n    \"mount\": {\n      \"path\": \"/data/example\",\n      \"node\": [\n        {}\n      ]\n    },\n    \"disableSubtreeOptimization\": true\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update subagent",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update subagent on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"enabled\": true,\n    \"tcp\": {\n      \"ip\": \"10.1.1.1\",\n      \"port\": \"443\",\n      \"netns\": \"configured-value\",\n      \"vrf\": \"default\",\n      \"confdAuth\": {\n        \"user\": {},\n        \"group\": {}\n      }\n    },\n    \"ssh\": {\n      \"ip\": \"10.1.1.1\",\n      \"port\": \"443\",\n      \"netns\": \"configured-value\",\n      \"vrf\": \"default\",\n      \"user\": \"admin\",\n      \"password\": \"***\"\n    },\n    \"mount\": {\n      \"path\": \"/data/example\",\n      \"node\": [\n        {}\n      ]\n    },\n    \"disableSubtreeOptimization\": true\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete subagent",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove subagent from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "tcp"
                  ]
                },
                "description": "Retrieve tcp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tcp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "tcp"
                  ]
                },
                "description": "Create or replace tcp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"confdAuth\": {\n    \"user\": \"admin\",\n    \"group\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tcp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "tcp"
                  ]
                },
                "description": "Partially update tcp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"confdAuth\": {\n    \"user\": \"admin\",\n    \"group\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tcp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "tcp"
                  ]
                },
                "description": "Remove tcp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ssh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/ssh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "ssh"
                  ]
                },
                "description": "Retrieve ssh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ssh",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/ssh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "ssh"
                  ]
                },
                "description": "Create or replace ssh on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"user\": \"admin\",\n  \"password\": \"***\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ssh",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/ssh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "ssh"
                  ]
                },
                "description": "Partially update ssh on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"user\": \"admin\",\n  \"password\": \"***\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ssh",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/ssh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "ssh"
                  ]
                },
                "description": "Remove ssh from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/mount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "mount"
                  ]
                },
                "description": "Retrieve mount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mount",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/mount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "mount"
                  ]
                },
                "description": "Create or replace mount on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"path\": \"/data/example\",\n  \"node\": [\n    \"configured-value\"\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mount",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/mount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "mount"
                  ]
                },
                "description": "Partially update mount on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"path\": \"/data/example\",\n  \"node\": [\n    \"configured-value\"\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mount",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/mount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "mount"
                  ]
                },
                "description": "Remove mount from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get disableSubtreeOptimization",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/disableSubtreeOptimization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "disableSubtreeOptimization"
                  ]
                },
                "description": "Retrieve disableSubtreeOptimization from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace disableSubtreeOptimization",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/disableSubtreeOptimization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "disableSubtreeOptimization"
                  ]
                },
                "description": "Create or replace disableSubtreeOptimization on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update disableSubtreeOptimization",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/disableSubtreeOptimization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "disableSubtreeOptimization"
                  ]
                },
                "description": "Partially update disableSubtreeOptimization on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete disableSubtreeOptimization",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/subagents/subagent/disableSubtreeOptimization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "subagents",
                    "subagent",
                    "disableSubtreeOptimization"
                  ]
                },
                "description": "Remove disableSubtreeOptimization from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get notifications",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/notifications",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "notifications"
                  ]
                },
                "description": "Retrieve notifications from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace notifications",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/notifications",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "notifications"
                  ]
                },
                "description": "Create or replace notifications on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"eventStreams\": {\n    \"stream\": [\n      {\n        \"name\": {},\n        \"description\": {},\n        \"replaySupport\": {},\n        \"builtinReplayStore\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update notifications",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/notifications",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "notifications"
                  ]
                },
                "description": "Partially update notifications on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"eventStreams\": {\n    \"stream\": [\n      {\n        \"name\": {},\n        \"description\": {},\n        \"replaySupport\": {},\n        \"builtinReplayStore\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete notifications",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/notifications",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "notifications"
                  ]
                },
                "description": "Remove notifications from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get eventStreams",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/notifications/eventStreams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "notifications",
                    "eventStreams"
                  ]
                },
                "description": "Retrieve eventStreams from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace eventStreams",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/notifications/eventStreams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "notifications",
                    "eventStreams"
                  ]
                },
                "description": "Create or replace eventStreams on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"stream\": [\n    {\n      \"name\": \"example-1\",\n      \"description\": \"Configured via RESTCONF\",\n      \"replaySupport\": true,\n      \"builtinReplayStore\": {\n        \"enabled\": {},\n        \"dir\": {},\n        \"maxSize\": {},\n        \"maxFiles\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update eventStreams",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/notifications/eventStreams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "notifications",
                    "eventStreams"
                  ]
                },
                "description": "Partially update eventStreams on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"stream\": [\n    {\n      \"name\": \"example-1\",\n      \"description\": \"Configured via RESTCONF\",\n      \"replaySupport\": true,\n      \"builtinReplayStore\": {\n        \"enabled\": {},\n        \"dir\": {},\n        \"maxSize\": {},\n        \"maxFiles\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete eventStreams",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/notifications/eventStreams",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "notifications",
                    "eventStreams"
                  ]
                },
                "description": "Remove eventStreams from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stream",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/notifications/eventStreams/stream",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "notifications",
                    "eventStreams",
                    "stream"
                  ]
                },
                "description": "Retrieve stream from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace stream",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/notifications/eventStreams/stream",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "notifications",
                    "eventStreams",
                    "stream"
                  ]
                },
                "description": "Create or replace stream on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"description\": \"Configured via RESTCONF\",\n    \"replaySupport\": true,\n    \"builtinReplayStore\": {\n      \"enabled\": true,\n      \"dir\": \"configured-value\",\n      \"maxSize\": \"configured-value\",\n      \"maxFiles\": \"configured-value\"\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update stream",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/notifications/eventStreams/stream",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "notifications",
                    "eventStreams",
                    "stream"
                  ]
                },
                "description": "Partially update stream on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"description\": \"Configured via RESTCONF\",\n    \"replaySupport\": true,\n    \"builtinReplayStore\": {\n      \"enabled\": true,\n      \"dir\": \"configured-value\",\n      \"maxSize\": \"configured-value\",\n      \"maxFiles\": \"configured-value\"\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete stream",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/notifications/eventStreams/stream",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "notifications",
                    "eventStreams",
                    "stream"
                  ]
                },
                "description": "Remove stream from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stream",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/notifications/eventStreams/stream={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "notifications",
                    "eventStreams",
                    "stream=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve stream from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace stream",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/notifications/eventStreams/stream={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "notifications",
                    "eventStreams",
                    "stream=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace stream on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"description\": \"Configured via RESTCONF\",\n    \"replaySupport\": true,\n    \"builtinReplayStore\": {\n      \"enabled\": true,\n      \"dir\": \"configured-value\",\n      \"maxSize\": \"configured-value\",\n      \"maxFiles\": \"configured-value\"\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update stream",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/notifications/eventStreams/stream={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "notifications",
                    "eventStreams",
                    "stream=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update stream on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"description\": \"Configured via RESTCONF\",\n    \"replaySupport\": true,\n    \"builtinReplayStore\": {\n      \"enabled\": true,\n      \"dir\": \"configured-value\",\n      \"maxSize\": \"configured-value\",\n      \"maxFiles\": \"configured-value\"\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete stream",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/notifications/eventStreams/stream={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "notifications",
                    "eventStreams",
                    "stream=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove stream from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get opcache",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/opcache",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "opcache"
                  ]
                },
                "description": "Retrieve opcache from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace opcache",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/opcache",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "opcache"
                  ]
                },
                "description": "Create or replace opcache on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"timeout\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update opcache",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/opcache",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "opcache"
                  ]
                },
                "description": "Partially update opcache on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"timeout\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete opcache",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/opcache",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "opcache"
                  ]
                },
                "description": "Remove opcache from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/opcache/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "opcache",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/opcache/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "opcache",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/opcache/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "opcache",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/opcache/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "opcache",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get timeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/opcache/timeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "opcache",
                    "timeout"
                  ]
                },
                "description": "Retrieve timeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace timeout",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/opcache/timeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "opcache",
                    "timeout"
                  ]
                },
                "description": "Create or replace timeout on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update timeout",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/opcache/timeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "opcache",
                    "timeout"
                  ]
                },
                "description": "Partially update timeout on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete timeout",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/opcache/timeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "opcache",
                    "timeout"
                  ]
                },
                "description": "Remove timeout from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpgw",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw"
                  ]
                },
                "description": "Retrieve snmpgw from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace snmpgw",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw"
                  ]
                },
                "description": "Create or replace snmpgw on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"trapPort\": \"configured-value\",\n  \"rowCacheMaxAge\": \"configured-value\",\n  \"rowCacheMaxSize\": 1,\n  \"agent\": [\n    {\n      \"name\": \"example-1\",\n      \"subscriptionId\": \"1\",\n      \"forwardNotifStream\": \"configured-value\",\n      \"enabled\": true,\n      \"community\": \"65000:200\",\n      \"community_bin\": \"configured-value\",\n      \"version\": \"17.18.1\",\n      \"timeout\": \"10:30:45\",\n      \"retries\": 3,\n      \"ip\": \"10.1.1.1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update snmpgw",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw"
                  ]
                },
                "description": "Partially update snmpgw on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"trapPort\": \"configured-value\",\n  \"rowCacheMaxAge\": \"configured-value\",\n  \"rowCacheMaxSize\": 1,\n  \"agent\": [\n    {\n      \"name\": \"example-1\",\n      \"subscriptionId\": \"1\",\n      \"forwardNotifStream\": \"configured-value\",\n      \"enabled\": true,\n      \"community\": \"65000:200\",\n      \"community_bin\": \"configured-value\",\n      \"version\": \"17.18.1\",\n      \"timeout\": \"10:30:45\",\n      \"retries\": 3,\n      \"ip\": \"10.1.1.1\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete snmpgw",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw"
                  ]
                },
                "description": "Remove snmpgw from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get trapPort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/trapPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "trapPort"
                  ]
                },
                "description": "Retrieve trapPort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace trapPort",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/trapPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "trapPort"
                  ]
                },
                "description": "Create or replace trapPort on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update trapPort",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/trapPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "trapPort"
                  ]
                },
                "description": "Partially update trapPort on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete trapPort",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/trapPort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "trapPort"
                  ]
                },
                "description": "Remove trapPort from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rowCacheMaxAge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/rowCacheMaxAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "rowCacheMaxAge"
                  ]
                },
                "description": "Retrieve rowCacheMaxAge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rowCacheMaxAge",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/rowCacheMaxAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "rowCacheMaxAge"
                  ]
                },
                "description": "Create or replace rowCacheMaxAge on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rowCacheMaxAge",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/rowCacheMaxAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "rowCacheMaxAge"
                  ]
                },
                "description": "Partially update rowCacheMaxAge on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rowCacheMaxAge",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/rowCacheMaxAge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "rowCacheMaxAge"
                  ]
                },
                "description": "Remove rowCacheMaxAge from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rowCacheMaxSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/rowCacheMaxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "rowCacheMaxSize"
                  ]
                },
                "description": "Retrieve rowCacheMaxSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rowCacheMaxSize",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/rowCacheMaxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "rowCacheMaxSize"
                  ]
                },
                "description": "Create or replace rowCacheMaxSize on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rowCacheMaxSize",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/rowCacheMaxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "rowCacheMaxSize"
                  ]
                },
                "description": "Partially update rowCacheMaxSize on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rowCacheMaxSize",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/rowCacheMaxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "rowCacheMaxSize"
                  ]
                },
                "description": "Remove rowCacheMaxSize from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get agent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent"
                  ]
                },
                "description": "Retrieve agent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace agent",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent"
                  ]
                },
                "description": "Create or replace agent on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"subscriptionId\": \"1\",\n    \"forwardNotifStream\": \"configured-value\",\n    \"enabled\": true,\n    \"community\": \"65000:200\",\n    \"community_bin\": \"configured-value\",\n    \"version\": \"17.18.1\",\n    \"timeout\": \"10:30:45\",\n    \"retries\": 3,\n    \"ip\": \"10.1.1.1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update agent",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent"
                  ]
                },
                "description": "Partially update agent on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"subscriptionId\": \"1\",\n    \"forwardNotifStream\": \"configured-value\",\n    \"enabled\": true,\n    \"community\": \"65000:200\",\n    \"community_bin\": \"configured-value\",\n    \"version\": \"17.18.1\",\n    \"timeout\": \"10:30:45\",\n    \"retries\": 3,\n    \"ip\": \"10.1.1.1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete agent",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent"
                  ]
                },
                "description": "Remove agent from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get agent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve agent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace agent",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace agent on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"subscriptionId\": \"1\",\n    \"forwardNotifStream\": \"configured-value\",\n    \"enabled\": true,\n    \"community\": \"65000:200\",\n    \"community_bin\": \"configured-value\",\n    \"version\": \"17.18.1\",\n    \"timeout\": \"10:30:45\",\n    \"retries\": 3,\n    \"ip\": \"10.1.1.1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update agent",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update agent on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"subscriptionId\": \"1\",\n    \"forwardNotifStream\": \"configured-value\",\n    \"enabled\": true,\n    \"community\": \"65000:200\",\n    \"community_bin\": \"configured-value\",\n    \"version\": \"17.18.1\",\n    \"timeout\": \"10:30:45\",\n    \"retries\": 3,\n    \"ip\": \"10.1.1.1\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete agent",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove agent from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get subscriptionId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/subscriptionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "subscriptionId"
                  ]
                },
                "description": "Retrieve subscriptionId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace subscriptionId",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/subscriptionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "subscriptionId"
                  ]
                },
                "description": "Create or replace subscriptionId on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update subscriptionId",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/subscriptionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "subscriptionId"
                  ]
                },
                "description": "Partially update subscriptionId on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete subscriptionId",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/subscriptionId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "subscriptionId"
                  ]
                },
                "description": "Remove subscriptionId from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get forwardNotifStream",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/forwardNotifStream",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "forwardNotifStream"
                  ]
                },
                "description": "Retrieve forwardNotifStream from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace forwardNotifStream",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/forwardNotifStream",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "forwardNotifStream"
                  ]
                },
                "description": "Create or replace forwardNotifStream on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update forwardNotifStream",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/forwardNotifStream",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "forwardNotifStream"
                  ]
                },
                "description": "Partially update forwardNotifStream on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete forwardNotifStream",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/forwardNotifStream",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "forwardNotifStream"
                  ]
                },
                "description": "Remove forwardNotifStream from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get community",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/community",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "community"
                  ]
                },
                "description": "Retrieve community from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace community",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/community",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "community"
                  ]
                },
                "description": "Create or replace community on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"65000:200\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update community",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/community",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "community"
                  ]
                },
                "description": "Partially update community on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"65000:200\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete community",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/community",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "community"
                  ]
                },
                "description": "Remove community from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get community_bin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/community_bin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "community_bin"
                  ]
                },
                "description": "Retrieve community_bin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace community_bin",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/community_bin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "community_bin"
                  ]
                },
                "description": "Create or replace community_bin on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update community_bin",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/community_bin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "community_bin"
                  ]
                },
                "description": "Partially update community_bin on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete community_bin",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/community_bin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "community_bin"
                  ]
                },
                "description": "Remove community_bin from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get version",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "version"
                  ]
                },
                "description": "Retrieve version from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace version",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "version"
                  ]
                },
                "description": "Create or replace version on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"17.18.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update version",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "version"
                  ]
                },
                "description": "Partially update version on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"17.18.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete version",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "version"
                  ]
                },
                "description": "Remove version from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get timeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/timeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "timeout"
                  ]
                },
                "description": "Retrieve timeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace timeout",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/timeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "timeout"
                  ]
                },
                "description": "Create or replace timeout on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update timeout",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/timeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "timeout"
                  ]
                },
                "description": "Partially update timeout on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete timeout",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/timeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "timeout"
                  ]
                },
                "description": "Remove timeout from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get retries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/retries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "retries"
                  ]
                },
                "description": "Retrieve retries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace retries",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/retries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "retries"
                  ]
                },
                "description": "Create or replace retries on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "3",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update retries",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/retries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "retries"
                  ]
                },
                "description": "Partially update retries on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "3",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete retries",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/retries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "retries"
                  ]
                },
                "description": "Remove retries from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "ip"
                  ]
                },
                "description": "Retrieve ip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ip",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "ip"
                  ]
                },
                "description": "Create or replace ip on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ip",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "ip"
                  ]
                },
                "description": "Partially update ip on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ip",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "ip"
                  ]
                },
                "description": "Remove ip from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get port",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "port"
                  ]
                },
                "description": "Retrieve port from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace port",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "port"
                  ]
                },
                "description": "Create or replace port on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"443\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update port",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "port"
                  ]
                },
                "description": "Partially update port on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"443\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete port",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "port"
                  ]
                },
                "description": "Remove port from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get netns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/netns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "netns"
                  ]
                },
                "description": "Retrieve netns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace netns",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/netns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "netns"
                  ]
                },
                "description": "Create or replace netns on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update netns",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/netns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "netns"
                  ]
                },
                "description": "Partially update netns on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete netns",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/netns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "netns"
                  ]
                },
                "description": "Remove netns from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vrf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/vrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "vrf"
                  ]
                },
                "description": "Retrieve vrf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vrf",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/vrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "vrf"
                  ]
                },
                "description": "Create or replace vrf on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vrf",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/vrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "vrf"
                  ]
                },
                "description": "Partially update vrf on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vrf",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/vrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "vrf"
                  ]
                },
                "description": "Remove vrf from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get module",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/module",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "module"
                  ]
                },
                "description": "Retrieve module from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace module",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/module",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "module"
                  ]
                },
                "description": "Create or replace module on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update module",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/module",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "module"
                  ]
                },
                "description": "Partially update module on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete module",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpgw/agent/module",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpgw",
                    "agent",
                    "module"
                  ]
                },
                "description": "Remove module from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hideGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup"
                  ]
                },
                "description": "Retrieve hideGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace hideGroup",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup"
                  ]
                },
                "description": "Create or replace hideGroup on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"password\": \"***\",\n    \"callback\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update hideGroup",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup"
                  ]
                },
                "description": "Partially update hideGroup on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"password\": \"***\",\n    \"callback\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete hideGroup",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup"
                  ]
                },
                "description": "Remove hideGroup from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hideGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve hideGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace hideGroup",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace hideGroup on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"password\": \"***\",\n    \"callback\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update hideGroup",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update hideGroup on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"password\": \"***\",\n    \"callback\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete hideGroup",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove hideGroup from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get password",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup/password",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup",
                    "password"
                  ]
                },
                "description": "Retrieve password from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace password",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup/password",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup",
                    "password"
                  ]
                },
                "description": "Create or replace password on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"***\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update password",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup/password",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup",
                    "password"
                  ]
                },
                "description": "Partially update password on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"***\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete password",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup/password",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup",
                    "password"
                  ]
                },
                "description": "Remove password from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callback",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup/callback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup",
                    "callback"
                  ]
                },
                "description": "Retrieve callback from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace callback",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup/callback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup",
                    "callback"
                  ]
                },
                "description": "Create or replace callback on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update callback",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup/callback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup",
                    "callback"
                  ]
                },
                "description": "Partially update callback on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete callback",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/hideGroup/callback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "hideGroup",
                    "callback"
                  ]
                },
                "description": "Remove callback from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get encryptedStrings",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings"
                  ]
                },
                "description": "Retrieve encryptedStrings from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace encryptedStrings",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings"
                  ]
                },
                "description": "Create or replace encryptedStrings on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"externalKeys\": {\n    \"command\": \"configured-value\",\n    \"commandTimeout\": \"10:30:45\",\n    \"commandArgument\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update encryptedStrings",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings"
                  ]
                },
                "description": "Partially update encryptedStrings on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"externalKeys\": {\n    \"command\": \"configured-value\",\n    \"commandTimeout\": \"10:30:45\",\n    \"commandArgument\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete encryptedStrings",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings"
                  ]
                },
                "description": "Remove encryptedStrings from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get externalKeys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings/externalKeys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings",
                    "externalKeys"
                  ]
                },
                "description": "Retrieve externalKeys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace externalKeys",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings/externalKeys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings",
                    "externalKeys"
                  ]
                },
                "description": "Create or replace externalKeys on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"command\": \"configured-value\",\n  \"commandTimeout\": \"10:30:45\",\n  \"commandArgument\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update externalKeys",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings/externalKeys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings",
                    "externalKeys"
                  ]
                },
                "description": "Partially update externalKeys on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"command\": \"configured-value\",\n  \"commandTimeout\": \"10:30:45\",\n  \"commandArgument\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete externalKeys",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings/externalKeys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings",
                    "externalKeys"
                  ]
                },
                "description": "Remove externalKeys from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get command",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings/externalKeys/command",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings",
                    "externalKeys",
                    "command"
                  ]
                },
                "description": "Retrieve command from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace command",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings/externalKeys/command",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings",
                    "externalKeys",
                    "command"
                  ]
                },
                "description": "Create or replace command on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update command",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings/externalKeys/command",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings",
                    "externalKeys",
                    "command"
                  ]
                },
                "description": "Partially update command on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete command",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings/externalKeys/command",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings",
                    "externalKeys",
                    "command"
                  ]
                },
                "description": "Remove command from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get commandTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings/externalKeys/commandTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings",
                    "externalKeys",
                    "commandTimeout"
                  ]
                },
                "description": "Retrieve commandTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace commandTimeout",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings/externalKeys/commandTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings",
                    "externalKeys",
                    "commandTimeout"
                  ]
                },
                "description": "Create or replace commandTimeout on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update commandTimeout",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings/externalKeys/commandTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings",
                    "externalKeys",
                    "commandTimeout"
                  ]
                },
                "description": "Partially update commandTimeout on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete commandTimeout",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings/externalKeys/commandTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings",
                    "externalKeys",
                    "commandTimeout"
                  ]
                },
                "description": "Remove commandTimeout from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get commandArgument",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings/externalKeys/commandArgument",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings",
                    "externalKeys",
                    "commandArgument"
                  ]
                },
                "description": "Retrieve commandArgument from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace commandArgument",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings/externalKeys/commandArgument",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings",
                    "externalKeys",
                    "commandArgument"
                  ]
                },
                "description": "Create or replace commandArgument on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update commandArgument",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings/externalKeys/commandArgument",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings",
                    "externalKeys",
                    "commandArgument"
                  ]
                },
                "description": "Partially update commandArgument on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete commandArgument",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/encryptedStrings/externalKeys/commandArgument",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "encryptedStrings",
                    "externalKeys",
                    "commandArgument"
                  ]
                },
                "description": "Remove commandArgument from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get logs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs"
                  ]
                },
                "description": "Retrieve logs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace logs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs"
                  ]
                },
                "description": "Create or replace logs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"syslogConfig\": {\n    \"version\": \"17.18.1\",\n    \"facility\": \"local7\",\n    \"udp\": {\n      \"enabled\": true,\n      \"host\": \"10.1.1.1\",\n      \"port\": \"443\"\n    },\n    \"syslogServers\": {\n      \"server\": [\n        {}\n      ]\n    }\n  },\n  \"confdLog\": {\n    \"enabled\": true,\n    \"file\": {\n      \"enabled\": true,\n      \"name\": \"example-1\"\n    },\n    \"syslog\": {\n      \"enabled\": true,\n      \"facility\": \"local7\"\n    },\n    \"external\": {\n      \"enabled\": true\n    }\n  },\n  \"developerLog\": {\n    \"enabled\": true,\n    \"file\": {\n      \"enabled\": true,\n      \"name\": \"example-1\"\n    },\n    \"syslog\": {\n      \"enabled\": true,\n      \"facility\": \"local7\"\n    },\n    \"external\": {\n      \"enabled\": true\n    }\n  },\n  \"developerLogLevel\": \"configured-value\",\n  \"auditLog\": {\n    \"enabled\": true,\n    \"file\": {\n      \"enabled\": true,\n      \"name\": \"example-1\"\n    },\n    \"syslog\": {\n      \"enabled\": true,\n      \"facility\": \"local7\"\n    },\n    \"external\": {\n      \"enabled\": true\n    }\n  },\n  \"auditLogCommit\": true,\n  \"auditLogCommitDefaults\": true,\n  \"auditNetworkLog\": {\n    \"enabled\": true,\n    \"file\": {\n      \"enabled\": true,\n      \"name\": \"example-1\"\n    },\n    \"syslog\": {\n      \"enabled\": true,\n      \"facility\": \"local7\"\n    },\n    \"external\": {\n      \"enabled\": true\n    }\n  },\n  \"netconfLog\": {\n    \"enabled\": true,\n    \"file\": {\n      \"enabled\": true,\n      \"name\": \"example-1\"\n    },\n    \"syslog\": {\n      \"enabled\": true,\n      \"facility\": \"local7\"\n    },\n    \"external\": {\n      \"enabled\": true\n    },\n    \"logReplyStatus\": true,\n    \"logGetContent\": true,\n    \"maxContentSize\": 1\n  },\n  \"jsonrpcLog\": {\n    \"enabled\": true,\n    \"file\": {\n      \"enabled\": true,\n      \"name\": \"example-1\"\n    },\n    \"syslog\": {\n      \"enabled\": true,\n      \"facility\": \"local7\"\n    },\n    \"external\": {\n      \"enabled\": true\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update logs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs"
                  ]
                },
                "description": "Partially update logs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"syslogConfig\": {\n    \"version\": \"17.18.1\",\n    \"facility\": \"local7\",\n    \"udp\": {\n      \"enabled\": true,\n      \"host\": \"10.1.1.1\",\n      \"port\": \"443\"\n    },\n    \"syslogServers\": {\n      \"server\": [\n        {}\n      ]\n    }\n  },\n  \"confdLog\": {\n    \"enabled\": true,\n    \"file\": {\n      \"enabled\": true,\n      \"name\": \"example-1\"\n    },\n    \"syslog\": {\n      \"enabled\": true,\n      \"facility\": \"local7\"\n    },\n    \"external\": {\n      \"enabled\": true\n    }\n  },\n  \"developerLog\": {\n    \"enabled\": true,\n    \"file\": {\n      \"enabled\": true,\n      \"name\": \"example-1\"\n    },\n    \"syslog\": {\n      \"enabled\": true,\n      \"facility\": \"local7\"\n    },\n    \"external\": {\n      \"enabled\": true\n    }\n  },\n  \"developerLogLevel\": \"configured-value\",\n  \"auditLog\": {\n    \"enabled\": true,\n    \"file\": {\n      \"enabled\": true,\n      \"name\": \"example-1\"\n    },\n    \"syslog\": {\n      \"enabled\": true,\n      \"facility\": \"local7\"\n    },\n    \"external\": {\n      \"enabled\": true\n    }\n  },\n  \"auditLogCommit\": true,\n  \"auditLogCommitDefaults\": true,\n  \"auditNetworkLog\": {\n    \"enabled\": true,\n    \"file\": {\n      \"enabled\": true,\n      \"name\": \"example-1\"\n    },\n    \"syslog\": {\n      \"enabled\": true,\n      \"facility\": \"local7\"\n    },\n    \"external\": {\n      \"enabled\": true\n    }\n  },\n  \"netconfLog\": {\n    \"enabled\": true,\n    \"file\": {\n      \"enabled\": true,\n      \"name\": \"example-1\"\n    },\n    \"syslog\": {\n      \"enabled\": true,\n      \"facility\": \"local7\"\n    },\n    \"external\": {\n      \"enabled\": true\n    },\n    \"logReplyStatus\": true,\n    \"logGetContent\": true,\n    \"maxContentSize\": 1\n  },\n  \"jsonrpcLog\": {\n    \"enabled\": true,\n    \"file\": {\n      \"enabled\": true,\n      \"name\": \"example-1\"\n    },\n    \"syslog\": {\n      \"enabled\": true,\n      \"facility\": \"local7\"\n    },\n    \"external\": {\n      \"enabled\": true\n    }\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete logs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs"
                  ]
                },
                "description": "Remove logs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get syslogConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig"
                  ]
                },
                "description": "Retrieve syslogConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace syslogConfig",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig"
                  ]
                },
                "description": "Create or replace syslogConfig on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"version\": \"17.18.1\",\n  \"facility\": \"local7\",\n  \"udp\": {\n    \"enabled\": true,\n    \"host\": \"10.1.1.1\",\n    \"port\": \"443\"\n  },\n  \"syslogServers\": {\n    \"server\": [\n      {\n        \"host\": {},\n        \"port\": {},\n        \"version\": {},\n        \"facility\": {},\n        \"enabled\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update syslogConfig",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig"
                  ]
                },
                "description": "Partially update syslogConfig on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"version\": \"17.18.1\",\n  \"facility\": \"local7\",\n  \"udp\": {\n    \"enabled\": true,\n    \"host\": \"10.1.1.1\",\n    \"port\": \"443\"\n  },\n  \"syslogServers\": {\n    \"server\": [\n      {\n        \"host\": {},\n        \"port\": {},\n        \"version\": {},\n        \"facility\": {},\n        \"enabled\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete syslogConfig",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig"
                  ]
                },
                "description": "Remove syslogConfig from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get version",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig",
                    "version"
                  ]
                },
                "description": "Retrieve version from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace version",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig",
                    "version"
                  ]
                },
                "description": "Create or replace version on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"17.18.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update version",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig",
                    "version"
                  ]
                },
                "description": "Partially update version on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"17.18.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete version",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig/version",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig",
                    "version"
                  ]
                },
                "description": "Remove version from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get facility",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig/facility",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig",
                    "facility"
                  ]
                },
                "description": "Retrieve facility from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace facility",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig/facility",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig",
                    "facility"
                  ]
                },
                "description": "Create or replace facility on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"local7\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update facility",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig/facility",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig",
                    "facility"
                  ]
                },
                "description": "Partially update facility on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"local7\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete facility",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig/facility",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig",
                    "facility"
                  ]
                },
                "description": "Remove facility from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get udp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig/udp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig",
                    "udp"
                  ]
                },
                "description": "Retrieve udp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace udp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig/udp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig",
                    "udp"
                  ]
                },
                "description": "Create or replace udp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"host\": \"10.1.1.1\",\n  \"port\": \"443\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update udp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig/udp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig",
                    "udp"
                  ]
                },
                "description": "Partially update udp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"host\": \"10.1.1.1\",\n  \"port\": \"443\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete udp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig/udp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig",
                    "udp"
                  ]
                },
                "description": "Remove udp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get syslogServers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig/syslogServers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig",
                    "syslogServers"
                  ]
                },
                "description": "Retrieve syslogServers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace syslogServers",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig/syslogServers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig",
                    "syslogServers"
                  ]
                },
                "description": "Create or replace syslogServers on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"server\": [\n    {\n      \"host\": \"10.1.1.1\",\n      \"port\": \"443\",\n      \"version\": \"17.18.1\",\n      \"facility\": \"local7\",\n      \"enabled\": true\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update syslogServers",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig/syslogServers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig",
                    "syslogServers"
                  ]
                },
                "description": "Partially update syslogServers on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"server\": [\n    {\n      \"host\": \"10.1.1.1\",\n      \"port\": \"443\",\n      \"version\": \"17.18.1\",\n      \"facility\": \"local7\",\n      \"enabled\": true\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete syslogServers",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/syslogConfig/syslogServers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "syslogConfig",
                    "syslogServers"
                  ]
                },
                "description": "Remove syslogServers from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get confdLog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog"
                  ]
                },
                "description": "Retrieve confdLog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace confdLog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog"
                  ]
                },
                "description": "Create or replace confdLog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"file\": {\n    \"enabled\": true,\n    \"name\": \"example-1\"\n  },\n  \"syslog\": {\n    \"enabled\": true,\n    \"facility\": \"local7\"\n  },\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update confdLog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog"
                  ]
                },
                "description": "Partially update confdLog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"file\": {\n    \"enabled\": true,\n    \"name\": \"example-1\"\n  },\n  \"syslog\": {\n    \"enabled\": true,\n    \"facility\": \"local7\"\n  },\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete confdLog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog"
                  ]
                },
                "description": "Remove confdLog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get file",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog",
                    "file"
                  ]
                },
                "description": "Retrieve file from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace file",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog",
                    "file"
                  ]
                },
                "description": "Create or replace file on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update file",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog",
                    "file"
                  ]
                },
                "description": "Partially update file on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete file",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog",
                    "file"
                  ]
                },
                "description": "Remove file from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get syslog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog",
                    "syslog"
                  ]
                },
                "description": "Retrieve syslog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace syslog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog",
                    "syslog"
                  ]
                },
                "description": "Create or replace syslog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"facility\": \"local7\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update syslog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog",
                    "syslog"
                  ]
                },
                "description": "Partially update syslog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"facility\": \"local7\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete syslog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog",
                    "syslog"
                  ]
                },
                "description": "Remove syslog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get external",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog",
                    "external"
                  ]
                },
                "description": "Retrieve external from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace external",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog",
                    "external"
                  ]
                },
                "description": "Create or replace external on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update external",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog",
                    "external"
                  ]
                },
                "description": "Partially update external on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete external",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/confdLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "confdLog",
                    "external"
                  ]
                },
                "description": "Remove external from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get developerLog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog"
                  ]
                },
                "description": "Retrieve developerLog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace developerLog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog"
                  ]
                },
                "description": "Create or replace developerLog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"file\": {\n    \"enabled\": true,\n    \"name\": \"example-1\"\n  },\n  \"syslog\": {\n    \"enabled\": true,\n    \"facility\": \"local7\"\n  },\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update developerLog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog"
                  ]
                },
                "description": "Partially update developerLog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"file\": {\n    \"enabled\": true,\n    \"name\": \"example-1\"\n  },\n  \"syslog\": {\n    \"enabled\": true,\n    \"facility\": \"local7\"\n  },\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete developerLog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog"
                  ]
                },
                "description": "Remove developerLog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get file",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog",
                    "file"
                  ]
                },
                "description": "Retrieve file from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace file",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog",
                    "file"
                  ]
                },
                "description": "Create or replace file on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update file",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog",
                    "file"
                  ]
                },
                "description": "Partially update file on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete file",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog",
                    "file"
                  ]
                },
                "description": "Remove file from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get syslog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog",
                    "syslog"
                  ]
                },
                "description": "Retrieve syslog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace syslog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog",
                    "syslog"
                  ]
                },
                "description": "Create or replace syslog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"facility\": \"local7\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update syslog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog",
                    "syslog"
                  ]
                },
                "description": "Partially update syslog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"facility\": \"local7\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete syslog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog",
                    "syslog"
                  ]
                },
                "description": "Remove syslog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get external",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog",
                    "external"
                  ]
                },
                "description": "Retrieve external from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace external",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog",
                    "external"
                  ]
                },
                "description": "Create or replace external on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update external",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog",
                    "external"
                  ]
                },
                "description": "Partially update external on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete external",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLog",
                    "external"
                  ]
                },
                "description": "Remove external from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get developerLogLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLogLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLogLevel"
                  ]
                },
                "description": "Retrieve developerLogLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace developerLogLevel",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLogLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLogLevel"
                  ]
                },
                "description": "Create or replace developerLogLevel on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update developerLogLevel",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLogLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLogLevel"
                  ]
                },
                "description": "Partially update developerLogLevel on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete developerLogLevel",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/developerLogLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "developerLogLevel"
                  ]
                },
                "description": "Remove developerLogLevel from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get auditLog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog"
                  ]
                },
                "description": "Retrieve auditLog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace auditLog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog"
                  ]
                },
                "description": "Create or replace auditLog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"file\": {\n    \"enabled\": true,\n    \"name\": \"example-1\"\n  },\n  \"syslog\": {\n    \"enabled\": true,\n    \"facility\": \"local7\"\n  },\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update auditLog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog"
                  ]
                },
                "description": "Partially update auditLog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"file\": {\n    \"enabled\": true,\n    \"name\": \"example-1\"\n  },\n  \"syslog\": {\n    \"enabled\": true,\n    \"facility\": \"local7\"\n  },\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete auditLog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog"
                  ]
                },
                "description": "Remove auditLog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get file",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog",
                    "file"
                  ]
                },
                "description": "Retrieve file from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace file",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog",
                    "file"
                  ]
                },
                "description": "Create or replace file on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update file",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog",
                    "file"
                  ]
                },
                "description": "Partially update file on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete file",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog",
                    "file"
                  ]
                },
                "description": "Remove file from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get syslog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog",
                    "syslog"
                  ]
                },
                "description": "Retrieve syslog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace syslog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog",
                    "syslog"
                  ]
                },
                "description": "Create or replace syslog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"facility\": \"local7\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update syslog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog",
                    "syslog"
                  ]
                },
                "description": "Partially update syslog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"facility\": \"local7\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete syslog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog",
                    "syslog"
                  ]
                },
                "description": "Remove syslog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get external",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog",
                    "external"
                  ]
                },
                "description": "Retrieve external from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace external",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog",
                    "external"
                  ]
                },
                "description": "Create or replace external on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update external",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog",
                    "external"
                  ]
                },
                "description": "Partially update external on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete external",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLog",
                    "external"
                  ]
                },
                "description": "Remove external from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get auditLogCommit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLogCommit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLogCommit"
                  ]
                },
                "description": "Retrieve auditLogCommit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace auditLogCommit",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLogCommit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLogCommit"
                  ]
                },
                "description": "Create or replace auditLogCommit on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update auditLogCommit",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLogCommit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLogCommit"
                  ]
                },
                "description": "Partially update auditLogCommit on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete auditLogCommit",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLogCommit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLogCommit"
                  ]
                },
                "description": "Remove auditLogCommit from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get auditLogCommitDefaults",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLogCommitDefaults",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLogCommitDefaults"
                  ]
                },
                "description": "Retrieve auditLogCommitDefaults from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace auditLogCommitDefaults",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLogCommitDefaults",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLogCommitDefaults"
                  ]
                },
                "description": "Create or replace auditLogCommitDefaults on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update auditLogCommitDefaults",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLogCommitDefaults",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLogCommitDefaults"
                  ]
                },
                "description": "Partially update auditLogCommitDefaults on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete auditLogCommitDefaults",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditLogCommitDefaults",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditLogCommitDefaults"
                  ]
                },
                "description": "Remove auditLogCommitDefaults from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get auditNetworkLog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog"
                  ]
                },
                "description": "Retrieve auditNetworkLog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace auditNetworkLog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog"
                  ]
                },
                "description": "Create or replace auditNetworkLog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"file\": {\n    \"enabled\": true,\n    \"name\": \"example-1\"\n  },\n  \"syslog\": {\n    \"enabled\": true,\n    \"facility\": \"local7\"\n  },\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update auditNetworkLog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog"
                  ]
                },
                "description": "Partially update auditNetworkLog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"file\": {\n    \"enabled\": true,\n    \"name\": \"example-1\"\n  },\n  \"syslog\": {\n    \"enabled\": true,\n    \"facility\": \"local7\"\n  },\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete auditNetworkLog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog"
                  ]
                },
                "description": "Remove auditNetworkLog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get file",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog",
                    "file"
                  ]
                },
                "description": "Retrieve file from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace file",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog",
                    "file"
                  ]
                },
                "description": "Create or replace file on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update file",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog",
                    "file"
                  ]
                },
                "description": "Partially update file on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete file",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog",
                    "file"
                  ]
                },
                "description": "Remove file from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get syslog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog",
                    "syslog"
                  ]
                },
                "description": "Retrieve syslog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace syslog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog",
                    "syslog"
                  ]
                },
                "description": "Create or replace syslog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"facility\": \"local7\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update syslog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog",
                    "syslog"
                  ]
                },
                "description": "Partially update syslog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"facility\": \"local7\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete syslog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog",
                    "syslog"
                  ]
                },
                "description": "Remove syslog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get external",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog",
                    "external"
                  ]
                },
                "description": "Retrieve external from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace external",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog",
                    "external"
                  ]
                },
                "description": "Create or replace external on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update external",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog",
                    "external"
                  ]
                },
                "description": "Partially update external on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete external",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/auditNetworkLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "auditNetworkLog",
                    "external"
                  ]
                },
                "description": "Remove external from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get netconfLog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog"
                  ]
                },
                "description": "Retrieve netconfLog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace netconfLog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog"
                  ]
                },
                "description": "Create or replace netconfLog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"file\": {\n    \"enabled\": true,\n    \"name\": \"example-1\"\n  },\n  \"syslog\": {\n    \"enabled\": true,\n    \"facility\": \"local7\"\n  },\n  \"external\": {\n    \"enabled\": true\n  },\n  \"logReplyStatus\": true,\n  \"logGetContent\": true,\n  \"maxContentSize\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update netconfLog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog"
                  ]
                },
                "description": "Partially update netconfLog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"file\": {\n    \"enabled\": true,\n    \"name\": \"example-1\"\n  },\n  \"syslog\": {\n    \"enabled\": true,\n    \"facility\": \"local7\"\n  },\n  \"external\": {\n    \"enabled\": true\n  },\n  \"logReplyStatus\": true,\n  \"logGetContent\": true,\n  \"maxContentSize\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete netconfLog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog"
                  ]
                },
                "description": "Remove netconfLog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get file",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "file"
                  ]
                },
                "description": "Retrieve file from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace file",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "file"
                  ]
                },
                "description": "Create or replace file on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update file",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "file"
                  ]
                },
                "description": "Partially update file on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete file",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "file"
                  ]
                },
                "description": "Remove file from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get syslog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "syslog"
                  ]
                },
                "description": "Retrieve syslog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace syslog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "syslog"
                  ]
                },
                "description": "Create or replace syslog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"facility\": \"local7\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update syslog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "syslog"
                  ]
                },
                "description": "Partially update syslog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"facility\": \"local7\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete syslog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "syslog"
                  ]
                },
                "description": "Remove syslog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get external",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "external"
                  ]
                },
                "description": "Retrieve external from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace external",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "external"
                  ]
                },
                "description": "Create or replace external on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update external",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "external"
                  ]
                },
                "description": "Partially update external on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete external",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "external"
                  ]
                },
                "description": "Remove external from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get logReplyStatus",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/logReplyStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "logReplyStatus"
                  ]
                },
                "description": "Retrieve logReplyStatus from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace logReplyStatus",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/logReplyStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "logReplyStatus"
                  ]
                },
                "description": "Create or replace logReplyStatus on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update logReplyStatus",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/logReplyStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "logReplyStatus"
                  ]
                },
                "description": "Partially update logReplyStatus on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete logReplyStatus",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/logReplyStatus",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "logReplyStatus"
                  ]
                },
                "description": "Remove logReplyStatus from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get logGetContent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/logGetContent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "logGetContent"
                  ]
                },
                "description": "Retrieve logGetContent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace logGetContent",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/logGetContent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "logGetContent"
                  ]
                },
                "description": "Create or replace logGetContent on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update logGetContent",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/logGetContent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "logGetContent"
                  ]
                },
                "description": "Partially update logGetContent on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete logGetContent",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/logGetContent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "logGetContent"
                  ]
                },
                "description": "Remove logGetContent from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxContentSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/maxContentSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "maxContentSize"
                  ]
                },
                "description": "Retrieve maxContentSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxContentSize",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/maxContentSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "maxContentSize"
                  ]
                },
                "description": "Create or replace maxContentSize on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxContentSize",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/maxContentSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "maxContentSize"
                  ]
                },
                "description": "Partially update maxContentSize on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxContentSize",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfLog/maxContentSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfLog",
                    "maxContentSize"
                  ]
                },
                "description": "Remove maxContentSize from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get jsonrpcLog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog"
                  ]
                },
                "description": "Retrieve jsonrpcLog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace jsonrpcLog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog"
                  ]
                },
                "description": "Create or replace jsonrpcLog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"file\": {\n    \"enabled\": true,\n    \"name\": \"example-1\"\n  },\n  \"syslog\": {\n    \"enabled\": true,\n    \"facility\": \"local7\"\n  },\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update jsonrpcLog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog"
                  ]
                },
                "description": "Partially update jsonrpcLog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"file\": {\n    \"enabled\": true,\n    \"name\": \"example-1\"\n  },\n  \"syslog\": {\n    \"enabled\": true,\n    \"facility\": \"local7\"\n  },\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete jsonrpcLog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog"
                  ]
                },
                "description": "Remove jsonrpcLog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get file",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog",
                    "file"
                  ]
                },
                "description": "Retrieve file from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace file",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog",
                    "file"
                  ]
                },
                "description": "Create or replace file on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update file",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog",
                    "file"
                  ]
                },
                "description": "Partially update file on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete file",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog",
                    "file"
                  ]
                },
                "description": "Remove file from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get syslog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog",
                    "syslog"
                  ]
                },
                "description": "Retrieve syslog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace syslog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog",
                    "syslog"
                  ]
                },
                "description": "Create or replace syslog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"facility\": \"local7\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update syslog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog",
                    "syslog"
                  ]
                },
                "description": "Partially update syslog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"facility\": \"local7\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete syslog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog",
                    "syslog"
                  ]
                },
                "description": "Remove syslog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get external",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog",
                    "external"
                  ]
                },
                "description": "Retrieve external from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace external",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog",
                    "external"
                  ]
                },
                "description": "Create or replace external on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update external",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog",
                    "external"
                  ]
                },
                "description": "Partially update external on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete external",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/jsonrpcLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "jsonrpcLog",
                    "external"
                  ]
                },
                "description": "Remove external from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpLog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog"
                  ]
                },
                "description": "Retrieve snmpLog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace snmpLog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog"
                  ]
                },
                "description": "Create or replace snmpLog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"file\": {\n    \"enabled\": true,\n    \"name\": \"example-1\"\n  },\n  \"syslog\": {\n    \"enabled\": true,\n    \"facility\": \"local7\"\n  },\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update snmpLog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog"
                  ]
                },
                "description": "Partially update snmpLog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"file\": {\n    \"enabled\": true,\n    \"name\": \"example-1\"\n  },\n  \"syslog\": {\n    \"enabled\": true,\n    \"facility\": \"local7\"\n  },\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete snmpLog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog"
                  ]
                },
                "description": "Remove snmpLog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get file",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog",
                    "file"
                  ]
                },
                "description": "Retrieve file from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace file",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog",
                    "file"
                  ]
                },
                "description": "Create or replace file on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update file",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog",
                    "file"
                  ]
                },
                "description": "Partially update file on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"name\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete file",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog",
                    "file"
                  ]
                },
                "description": "Remove file from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get syslog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog",
                    "syslog"
                  ]
                },
                "description": "Retrieve syslog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace syslog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog",
                    "syslog"
                  ]
                },
                "description": "Create or replace syslog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"facility\": \"local7\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update syslog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog",
                    "syslog"
                  ]
                },
                "description": "Partially update syslog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"facility\": \"local7\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete syslog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog",
                    "syslog"
                  ]
                },
                "description": "Remove syslog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get external",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog",
                    "external"
                  ]
                },
                "description": "Retrieve external from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace external",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog",
                    "external"
                  ]
                },
                "description": "Create or replace external on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update external",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog",
                    "external"
                  ]
                },
                "description": "Partially update external on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete external",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLog",
                    "external"
                  ]
                },
                "description": "Remove external from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpLogLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLogLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLogLevel"
                  ]
                },
                "description": "Retrieve snmpLogLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace snmpLogLevel",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLogLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLogLevel"
                  ]
                },
                "description": "Create or replace snmpLogLevel on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update snmpLogLevel",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLogLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLogLevel"
                  ]
                },
                "description": "Partially update snmpLogLevel on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete snmpLogLevel",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpLogLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpLogLevel"
                  ]
                },
                "description": "Remove snmpLogLevel from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpGatewayLog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog"
                  ]
                },
                "description": "Retrieve snmpGatewayLog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace snmpGatewayLog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog"
                  ]
                },
                "description": "Create or replace snmpGatewayLog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"northbound\": true,\n  \"southbound\": true,\n  \"filename\": \"example-1\",\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update snmpGatewayLog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog"
                  ]
                },
                "description": "Partially update snmpGatewayLog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"northbound\": true,\n  \"southbound\": true,\n  \"filename\": \"example-1\",\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete snmpGatewayLog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog"
                  ]
                },
                "description": "Remove snmpGatewayLog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get northbound",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/northbound",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "northbound"
                  ]
                },
                "description": "Retrieve northbound from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace northbound",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/northbound",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "northbound"
                  ]
                },
                "description": "Create or replace northbound on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update northbound",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/northbound",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "northbound"
                  ]
                },
                "description": "Partially update northbound on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete northbound",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/northbound",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "northbound"
                  ]
                },
                "description": "Remove northbound from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get southbound",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/southbound",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "southbound"
                  ]
                },
                "description": "Retrieve southbound from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace southbound",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/southbound",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "southbound"
                  ]
                },
                "description": "Create or replace southbound on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update southbound",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/southbound",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "southbound"
                  ]
                },
                "description": "Partially update southbound on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete southbound",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/southbound",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "southbound"
                  ]
                },
                "description": "Remove southbound from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filename",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "filename"
                  ]
                },
                "description": "Retrieve filename from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filename",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "filename"
                  ]
                },
                "description": "Create or replace filename on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filename",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "filename"
                  ]
                },
                "description": "Partially update filename on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filename",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "filename"
                  ]
                },
                "description": "Remove filename from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get external",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "external"
                  ]
                },
                "description": "Retrieve external from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace external",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "external"
                  ]
                },
                "description": "Create or replace external on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update external",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "external"
                  ]
                },
                "description": "Partially update external on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete external",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/snmpGatewayLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "snmpGatewayLog",
                    "external"
                  ]
                },
                "description": "Remove external from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get webuiBrowserLog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiBrowserLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiBrowserLog"
                  ]
                },
                "description": "Retrieve webuiBrowserLog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace webuiBrowserLog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiBrowserLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiBrowserLog"
                  ]
                },
                "description": "Create or replace webuiBrowserLog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"filename\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update webuiBrowserLog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiBrowserLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiBrowserLog"
                  ]
                },
                "description": "Partially update webuiBrowserLog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"filename\": \"example-1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete webuiBrowserLog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiBrowserLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiBrowserLog"
                  ]
                },
                "description": "Remove webuiBrowserLog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiBrowserLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiBrowserLog",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiBrowserLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiBrowserLog",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiBrowserLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiBrowserLog",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiBrowserLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiBrowserLog",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filename",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiBrowserLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiBrowserLog",
                    "filename"
                  ]
                },
                "description": "Retrieve filename from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filename",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiBrowserLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiBrowserLog",
                    "filename"
                  ]
                },
                "description": "Create or replace filename on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filename",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiBrowserLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiBrowserLog",
                    "filename"
                  ]
                },
                "description": "Partially update filename on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filename",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiBrowserLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiBrowserLog",
                    "filename"
                  ]
                },
                "description": "Remove filename from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get webuiAccessLog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog"
                  ]
                },
                "description": "Retrieve webuiAccessLog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace webuiAccessLog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog"
                  ]
                },
                "description": "Create or replace webuiAccessLog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"trafficLog\": true,\n  \"dir\": \"configured-value\",\n  \"syslog\": {\n    \"enabled\": true,\n    \"facility\": \"local7\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update webuiAccessLog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog"
                  ]
                },
                "description": "Partially update webuiAccessLog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"trafficLog\": true,\n  \"dir\": \"configured-value\",\n  \"syslog\": {\n    \"enabled\": true,\n    \"facility\": \"local7\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete webuiAccessLog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog"
                  ]
                },
                "description": "Remove webuiAccessLog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get trafficLog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog/trafficLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog",
                    "trafficLog"
                  ]
                },
                "description": "Retrieve trafficLog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace trafficLog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog/trafficLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog",
                    "trafficLog"
                  ]
                },
                "description": "Create or replace trafficLog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update trafficLog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog/trafficLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog",
                    "trafficLog"
                  ]
                },
                "description": "Partially update trafficLog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete trafficLog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog/trafficLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog",
                    "trafficLog"
                  ]
                },
                "description": "Remove trafficLog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dir",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog/dir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog",
                    "dir"
                  ]
                },
                "description": "Retrieve dir from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dir",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog/dir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog",
                    "dir"
                  ]
                },
                "description": "Create or replace dir on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dir",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog/dir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog",
                    "dir"
                  ]
                },
                "description": "Partially update dir on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dir",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog/dir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog",
                    "dir"
                  ]
                },
                "description": "Remove dir from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get syslog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog",
                    "syslog"
                  ]
                },
                "description": "Retrieve syslog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace syslog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog",
                    "syslog"
                  ]
                },
                "description": "Create or replace syslog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"facility\": \"local7\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update syslog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog",
                    "syslog"
                  ]
                },
                "description": "Partially update syslog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"facility\": \"local7\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete syslog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/webuiAccessLog/syslog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "webuiAccessLog",
                    "syslog"
                  ]
                },
                "description": "Remove syslog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get netconfTraceLog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog"
                  ]
                },
                "description": "Retrieve netconfTraceLog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace netconfTraceLog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog"
                  ]
                },
                "description": "Create or replace netconfTraceLog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"filename\": \"example-1\",\n  \"external\": {\n    \"enabled\": true\n  },\n  \"format\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update netconfTraceLog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog"
                  ]
                },
                "description": "Partially update netconfTraceLog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"filename\": \"example-1\",\n  \"external\": {\n    \"enabled\": true\n  },\n  \"format\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete netconfTraceLog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog"
                  ]
                },
                "description": "Remove netconfTraceLog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filename",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog",
                    "filename"
                  ]
                },
                "description": "Retrieve filename from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filename",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog",
                    "filename"
                  ]
                },
                "description": "Create or replace filename on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filename",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog",
                    "filename"
                  ]
                },
                "description": "Partially update filename on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filename",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog",
                    "filename"
                  ]
                },
                "description": "Remove filename from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get external",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog",
                    "external"
                  ]
                },
                "description": "Retrieve external from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace external",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog",
                    "external"
                  ]
                },
                "description": "Create or replace external on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update external",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog",
                    "external"
                  ]
                },
                "description": "Partially update external on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete external",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog",
                    "external"
                  ]
                },
                "description": "Remove external from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get format",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog/format",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog",
                    "format"
                  ]
                },
                "description": "Retrieve format from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace format",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog/format",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog",
                    "format"
                  ]
                },
                "description": "Create or replace format on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update format",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog/format",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog",
                    "format"
                  ]
                },
                "description": "Partially update format on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete format",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/netconfTraceLog/format",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "netconfTraceLog",
                    "format"
                  ]
                },
                "description": "Remove format from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get xpathTraceLog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/xpathTraceLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "xpathTraceLog"
                  ]
                },
                "description": "Retrieve xpathTraceLog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace xpathTraceLog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/xpathTraceLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "xpathTraceLog"
                  ]
                },
                "description": "Create or replace xpathTraceLog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"filename\": \"example-1\",\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update xpathTraceLog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/xpathTraceLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "xpathTraceLog"
                  ]
                },
                "description": "Partially update xpathTraceLog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"filename\": \"example-1\",\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete xpathTraceLog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/xpathTraceLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "xpathTraceLog"
                  ]
                },
                "description": "Remove xpathTraceLog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/xpathTraceLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "xpathTraceLog",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/xpathTraceLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "xpathTraceLog",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/xpathTraceLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "xpathTraceLog",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/xpathTraceLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "xpathTraceLog",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filename",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/xpathTraceLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "xpathTraceLog",
                    "filename"
                  ]
                },
                "description": "Retrieve filename from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filename",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/xpathTraceLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "xpathTraceLog",
                    "filename"
                  ]
                },
                "description": "Create or replace filename on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filename",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/xpathTraceLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "xpathTraceLog",
                    "filename"
                  ]
                },
                "description": "Partially update filename on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filename",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/xpathTraceLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "xpathTraceLog",
                    "filename"
                  ]
                },
                "description": "Remove filename from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get external",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/xpathTraceLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "xpathTraceLog",
                    "external"
                  ]
                },
                "description": "Retrieve external from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace external",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/xpathTraceLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "xpathTraceLog",
                    "external"
                  ]
                },
                "description": "Create or replace external on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update external",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/xpathTraceLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "xpathTraceLog",
                    "external"
                  ]
                },
                "description": "Partially update external on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete external",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/xpathTraceLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "xpathTraceLog",
                    "external"
                  ]
                },
                "description": "Remove external from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get transactionErrorLog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/transactionErrorLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "transactionErrorLog"
                  ]
                },
                "description": "Retrieve transactionErrorLog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace transactionErrorLog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/transactionErrorLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "transactionErrorLog"
                  ]
                },
                "description": "Create or replace transactionErrorLog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"filename\": \"example-1\",\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update transactionErrorLog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/transactionErrorLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "transactionErrorLog"
                  ]
                },
                "description": "Partially update transactionErrorLog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"filename\": \"example-1\",\n  \"external\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete transactionErrorLog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/transactionErrorLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "transactionErrorLog"
                  ]
                },
                "description": "Remove transactionErrorLog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/transactionErrorLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "transactionErrorLog",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/transactionErrorLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "transactionErrorLog",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/transactionErrorLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "transactionErrorLog",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/transactionErrorLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "transactionErrorLog",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filename",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/transactionErrorLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "transactionErrorLog",
                    "filename"
                  ]
                },
                "description": "Retrieve filename from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filename",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/transactionErrorLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "transactionErrorLog",
                    "filename"
                  ]
                },
                "description": "Create or replace filename on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filename",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/transactionErrorLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "transactionErrorLog",
                    "filename"
                  ]
                },
                "description": "Partially update filename on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filename",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/transactionErrorLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "transactionErrorLog",
                    "filename"
                  ]
                },
                "description": "Remove filename from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get external",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/transactionErrorLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "transactionErrorLog",
                    "external"
                  ]
                },
                "description": "Retrieve external from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace external",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/transactionErrorLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "transactionErrorLog",
                    "external"
                  ]
                },
                "description": "Create or replace external on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update external",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/transactionErrorLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "transactionErrorLog",
                    "external"
                  ]
                },
                "description": "Partially update external on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete external",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/transactionErrorLog/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "transactionErrorLog",
                    "external"
                  ]
                },
                "description": "Remove external from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get extLog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/extLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "extLog"
                  ]
                },
                "description": "Retrieve extLog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace extLog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/extLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "extLog"
                  ]
                },
                "description": "Create or replace extLog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"filename\": \"example-1\",\n  \"level\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update extLog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/extLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "extLog"
                  ]
                },
                "description": "Partially update extLog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"filename\": \"example-1\",\n  \"level\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete extLog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/extLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "extLog"
                  ]
                },
                "description": "Remove extLog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/extLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "extLog",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/extLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "extLog",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/extLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "extLog",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/extLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "extLog",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filename",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/extLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "extLog",
                    "filename"
                  ]
                },
                "description": "Retrieve filename from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filename",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/extLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "extLog",
                    "filename"
                  ]
                },
                "description": "Create or replace filename on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filename",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/extLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "extLog",
                    "filename"
                  ]
                },
                "description": "Partially update filename on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filename",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/extLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "extLog",
                    "filename"
                  ]
                },
                "description": "Remove filename from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get level",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/extLog/level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "extLog",
                    "level"
                  ]
                },
                "description": "Retrieve level from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace level",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/extLog/level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "extLog",
                    "level"
                  ]
                },
                "description": "Create or replace level on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update level",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/extLog/level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "extLog",
                    "level"
                  ]
                },
                "description": "Partially update level on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete level",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/extLog/level",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "extLog",
                    "level"
                  ]
                },
                "description": "Remove level from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get errorLog",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog"
                  ]
                },
                "description": "Retrieve errorLog from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace errorLog",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog"
                  ]
                },
                "description": "Create or replace errorLog on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"filename\": \"example-1\",\n  \"maxSize\": \"configured-value\",\n  \"debug\": {\n    \"enabled\": true,\n    \"level\": 1,\n    \"tag\": [\n      \"configured-value\"\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update errorLog",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog"
                  ]
                },
                "description": "Partially update errorLog on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"filename\": \"example-1\",\n  \"maxSize\": \"configured-value\",\n  \"debug\": {\n    \"enabled\": true,\n    \"level\": 1,\n    \"tag\": [\n      \"configured-value\"\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete errorLog",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog"
                  ]
                },
                "description": "Remove errorLog from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get filename",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog",
                    "filename"
                  ]
                },
                "description": "Retrieve filename from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace filename",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog",
                    "filename"
                  ]
                },
                "description": "Create or replace filename on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update filename",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog",
                    "filename"
                  ]
                },
                "description": "Partially update filename on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete filename",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog/filename",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog",
                    "filename"
                  ]
                },
                "description": "Remove filename from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog/maxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog",
                    "maxSize"
                  ]
                },
                "description": "Retrieve maxSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxSize",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog/maxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog",
                    "maxSize"
                  ]
                },
                "description": "Create or replace maxSize on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxSize",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog/maxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog",
                    "maxSize"
                  ]
                },
                "description": "Partially update maxSize on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxSize",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog/maxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog",
                    "maxSize"
                  ]
                },
                "description": "Remove maxSize from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get debug",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog/debug",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog",
                    "debug"
                  ]
                },
                "description": "Retrieve debug from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace debug",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog/debug",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog",
                    "debug"
                  ]
                },
                "description": "Create or replace debug on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"level\": 1,\n  \"tag\": [\n    \"configured-value\"\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update debug",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog/debug",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog",
                    "debug"
                  ]
                },
                "description": "Partially update debug on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"level\": 1,\n  \"tag\": [\n    \"configured-value\"\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete debug",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/errorLog/debug",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "errorLog",
                    "debug"
                  ]
                },
                "description": "Remove debug from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get progressTrace",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/progressTrace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "progressTrace"
                  ]
                },
                "description": "Retrieve progressTrace from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace progressTrace",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/progressTrace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "progressTrace"
                  ]
                },
                "description": "Create or replace progressTrace on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"dir\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update progressTrace",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/progressTrace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "progressTrace"
                  ]
                },
                "description": "Partially update progressTrace on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"dir\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete progressTrace",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/progressTrace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "progressTrace"
                  ]
                },
                "description": "Remove progressTrace from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/progressTrace/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "progressTrace",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/progressTrace/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "progressTrace",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/progressTrace/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "progressTrace",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/progressTrace/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "progressTrace",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dir",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/progressTrace/dir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "progressTrace",
                    "dir"
                  ]
                },
                "description": "Retrieve dir from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dir",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/progressTrace/dir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "progressTrace",
                    "dir"
                  ]
                },
                "description": "Create or replace dir on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dir",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/progressTrace/dir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "progressTrace",
                    "dir"
                  ]
                },
                "description": "Partially update dir on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dir",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/progressTrace/dir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "progressTrace",
                    "dir"
                  ]
                },
                "description": "Remove dir from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get external",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "external"
                  ]
                },
                "description": "Retrieve external from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace external",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "external"
                  ]
                },
                "description": "Create or replace external on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"command\": \"configured-value\",\n  \"restart\": {\n    \"maxAttempts\": 45,\n    \"delay\": \"configured-value\",\n    \"period\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update external",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "external"
                  ]
                },
                "description": "Partially update external on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"command\": \"configured-value\",\n  \"restart\": {\n    \"maxAttempts\": 45,\n    \"delay\": \"configured-value\",\n    \"period\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete external",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/external",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "external"
                  ]
                },
                "description": "Remove external from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/external/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "external",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/external/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "external",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/external/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "external",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/external/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "external",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get command",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/external/command",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "external",
                    "command"
                  ]
                },
                "description": "Retrieve command from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace command",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/external/command",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "external",
                    "command"
                  ]
                },
                "description": "Create or replace command on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update command",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/external/command",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "external",
                    "command"
                  ]
                },
                "description": "Partially update command on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete command",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/external/command",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "external",
                    "command"
                  ]
                },
                "description": "Remove command from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get restart",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/external/restart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "external",
                    "restart"
                  ]
                },
                "description": "Retrieve restart from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace restart",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/external/restart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "external",
                    "restart"
                  ]
                },
                "description": "Create or replace restart on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"maxAttempts\": 45,\n  \"delay\": \"configured-value\",\n  \"period\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update restart",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/external/restart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "external",
                    "restart"
                  ]
                },
                "description": "Partially update restart on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"maxAttempts\": 45,\n  \"delay\": \"configured-value\",\n  \"period\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete restart",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/external/restart",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "external",
                    "restart"
                  ]
                },
                "description": "Remove restart from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get traceId",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/traceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "traceId"
                  ]
                },
                "description": "Retrieve traceId from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace traceId",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/traceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "traceId"
                  ]
                },
                "description": "Create or replace traceId on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update traceId",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/traceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "traceId"
                  ]
                },
                "description": "Partially update traceId on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete traceId",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/logs/traceId",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "logs",
                    "traceId"
                  ]
                },
                "description": "Remove traceId from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sessionLimits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits"
                  ]
                },
                "description": "Retrieve sessionLimits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sessionLimits",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits"
                  ]
                },
                "description": "Create or replace sessionLimits on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"maxSessions\": \"configured-value\",\n  \"sessionLimit\": [\n    {\n      \"context\": \"configured-value\",\n      \"maxSessions\": \"configured-value\"\n    }\n  ],\n  \"maxConfigSessions\": \"configured-value\",\n  \"configSessionLimit\": [\n    {\n      \"context\": \"configured-value\",\n      \"maxSessions\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sessionLimits",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits"
                  ]
                },
                "description": "Partially update sessionLimits on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"maxSessions\": \"configured-value\",\n  \"sessionLimit\": [\n    {\n      \"context\": \"configured-value\",\n      \"maxSessions\": \"configured-value\"\n    }\n  ],\n  \"maxConfigSessions\": \"configured-value\",\n  \"configSessionLimit\": [\n    {\n      \"context\": \"configured-value\",\n      \"maxSessions\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sessionLimits",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits"
                  ]
                },
                "description": "Remove sessionLimits from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/maxSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "maxSessions"
                  ]
                },
                "description": "Retrieve maxSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxSessions",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/maxSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "maxSessions"
                  ]
                },
                "description": "Create or replace maxSessions on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxSessions",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/maxSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "maxSessions"
                  ]
                },
                "description": "Partially update maxSessions on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxSessions",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/maxSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "maxSessions"
                  ]
                },
                "description": "Remove maxSessions from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sessionLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/sessionLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "sessionLimit"
                  ]
                },
                "description": "Retrieve sessionLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sessionLimit",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/sessionLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "sessionLimit"
                  ]
                },
                "description": "Create or replace sessionLimit on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"context\": \"configured-value\",\n    \"maxSessions\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sessionLimit",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/sessionLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "sessionLimit"
                  ]
                },
                "description": "Partially update sessionLimit on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"context\": \"configured-value\",\n    \"maxSessions\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sessionLimit",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/sessionLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "sessionLimit"
                  ]
                },
                "description": "Remove sessionLimit from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get context",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/sessionLimit/context",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "sessionLimit",
                    "context"
                  ]
                },
                "description": "Retrieve context from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace context",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/sessionLimit/context",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "sessionLimit",
                    "context"
                  ]
                },
                "description": "Create or replace context on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update context",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/sessionLimit/context",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "sessionLimit",
                    "context"
                  ]
                },
                "description": "Partially update context on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete context",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/sessionLimit/context",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "sessionLimit",
                    "context"
                  ]
                },
                "description": "Remove context from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/sessionLimit/maxSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "sessionLimit",
                    "maxSessions"
                  ]
                },
                "description": "Retrieve maxSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxSessions",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/sessionLimit/maxSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "sessionLimit",
                    "maxSessions"
                  ]
                },
                "description": "Create or replace maxSessions on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxSessions",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/sessionLimit/maxSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "sessionLimit",
                    "maxSessions"
                  ]
                },
                "description": "Partially update maxSessions on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxSessions",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/sessionLimit/maxSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "sessionLimit",
                    "maxSessions"
                  ]
                },
                "description": "Remove maxSessions from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxConfigSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/maxConfigSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "maxConfigSessions"
                  ]
                },
                "description": "Retrieve maxConfigSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxConfigSessions",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/maxConfigSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "maxConfigSessions"
                  ]
                },
                "description": "Create or replace maxConfigSessions on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxConfigSessions",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/maxConfigSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "maxConfigSessions"
                  ]
                },
                "description": "Partially update maxConfigSessions on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxConfigSessions",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/maxConfigSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "maxConfigSessions"
                  ]
                },
                "description": "Remove maxConfigSessions from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get configSessionLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/configSessionLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "configSessionLimit"
                  ]
                },
                "description": "Retrieve configSessionLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace configSessionLimit",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/configSessionLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "configSessionLimit"
                  ]
                },
                "description": "Create or replace configSessionLimit on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"context\": \"configured-value\",\n    \"maxSessions\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update configSessionLimit",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/configSessionLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "configSessionLimit"
                  ]
                },
                "description": "Partially update configSessionLimit on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"context\": \"configured-value\",\n    \"maxSessions\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete configSessionLimit",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/configSessionLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "configSessionLimit"
                  ]
                },
                "description": "Remove configSessionLimit from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get context",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/configSessionLimit/context",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "configSessionLimit",
                    "context"
                  ]
                },
                "description": "Retrieve context from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace context",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/configSessionLimit/context",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "configSessionLimit",
                    "context"
                  ]
                },
                "description": "Create or replace context on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update context",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/configSessionLimit/context",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "configSessionLimit",
                    "context"
                  ]
                },
                "description": "Partially update context on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete context",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/configSessionLimit/context",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "configSessionLimit",
                    "context"
                  ]
                },
                "description": "Remove context from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/configSessionLimit/maxSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "configSessionLimit",
                    "maxSessions"
                  ]
                },
                "description": "Retrieve maxSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxSessions",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/configSessionLimit/maxSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "configSessionLimit",
                    "maxSessions"
                  ]
                },
                "description": "Create or replace maxSessions on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxSessions",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/configSessionLimit/maxSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "configSessionLimit",
                    "maxSessions"
                  ]
                },
                "description": "Partially update maxSessions on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxSessions",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/sessionLimits/configSessionLimit/maxSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "sessionLimits",
                    "configSessionLimit",
                    "maxSessions"
                  ]
                },
                "description": "Remove maxSessions from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get parserLimits",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits"
                  ]
                },
                "description": "Retrieve parserLimits from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace parserLimits",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits"
                  ]
                },
                "description": "Create or replace parserLimits on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"maxProcessingInstructionLength\": \"configured-value\",\n  \"maxTagLength\": \"configured-value\",\n  \"maxAttributeLength\": \"configured-value\",\n  \"maxAttributeValueLength\": \"configured-value\",\n  \"maxAttributeCount\": \"10\",\n  \"maxXmlnsPrefixLength\": \"configured-value\",\n  \"maxXmlnsValueLength\": \"configured-value\",\n  \"maxXmlnsCount\": \"10\",\n  \"maxDataLength\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update parserLimits",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits"
                  ]
                },
                "description": "Partially update parserLimits on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"maxProcessingInstructionLength\": \"configured-value\",\n  \"maxTagLength\": \"configured-value\",\n  \"maxAttributeLength\": \"configured-value\",\n  \"maxAttributeValueLength\": \"configured-value\",\n  \"maxAttributeCount\": \"10\",\n  \"maxXmlnsPrefixLength\": \"configured-value\",\n  \"maxXmlnsValueLength\": \"configured-value\",\n  \"maxXmlnsCount\": \"10\",\n  \"maxDataLength\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete parserLimits",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits"
                  ]
                },
                "description": "Remove parserLimits from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxProcessingInstructionLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxProcessingInstructionLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxProcessingInstructionLength"
                  ]
                },
                "description": "Retrieve maxProcessingInstructionLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxProcessingInstructionLength",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxProcessingInstructionLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxProcessingInstructionLength"
                  ]
                },
                "description": "Create or replace maxProcessingInstructionLength on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxProcessingInstructionLength",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxProcessingInstructionLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxProcessingInstructionLength"
                  ]
                },
                "description": "Partially update maxProcessingInstructionLength on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxProcessingInstructionLength",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxProcessingInstructionLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxProcessingInstructionLength"
                  ]
                },
                "description": "Remove maxProcessingInstructionLength from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxTagLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxTagLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxTagLength"
                  ]
                },
                "description": "Retrieve maxTagLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxTagLength",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxTagLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxTagLength"
                  ]
                },
                "description": "Create or replace maxTagLength on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxTagLength",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxTagLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxTagLength"
                  ]
                },
                "description": "Partially update maxTagLength on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxTagLength",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxTagLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxTagLength"
                  ]
                },
                "description": "Remove maxTagLength from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxAttributeLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxAttributeLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxAttributeLength"
                  ]
                },
                "description": "Retrieve maxAttributeLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxAttributeLength",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxAttributeLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxAttributeLength"
                  ]
                },
                "description": "Create or replace maxAttributeLength on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxAttributeLength",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxAttributeLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxAttributeLength"
                  ]
                },
                "description": "Partially update maxAttributeLength on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxAttributeLength",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxAttributeLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxAttributeLength"
                  ]
                },
                "description": "Remove maxAttributeLength from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxAttributeValueLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxAttributeValueLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxAttributeValueLength"
                  ]
                },
                "description": "Retrieve maxAttributeValueLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxAttributeValueLength",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxAttributeValueLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxAttributeValueLength"
                  ]
                },
                "description": "Create or replace maxAttributeValueLength on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxAttributeValueLength",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxAttributeValueLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxAttributeValueLength"
                  ]
                },
                "description": "Partially update maxAttributeValueLength on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxAttributeValueLength",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxAttributeValueLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxAttributeValueLength"
                  ]
                },
                "description": "Remove maxAttributeValueLength from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxAttributeCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxAttributeCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxAttributeCount"
                  ]
                },
                "description": "Retrieve maxAttributeCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxAttributeCount",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxAttributeCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxAttributeCount"
                  ]
                },
                "description": "Create or replace maxAttributeCount on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxAttributeCount",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxAttributeCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxAttributeCount"
                  ]
                },
                "description": "Partially update maxAttributeCount on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxAttributeCount",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxAttributeCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxAttributeCount"
                  ]
                },
                "description": "Remove maxAttributeCount from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxXmlnsPrefixLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxXmlnsPrefixLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxXmlnsPrefixLength"
                  ]
                },
                "description": "Retrieve maxXmlnsPrefixLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxXmlnsPrefixLength",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxXmlnsPrefixLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxXmlnsPrefixLength"
                  ]
                },
                "description": "Create or replace maxXmlnsPrefixLength on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxXmlnsPrefixLength",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxXmlnsPrefixLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxXmlnsPrefixLength"
                  ]
                },
                "description": "Partially update maxXmlnsPrefixLength on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxXmlnsPrefixLength",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxXmlnsPrefixLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxXmlnsPrefixLength"
                  ]
                },
                "description": "Remove maxXmlnsPrefixLength from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxXmlnsValueLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxXmlnsValueLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxXmlnsValueLength"
                  ]
                },
                "description": "Retrieve maxXmlnsValueLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxXmlnsValueLength",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxXmlnsValueLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxXmlnsValueLength"
                  ]
                },
                "description": "Create or replace maxXmlnsValueLength on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxXmlnsValueLength",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxXmlnsValueLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxXmlnsValueLength"
                  ]
                },
                "description": "Partially update maxXmlnsValueLength on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxXmlnsValueLength",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxXmlnsValueLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxXmlnsValueLength"
                  ]
                },
                "description": "Remove maxXmlnsValueLength from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxXmlnsCount",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxXmlnsCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxXmlnsCount"
                  ]
                },
                "description": "Retrieve maxXmlnsCount from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxXmlnsCount",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxXmlnsCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxXmlnsCount"
                  ]
                },
                "description": "Create or replace maxXmlnsCount on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxXmlnsCount",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxXmlnsCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxXmlnsCount"
                  ]
                },
                "description": "Partially update maxXmlnsCount on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxXmlnsCount",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxXmlnsCount",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxXmlnsCount"
                  ]
                },
                "description": "Remove maxXmlnsCount from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxDataLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxDataLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxDataLength"
                  ]
                },
                "description": "Retrieve maxDataLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxDataLength",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxDataLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxDataLength"
                  ]
                },
                "description": "Create or replace maxDataLength on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxDataLength",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxDataLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxDataLength"
                  ]
                },
                "description": "Partially update maxDataLength on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxDataLength",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/parserLimits/maxDataLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "parserLimits",
                    "maxDataLength"
                  ]
                },
                "description": "Remove maxDataLength from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get aaa",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa"
                  ]
                },
                "description": "Retrieve aaa from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace aaa",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa"
                  ]
                },
                "description": "Create or replace aaa on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"sshPubkeyAuthentication\": \"configured-value\",\n  \"sshLoginGraceTime\": \"10:30:45\",\n  \"sshMaxAuthTries\": \"configured-value\",\n  \"defaultGroup\": \"configured-value\",\n  \"authOrder\": \"configured-value\",\n  \"validationOrder\": \"1\",\n  \"challengeOrder\": \"configured-value\",\n  \"expirationWarning\": \"50\",\n  \"auditUserName\": \"example-1\",\n  \"maxPasswordLength\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update aaa",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa"
                  ]
                },
                "description": "Partially update aaa on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"sshPubkeyAuthentication\": \"configured-value\",\n  \"sshLoginGraceTime\": \"10:30:45\",\n  \"sshMaxAuthTries\": \"configured-value\",\n  \"defaultGroup\": \"configured-value\",\n  \"authOrder\": \"configured-value\",\n  \"validationOrder\": \"1\",\n  \"challengeOrder\": \"configured-value\",\n  \"expirationWarning\": \"50\",\n  \"auditUserName\": \"example-1\",\n  \"maxPasswordLength\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete aaa",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa"
                  ]
                },
                "description": "Remove aaa from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sshPubkeyAuthentication",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/sshPubkeyAuthentication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "sshPubkeyAuthentication"
                  ]
                },
                "description": "Retrieve sshPubkeyAuthentication from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sshPubkeyAuthentication",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/sshPubkeyAuthentication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "sshPubkeyAuthentication"
                  ]
                },
                "description": "Create or replace sshPubkeyAuthentication on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sshPubkeyAuthentication",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/sshPubkeyAuthentication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "sshPubkeyAuthentication"
                  ]
                },
                "description": "Partially update sshPubkeyAuthentication on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sshPubkeyAuthentication",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/sshPubkeyAuthentication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "sshPubkeyAuthentication"
                  ]
                },
                "description": "Remove sshPubkeyAuthentication from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sshLoginGraceTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/sshLoginGraceTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "sshLoginGraceTime"
                  ]
                },
                "description": "Retrieve sshLoginGraceTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sshLoginGraceTime",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/sshLoginGraceTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "sshLoginGraceTime"
                  ]
                },
                "description": "Create or replace sshLoginGraceTime on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sshLoginGraceTime",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/sshLoginGraceTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "sshLoginGraceTime"
                  ]
                },
                "description": "Partially update sshLoginGraceTime on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sshLoginGraceTime",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/sshLoginGraceTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "sshLoginGraceTime"
                  ]
                },
                "description": "Remove sshLoginGraceTime from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sshMaxAuthTries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/sshMaxAuthTries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "sshMaxAuthTries"
                  ]
                },
                "description": "Retrieve sshMaxAuthTries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sshMaxAuthTries",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/sshMaxAuthTries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "sshMaxAuthTries"
                  ]
                },
                "description": "Create or replace sshMaxAuthTries on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sshMaxAuthTries",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/sshMaxAuthTries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "sshMaxAuthTries"
                  ]
                },
                "description": "Partially update sshMaxAuthTries on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sshMaxAuthTries",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/sshMaxAuthTries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "sshMaxAuthTries"
                  ]
                },
                "description": "Remove sshMaxAuthTries from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get defaultGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/defaultGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "defaultGroup"
                  ]
                },
                "description": "Retrieve defaultGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace defaultGroup",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/defaultGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "defaultGroup"
                  ]
                },
                "description": "Create or replace defaultGroup on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update defaultGroup",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/defaultGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "defaultGroup"
                  ]
                },
                "description": "Partially update defaultGroup on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete defaultGroup",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/defaultGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "defaultGroup"
                  ]
                },
                "description": "Remove defaultGroup from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get authOrder",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authOrder"
                  ]
                },
                "description": "Retrieve authOrder from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace authOrder",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authOrder"
                  ]
                },
                "description": "Create or replace authOrder on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update authOrder",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authOrder"
                  ]
                },
                "description": "Partially update authOrder on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete authOrder",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authOrder"
                  ]
                },
                "description": "Remove authOrder from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get validationOrder",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/validationOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "validationOrder"
                  ]
                },
                "description": "Retrieve validationOrder from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace validationOrder",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/validationOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "validationOrder"
                  ]
                },
                "description": "Create or replace validationOrder on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update validationOrder",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/validationOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "validationOrder"
                  ]
                },
                "description": "Partially update validationOrder on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete validationOrder",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/validationOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "validationOrder"
                  ]
                },
                "description": "Remove validationOrder from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get challengeOrder",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/challengeOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "challengeOrder"
                  ]
                },
                "description": "Retrieve challengeOrder from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace challengeOrder",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/challengeOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "challengeOrder"
                  ]
                },
                "description": "Create or replace challengeOrder on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update challengeOrder",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/challengeOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "challengeOrder"
                  ]
                },
                "description": "Partially update challengeOrder on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete challengeOrder",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/challengeOrder",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "challengeOrder"
                  ]
                },
                "description": "Remove challengeOrder from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expirationWarning",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/expirationWarning",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "expirationWarning"
                  ]
                },
                "description": "Retrieve expirationWarning from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace expirationWarning",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/expirationWarning",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "expirationWarning"
                  ]
                },
                "description": "Create or replace expirationWarning on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update expirationWarning",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/expirationWarning",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "expirationWarning"
                  ]
                },
                "description": "Partially update expirationWarning on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete expirationWarning",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/expirationWarning",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "expirationWarning"
                  ]
                },
                "description": "Remove expirationWarning from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get auditUserName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/auditUserName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "auditUserName"
                  ]
                },
                "description": "Retrieve auditUserName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace auditUserName",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/auditUserName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "auditUserName"
                  ]
                },
                "description": "Create or replace auditUserName on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update auditUserName",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/auditUserName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "auditUserName"
                  ]
                },
                "description": "Partially update auditUserName on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete auditUserName",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/auditUserName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "auditUserName"
                  ]
                },
                "description": "Remove auditUserName from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxPasswordLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/maxPasswordLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "maxPasswordLength"
                  ]
                },
                "description": "Retrieve maxPasswordLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxPasswordLength",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/maxPasswordLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "maxPasswordLength"
                  ]
                },
                "description": "Create or replace maxPasswordLength on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxPasswordLength",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/maxPasswordLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "maxPasswordLength"
                  ]
                },
                "description": "Partially update maxPasswordLength on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxPasswordLength",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/maxPasswordLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "maxPasswordLength"
                  ]
                },
                "description": "Remove maxPasswordLength from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pam",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/pam",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "pam"
                  ]
                },
                "description": "Retrieve pam from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pam",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/pam",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "pam"
                  ]
                },
                "description": "Create or replace pam on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"service\": \"configured-value\",\n  \"timeout\": \"10:30:45\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pam",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/pam",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "pam"
                  ]
                },
                "description": "Partially update pam on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"service\": \"configured-value\",\n  \"timeout\": \"10:30:45\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pam",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/pam",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "pam"
                  ]
                },
                "description": "Remove pam from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/pam/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "pam",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/pam/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "pam",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/pam/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "pam",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/pam/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "pam",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get service",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/pam/service",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "pam",
                    "service"
                  ]
                },
                "description": "Retrieve service from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace service",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/pam/service",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "pam",
                    "service"
                  ]
                },
                "description": "Create or replace service on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update service",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/pam/service",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "pam",
                    "service"
                  ]
                },
                "description": "Partially update service on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete service",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/pam/service",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "pam",
                    "service"
                  ]
                },
                "description": "Remove service from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get timeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/pam/timeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "pam",
                    "timeout"
                  ]
                },
                "description": "Retrieve timeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace timeout",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/pam/timeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "pam",
                    "timeout"
                  ]
                },
                "description": "Create or replace timeout on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update timeout",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/pam/timeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "pam",
                    "timeout"
                  ]
                },
                "description": "Partially update timeout on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete timeout",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/pam/timeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "pam",
                    "timeout"
                  ]
                },
                "description": "Remove timeout from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get restconf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/restconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "restconf"
                  ]
                },
                "description": "Retrieve restconf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace restconf",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/restconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "restconf"
                  ]
                },
                "description": "Create or replace restconf on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"authCacheTTL\": \"configured-value\",\n  \"enableAuthCacheClientIp\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update restconf",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/restconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "restconf"
                  ]
                },
                "description": "Partially update restconf on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"authCacheTTL\": \"configured-value\",\n  \"enableAuthCacheClientIp\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete restconf",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/restconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "restconf"
                  ]
                },
                "description": "Remove restconf from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get authCacheTTL",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/restconf/authCacheTTL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "restconf",
                    "authCacheTTL"
                  ]
                },
                "description": "Retrieve authCacheTTL from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace authCacheTTL",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/restconf/authCacheTTL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "restconf",
                    "authCacheTTL"
                  ]
                },
                "description": "Create or replace authCacheTTL on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update authCacheTTL",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/restconf/authCacheTTL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "restconf",
                    "authCacheTTL"
                  ]
                },
                "description": "Partially update authCacheTTL on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete authCacheTTL",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/restconf/authCacheTTL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "restconf",
                    "authCacheTTL"
                  ]
                },
                "description": "Remove authCacheTTL from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enableAuthCacheClientIp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/restconf/enableAuthCacheClientIp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "restconf",
                    "enableAuthCacheClientIp"
                  ]
                },
                "description": "Retrieve enableAuthCacheClientIp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enableAuthCacheClientIp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/restconf/enableAuthCacheClientIp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "restconf",
                    "enableAuthCacheClientIp"
                  ]
                },
                "description": "Create or replace enableAuthCacheClientIp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enableAuthCacheClientIp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/restconf/enableAuthCacheClientIp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "restconf",
                    "enableAuthCacheClientIp"
                  ]
                },
                "description": "Partially update enableAuthCacheClientIp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enableAuthCacheClientIp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/restconf/enableAuthCacheClientIp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "restconf",
                    "enableAuthCacheClientIp"
                  ]
                },
                "description": "Remove enableAuthCacheClientIp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get externalAuthentication",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication"
                  ]
                },
                "description": "Retrieve externalAuthentication from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace externalAuthentication",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication"
                  ]
                },
                "description": "Create or replace externalAuthentication on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"executable\": \"configured-value\",\n  \"useBase64\": true,\n  \"includeExtra\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update externalAuthentication",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication"
                  ]
                },
                "description": "Partially update externalAuthentication on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"executable\": \"configured-value\",\n  \"useBase64\": true,\n  \"includeExtra\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete externalAuthentication",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication"
                  ]
                },
                "description": "Remove externalAuthentication from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get executable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication/executable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication",
                    "executable"
                  ]
                },
                "description": "Retrieve executable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace executable",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication/executable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication",
                    "executable"
                  ]
                },
                "description": "Create or replace executable on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update executable",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication/executable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication",
                    "executable"
                  ]
                },
                "description": "Partially update executable on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete executable",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication/executable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication",
                    "executable"
                  ]
                },
                "description": "Remove executable from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get useBase64",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication/useBase64",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication",
                    "useBase64"
                  ]
                },
                "description": "Retrieve useBase64 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace useBase64",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication/useBase64",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication",
                    "useBase64"
                  ]
                },
                "description": "Create or replace useBase64 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update useBase64",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication/useBase64",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication",
                    "useBase64"
                  ]
                },
                "description": "Partially update useBase64 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete useBase64",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication/useBase64",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication",
                    "useBase64"
                  ]
                },
                "description": "Remove useBase64 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get includeExtra",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication/includeExtra",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication",
                    "includeExtra"
                  ]
                },
                "description": "Retrieve includeExtra from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace includeExtra",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication/includeExtra",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication",
                    "includeExtra"
                  ]
                },
                "description": "Create or replace includeExtra on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update includeExtra",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication/includeExtra",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication",
                    "includeExtra"
                  ]
                },
                "description": "Partially update includeExtra on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete includeExtra",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalAuthentication/includeExtra",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalAuthentication",
                    "includeExtra"
                  ]
                },
                "description": "Remove includeExtra from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get localAuthentication",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/localAuthentication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "localAuthentication"
                  ]
                },
                "description": "Retrieve localAuthentication from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace localAuthentication",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/localAuthentication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "localAuthentication"
                  ]
                },
                "description": "Create or replace localAuthentication on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update localAuthentication",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/localAuthentication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "localAuthentication"
                  ]
                },
                "description": "Partially update localAuthentication on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete localAuthentication",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/localAuthentication",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "localAuthentication"
                  ]
                },
                "description": "Remove localAuthentication from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/localAuthentication/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "localAuthentication",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/localAuthentication/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "localAuthentication",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/localAuthentication/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "localAuthentication",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/localAuthentication/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "localAuthentication",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get authenticationCallback",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authenticationCallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authenticationCallback"
                  ]
                },
                "description": "Retrieve authenticationCallback from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace authenticationCallback",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authenticationCallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authenticationCallback"
                  ]
                },
                "description": "Create or replace authenticationCallback on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update authenticationCallback",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authenticationCallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authenticationCallback"
                  ]
                },
                "description": "Partially update authenticationCallback on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete authenticationCallback",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authenticationCallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authenticationCallback"
                  ]
                },
                "description": "Remove authenticationCallback from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authenticationCallback/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authenticationCallback",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authenticationCallback/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authenticationCallback",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authenticationCallback/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authenticationCallback",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authenticationCallback/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authenticationCallback",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get externalValidation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation"
                  ]
                },
                "description": "Retrieve externalValidation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace externalValidation",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation"
                  ]
                },
                "description": "Create or replace externalValidation on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"executable\": \"configured-value\",\n  \"useBase64\": true,\n  \"includeExtra\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update externalValidation",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation"
                  ]
                },
                "description": "Partially update externalValidation on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"executable\": \"configured-value\",\n  \"useBase64\": true,\n  \"includeExtra\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete externalValidation",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation"
                  ]
                },
                "description": "Remove externalValidation from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get executable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation/executable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation",
                    "executable"
                  ]
                },
                "description": "Retrieve executable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace executable",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation/executable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation",
                    "executable"
                  ]
                },
                "description": "Create or replace executable on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update executable",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation/executable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation",
                    "executable"
                  ]
                },
                "description": "Partially update executable on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete executable",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation/executable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation",
                    "executable"
                  ]
                },
                "description": "Remove executable from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get useBase64",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation/useBase64",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation",
                    "useBase64"
                  ]
                },
                "description": "Retrieve useBase64 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace useBase64",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation/useBase64",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation",
                    "useBase64"
                  ]
                },
                "description": "Create or replace useBase64 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update useBase64",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation/useBase64",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation",
                    "useBase64"
                  ]
                },
                "description": "Partially update useBase64 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete useBase64",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation/useBase64",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation",
                    "useBase64"
                  ]
                },
                "description": "Remove useBase64 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get includeExtra",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation/includeExtra",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation",
                    "includeExtra"
                  ]
                },
                "description": "Retrieve includeExtra from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace includeExtra",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation/includeExtra",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation",
                    "includeExtra"
                  ]
                },
                "description": "Create or replace includeExtra on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update includeExtra",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation/includeExtra",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation",
                    "includeExtra"
                  ]
                },
                "description": "Partially update includeExtra on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete includeExtra",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalValidation/includeExtra",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalValidation",
                    "includeExtra"
                  ]
                },
                "description": "Remove includeExtra from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get validationCallback",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/validationCallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "validationCallback"
                  ]
                },
                "description": "Retrieve validationCallback from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace validationCallback",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/validationCallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "validationCallback"
                  ]
                },
                "description": "Create or replace validationCallback on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update validationCallback",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/validationCallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "validationCallback"
                  ]
                },
                "description": "Partially update validationCallback on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete validationCallback",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/validationCallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "validationCallback"
                  ]
                },
                "description": "Remove validationCallback from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/validationCallback/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "validationCallback",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/validationCallback/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "validationCallback",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/validationCallback/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "validationCallback",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/validationCallback/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "validationCallback",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get externalChallenge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge"
                  ]
                },
                "description": "Retrieve externalChallenge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace externalChallenge",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge"
                  ]
                },
                "description": "Create or replace externalChallenge on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"executable\": \"configured-value\",\n  \"useBase64\": true,\n  \"includeExtra\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update externalChallenge",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge"
                  ]
                },
                "description": "Partially update externalChallenge on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"executable\": \"configured-value\",\n  \"useBase64\": true,\n  \"includeExtra\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete externalChallenge",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge"
                  ]
                },
                "description": "Remove externalChallenge from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get executable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge/executable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge",
                    "executable"
                  ]
                },
                "description": "Retrieve executable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace executable",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge/executable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge",
                    "executable"
                  ]
                },
                "description": "Create or replace executable on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update executable",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge/executable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge",
                    "executable"
                  ]
                },
                "description": "Partially update executable on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete executable",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge/executable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge",
                    "executable"
                  ]
                },
                "description": "Remove executable from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get useBase64",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge/useBase64",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge",
                    "useBase64"
                  ]
                },
                "description": "Retrieve useBase64 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace useBase64",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge/useBase64",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge",
                    "useBase64"
                  ]
                },
                "description": "Create or replace useBase64 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update useBase64",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge/useBase64",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge",
                    "useBase64"
                  ]
                },
                "description": "Partially update useBase64 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete useBase64",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge/useBase64",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge",
                    "useBase64"
                  ]
                },
                "description": "Remove useBase64 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get includeExtra",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge/includeExtra",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge",
                    "includeExtra"
                  ]
                },
                "description": "Retrieve includeExtra from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace includeExtra",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge/includeExtra",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge",
                    "includeExtra"
                  ]
                },
                "description": "Create or replace includeExtra on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update includeExtra",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge/includeExtra",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge",
                    "includeExtra"
                  ]
                },
                "description": "Partially update includeExtra on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete includeExtra",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/externalChallenge/includeExtra",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "externalChallenge",
                    "includeExtra"
                  ]
                },
                "description": "Remove includeExtra from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get challengeCallback",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/challengeCallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "challengeCallback"
                  ]
                },
                "description": "Retrieve challengeCallback from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace challengeCallback",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/challengeCallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "challengeCallback"
                  ]
                },
                "description": "Create or replace challengeCallback on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update challengeCallback",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/challengeCallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "challengeCallback"
                  ]
                },
                "description": "Partially update challengeCallback on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete challengeCallback",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/challengeCallback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "challengeCallback"
                  ]
                },
                "description": "Remove challengeCallback from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/challengeCallback/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "challengeCallback",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/challengeCallback/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "challengeCallback",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/challengeCallback/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "challengeCallback",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/challengeCallback/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "challengeCallback",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get authorization",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authorization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authorization"
                  ]
                },
                "description": "Retrieve authorization from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace authorization",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authorization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authorization"
                  ]
                },
                "description": "Create or replace authorization on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"callback\": {\n    \"enabled\": true\n  },\n  \"nacmCompliant\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update authorization",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authorization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authorization"
                  ]
                },
                "description": "Partially update authorization on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"callback\": {\n    \"enabled\": true\n  },\n  \"nacmCompliant\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete authorization",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authorization",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authorization"
                  ]
                },
                "description": "Remove authorization from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authorization/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authorization",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authorization/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authorization",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authorization/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authorization",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authorization/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authorization",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callback",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authorization/callback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authorization",
                    "callback"
                  ]
                },
                "description": "Retrieve callback from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace callback",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authorization/callback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authorization",
                    "callback"
                  ]
                },
                "description": "Create or replace callback on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update callback",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authorization/callback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authorization",
                    "callback"
                  ]
                },
                "description": "Partially update callback on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete callback",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authorization/callback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authorization",
                    "callback"
                  ]
                },
                "description": "Remove callback from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nacmCompliant",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authorization/nacmCompliant",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authorization",
                    "nacmCompliant"
                  ]
                },
                "description": "Retrieve nacmCompliant from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace nacmCompliant",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authorization/nacmCompliant",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authorization",
                    "nacmCompliant"
                  ]
                },
                "description": "Create or replace nacmCompliant on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update nacmCompliant",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authorization/nacmCompliant",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authorization",
                    "nacmCompliant"
                  ]
                },
                "description": "Partially update nacmCompliant on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete nacmCompliant",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/aaa/authorization/nacmCompliant",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "aaa",
                    "authorization",
                    "nacmCompliant"
                  ]
                },
                "description": "Remove nacmCompliant from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ssh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh"
                  ]
                },
                "description": "Retrieve ssh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ssh",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh"
                  ]
                },
                "description": "Create or replace ssh on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"idleConnectionTimeout\": \"10:30:45\",\n  \"algorithms\": {\n    \"serverHostKey\": \"configured-value\",\n    \"kex\": \"configured-value\",\n    \"dhGroup\": {\n      \"minSize\": \"configured-value\",\n      \"maxSize\": \"configured-value\"\n    },\n    \"mac\": \"00:1a:2b:3c:4d:5e\",\n    \"encryption\": \"configured-value\"\n  },\n  \"clientAliveInterval\": \"configured-value\",\n  \"clientAliveCountMax\": 45,\n  \"parallelLogin\": true,\n  \"rekeyLimit\": {\n    \"bytes\": 1,\n    \"minutes\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ssh",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh"
                  ]
                },
                "description": "Partially update ssh on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"idleConnectionTimeout\": \"10:30:45\",\n  \"algorithms\": {\n    \"serverHostKey\": \"configured-value\",\n    \"kex\": \"configured-value\",\n    \"dhGroup\": {\n      \"minSize\": \"configured-value\",\n      \"maxSize\": \"configured-value\"\n    },\n    \"mac\": \"00:1a:2b:3c:4d:5e\",\n    \"encryption\": \"configured-value\"\n  },\n  \"clientAliveInterval\": \"configured-value\",\n  \"clientAliveCountMax\": 45,\n  \"parallelLogin\": true,\n  \"rekeyLimit\": {\n    \"bytes\": 1,\n    \"minutes\": 1\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ssh",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh"
                  ]
                },
                "description": "Remove ssh from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get idleConnectionTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/idleConnectionTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "idleConnectionTimeout"
                  ]
                },
                "description": "Retrieve idleConnectionTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace idleConnectionTimeout",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/idleConnectionTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "idleConnectionTimeout"
                  ]
                },
                "description": "Create or replace idleConnectionTimeout on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update idleConnectionTimeout",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/idleConnectionTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "idleConnectionTimeout"
                  ]
                },
                "description": "Partially update idleConnectionTimeout on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete idleConnectionTimeout",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/idleConnectionTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "idleConnectionTimeout"
                  ]
                },
                "description": "Remove idleConnectionTimeout from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get algorithms",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms"
                  ]
                },
                "description": "Retrieve algorithms from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace algorithms",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms"
                  ]
                },
                "description": "Create or replace algorithms on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"serverHostKey\": \"configured-value\",\n  \"kex\": \"configured-value\",\n  \"dhGroup\": {\n    \"minSize\": \"configured-value\",\n    \"maxSize\": \"configured-value\"\n  },\n  \"mac\": \"00:1a:2b:3c:4d:5e\",\n  \"encryption\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update algorithms",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms"
                  ]
                },
                "description": "Partially update algorithms on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"serverHostKey\": \"configured-value\",\n  \"kex\": \"configured-value\",\n  \"dhGroup\": {\n    \"minSize\": \"configured-value\",\n    \"maxSize\": \"configured-value\"\n  },\n  \"mac\": \"00:1a:2b:3c:4d:5e\",\n  \"encryption\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete algorithms",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms"
                  ]
                },
                "description": "Remove algorithms from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serverHostKey",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/serverHostKey",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "serverHostKey"
                  ]
                },
                "description": "Retrieve serverHostKey from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace serverHostKey",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/serverHostKey",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "serverHostKey"
                  ]
                },
                "description": "Create or replace serverHostKey on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update serverHostKey",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/serverHostKey",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "serverHostKey"
                  ]
                },
                "description": "Partially update serverHostKey on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete serverHostKey",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/serverHostKey",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "serverHostKey"
                  ]
                },
                "description": "Remove serverHostKey from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get kex",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/kex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "kex"
                  ]
                },
                "description": "Retrieve kex from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace kex",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/kex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "kex"
                  ]
                },
                "description": "Create or replace kex on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update kex",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/kex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "kex"
                  ]
                },
                "description": "Partially update kex on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete kex",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/kex",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "kex"
                  ]
                },
                "description": "Remove kex from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dhGroup",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/dhGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "dhGroup"
                  ]
                },
                "description": "Retrieve dhGroup from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dhGroup",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/dhGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "dhGroup"
                  ]
                },
                "description": "Create or replace dhGroup on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"minSize\": \"configured-value\",\n  \"maxSize\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dhGroup",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/dhGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "dhGroup"
                  ]
                },
                "description": "Partially update dhGroup on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"minSize\": \"configured-value\",\n  \"maxSize\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dhGroup",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/dhGroup",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "dhGroup"
                  ]
                },
                "description": "Remove dhGroup from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mac",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "mac"
                  ]
                },
                "description": "Retrieve mac from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mac",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "mac"
                  ]
                },
                "description": "Create or replace mac on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"00:1a:2b:3c:4d:5e\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mac",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "mac"
                  ]
                },
                "description": "Partially update mac on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"00:1a:2b:3c:4d:5e\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mac",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/mac",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "mac"
                  ]
                },
                "description": "Remove mac from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get encryption",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/encryption",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "encryption"
                  ]
                },
                "description": "Retrieve encryption from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace encryption",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/encryption",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "encryption"
                  ]
                },
                "description": "Create or replace encryption on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update encryption",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/encryption",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "encryption"
                  ]
                },
                "description": "Partially update encryption on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete encryption",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/algorithms/encryption",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "algorithms",
                    "encryption"
                  ]
                },
                "description": "Remove encryption from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clientAliveInterval",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/clientAliveInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "clientAliveInterval"
                  ]
                },
                "description": "Retrieve clientAliveInterval from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace clientAliveInterval",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/clientAliveInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "clientAliveInterval"
                  ]
                },
                "description": "Create or replace clientAliveInterval on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update clientAliveInterval",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/clientAliveInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "clientAliveInterval"
                  ]
                },
                "description": "Partially update clientAliveInterval on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete clientAliveInterval",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/clientAliveInterval",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "clientAliveInterval"
                  ]
                },
                "description": "Remove clientAliveInterval from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clientAliveCountMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/clientAliveCountMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "clientAliveCountMax"
                  ]
                },
                "description": "Retrieve clientAliveCountMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace clientAliveCountMax",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/clientAliveCountMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "clientAliveCountMax"
                  ]
                },
                "description": "Create or replace clientAliveCountMax on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "45",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update clientAliveCountMax",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/clientAliveCountMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "clientAliveCountMax"
                  ]
                },
                "description": "Partially update clientAliveCountMax on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "45",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete clientAliveCountMax",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/clientAliveCountMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "clientAliveCountMax"
                  ]
                },
                "description": "Remove clientAliveCountMax from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get parallelLogin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/parallelLogin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "parallelLogin"
                  ]
                },
                "description": "Retrieve parallelLogin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace parallelLogin",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/parallelLogin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "parallelLogin"
                  ]
                },
                "description": "Create or replace parallelLogin on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update parallelLogin",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/parallelLogin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "parallelLogin"
                  ]
                },
                "description": "Partially update parallelLogin on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete parallelLogin",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/parallelLogin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "parallelLogin"
                  ]
                },
                "description": "Remove parallelLogin from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rekeyLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/rekeyLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "rekeyLimit"
                  ]
                },
                "description": "Retrieve rekeyLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rekeyLimit",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/rekeyLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "rekeyLimit"
                  ]
                },
                "description": "Create or replace rekeyLimit on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"bytes\": 1,\n  \"minutes\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rekeyLimit",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/rekeyLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "rekeyLimit"
                  ]
                },
                "description": "Partially update rekeyLimit on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"bytes\": 1,\n  \"minutes\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rekeyLimit",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/rekeyLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "rekeyLimit"
                  ]
                },
                "description": "Remove rekeyLimit from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bytes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/rekeyLimit/bytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "rekeyLimit",
                    "bytes"
                  ]
                },
                "description": "Retrieve bytes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bytes",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/rekeyLimit/bytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "rekeyLimit",
                    "bytes"
                  ]
                },
                "description": "Create or replace bytes on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bytes",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/rekeyLimit/bytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "rekeyLimit",
                    "bytes"
                  ]
                },
                "description": "Partially update bytes on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bytes",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/rekeyLimit/bytes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "rekeyLimit",
                    "bytes"
                  ]
                },
                "description": "Remove bytes from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get minutes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/rekeyLimit/minutes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "rekeyLimit",
                    "minutes"
                  ]
                },
                "description": "Retrieve minutes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace minutes",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/rekeyLimit/minutes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "rekeyLimit",
                    "minutes"
                  ]
                },
                "description": "Create or replace minutes on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update minutes",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/rekeyLimit/minutes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "rekeyLimit",
                    "minutes"
                  ]
                },
                "description": "Partially update minutes on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete minutes",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/ssh/rekeyLimit/minutes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "ssh",
                    "rekeyLimit",
                    "minutes"
                  ]
                },
                "description": "Remove minutes from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cli",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli"
                  ]
                },
                "description": "Retrieve cli from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cli",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli"
                  ]
                },
                "description": "Create or replace cli on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"maxLineLength\": 1,\n  \"allowImplicitWildcard\": true,\n  \"enableLastLoginBanner\": true,\n  \"startupScriptNonInteractive\": true,\n  \"modeNameStyle\": \"example-1\",\n  \"allowOverwriteOnCopy\": true,\n  \"inheritPaginate\": true,\n  \"safeScriptExecution\": true,\n  \"exitConfigModeOnCtrlC\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cli",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli"
                  ]
                },
                "description": "Partially update cli on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"maxLineLength\": 1,\n  \"allowImplicitWildcard\": true,\n  \"enableLastLoginBanner\": true,\n  \"startupScriptNonInteractive\": true,\n  \"modeNameStyle\": \"example-1\",\n  \"allowOverwriteOnCopy\": true,\n  \"inheritPaginate\": true,\n  \"safeScriptExecution\": true,\n  \"exitConfigModeOnCtrlC\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cli",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli"
                  ]
                },
                "description": "Remove cli from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxLineLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/maxLineLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "maxLineLength"
                  ]
                },
                "description": "Retrieve maxLineLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxLineLength",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/maxLineLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "maxLineLength"
                  ]
                },
                "description": "Create or replace maxLineLength on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxLineLength",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/maxLineLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "maxLineLength"
                  ]
                },
                "description": "Partially update maxLineLength on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxLineLength",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/maxLineLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "maxLineLength"
                  ]
                },
                "description": "Remove maxLineLength from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowImplicitWildcard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowImplicitWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowImplicitWildcard"
                  ]
                },
                "description": "Retrieve allowImplicitWildcard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowImplicitWildcard",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowImplicitWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowImplicitWildcard"
                  ]
                },
                "description": "Create or replace allowImplicitWildcard on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowImplicitWildcard",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowImplicitWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowImplicitWildcard"
                  ]
                },
                "description": "Partially update allowImplicitWildcard on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowImplicitWildcard",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowImplicitWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowImplicitWildcard"
                  ]
                },
                "description": "Remove allowImplicitWildcard from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enableLastLoginBanner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableLastLoginBanner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableLastLoginBanner"
                  ]
                },
                "description": "Retrieve enableLastLoginBanner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enableLastLoginBanner",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableLastLoginBanner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableLastLoginBanner"
                  ]
                },
                "description": "Create or replace enableLastLoginBanner on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enableLastLoginBanner",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableLastLoginBanner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableLastLoginBanner"
                  ]
                },
                "description": "Partially update enableLastLoginBanner on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enableLastLoginBanner",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableLastLoginBanner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableLastLoginBanner"
                  ]
                },
                "description": "Remove enableLastLoginBanner from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get startupScriptNonInteractive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/startupScriptNonInteractive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "startupScriptNonInteractive"
                  ]
                },
                "description": "Retrieve startupScriptNonInteractive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace startupScriptNonInteractive",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/startupScriptNonInteractive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "startupScriptNonInteractive"
                  ]
                },
                "description": "Create or replace startupScriptNonInteractive on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update startupScriptNonInteractive",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/startupScriptNonInteractive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "startupScriptNonInteractive"
                  ]
                },
                "description": "Partially update startupScriptNonInteractive on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete startupScriptNonInteractive",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/startupScriptNonInteractive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "startupScriptNonInteractive"
                  ]
                },
                "description": "Remove startupScriptNonInteractive from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get modeNameStyle",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/modeNameStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "modeNameStyle"
                  ]
                },
                "description": "Retrieve modeNameStyle from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace modeNameStyle",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/modeNameStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "modeNameStyle"
                  ]
                },
                "description": "Create or replace modeNameStyle on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update modeNameStyle",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/modeNameStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "modeNameStyle"
                  ]
                },
                "description": "Partially update modeNameStyle on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete modeNameStyle",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/modeNameStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "modeNameStyle"
                  ]
                },
                "description": "Remove modeNameStyle from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowOverwriteOnCopy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowOverwriteOnCopy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowOverwriteOnCopy"
                  ]
                },
                "description": "Retrieve allowOverwriteOnCopy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowOverwriteOnCopy",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowOverwriteOnCopy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowOverwriteOnCopy"
                  ]
                },
                "description": "Create or replace allowOverwriteOnCopy on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowOverwriteOnCopy",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowOverwriteOnCopy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowOverwriteOnCopy"
                  ]
                },
                "description": "Partially update allowOverwriteOnCopy on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowOverwriteOnCopy",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowOverwriteOnCopy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowOverwriteOnCopy"
                  ]
                },
                "description": "Remove allowOverwriteOnCopy from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get inheritPaginate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/inheritPaginate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "inheritPaginate"
                  ]
                },
                "description": "Retrieve inheritPaginate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace inheritPaginate",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/inheritPaginate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "inheritPaginate"
                  ]
                },
                "description": "Create or replace inheritPaginate on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update inheritPaginate",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/inheritPaginate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "inheritPaginate"
                  ]
                },
                "description": "Partially update inheritPaginate on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete inheritPaginate",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/inheritPaginate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "inheritPaginate"
                  ]
                },
                "description": "Remove inheritPaginate from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get safeScriptExecution",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/safeScriptExecution",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "safeScriptExecution"
                  ]
                },
                "description": "Retrieve safeScriptExecution from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace safeScriptExecution",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/safeScriptExecution",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "safeScriptExecution"
                  ]
                },
                "description": "Create or replace safeScriptExecution on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update safeScriptExecution",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/safeScriptExecution",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "safeScriptExecution"
                  ]
                },
                "description": "Partially update safeScriptExecution on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete safeScriptExecution",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/safeScriptExecution",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "safeScriptExecution"
                  ]
                },
                "description": "Remove safeScriptExecution from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get exitConfigModeOnCtrlC",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/exitConfigModeOnCtrlC",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "exitConfigModeOnCtrlC"
                  ]
                },
                "description": "Retrieve exitConfigModeOnCtrlC from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace exitConfigModeOnCtrlC",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/exitConfigModeOnCtrlC",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "exitConfigModeOnCtrlC"
                  ]
                },
                "description": "Create or replace exitConfigModeOnCtrlC on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update exitConfigModeOnCtrlC",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/exitConfigModeOnCtrlC",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "exitConfigModeOnCtrlC"
                  ]
                },
                "description": "Partially update exitConfigModeOnCtrlC on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete exitConfigModeOnCtrlC",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/exitConfigModeOnCtrlC",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "exitConfigModeOnCtrlC"
                  ]
                },
                "description": "Remove exitConfigModeOnCtrlC from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get execNavigationCmds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/execNavigationCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "execNavigationCmds"
                  ]
                },
                "description": "Retrieve execNavigationCmds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace execNavigationCmds",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/execNavigationCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "execNavigationCmds"
                  ]
                },
                "description": "Create or replace execNavigationCmds on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update execNavigationCmds",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/execNavigationCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "execNavigationCmds"
                  ]
                },
                "description": "Partially update execNavigationCmds on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete execNavigationCmds",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/execNavigationCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "execNavigationCmds"
                  ]
                },
                "description": "Remove execNavigationCmds from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowOldStyleModeCmds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowOldStyleModeCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowOldStyleModeCmds"
                  ]
                },
                "description": "Retrieve allowOldStyleModeCmds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowOldStyleModeCmds",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowOldStyleModeCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowOldStyleModeCmds"
                  ]
                },
                "description": "Create or replace allowOldStyleModeCmds on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowOldStyleModeCmds",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowOldStyleModeCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowOldStyleModeCmds"
                  ]
                },
                "description": "Partially update allowOldStyleModeCmds on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowOldStyleModeCmds",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowOldStyleModeCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowOldStyleModeCmds"
                  ]
                },
                "description": "Remove allowOldStyleModeCmds from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get continueOnErrorCmdStack",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/continueOnErrorCmdStack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "continueOnErrorCmdStack"
                  ]
                },
                "description": "Retrieve continueOnErrorCmdStack from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace continueOnErrorCmdStack",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/continueOnErrorCmdStack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "continueOnErrorCmdStack"
                  ]
                },
                "description": "Create or replace continueOnErrorCmdStack on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update continueOnErrorCmdStack",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/continueOnErrorCmdStack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "continueOnErrorCmdStack"
                  ]
                },
                "description": "Partially update continueOnErrorCmdStack on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete continueOnErrorCmdStack",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/continueOnErrorCmdStack",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "continueOnErrorCmdStack"
                  ]
                },
                "description": "Remove continueOnErrorCmdStack from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get topLevelCmdsInSubMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/topLevelCmdsInSubMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "topLevelCmdsInSubMode"
                  ]
                },
                "description": "Retrieve topLevelCmdsInSubMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace topLevelCmdsInSubMode",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/topLevelCmdsInSubMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "topLevelCmdsInSubMode"
                  ]
                },
                "description": "Create or replace topLevelCmdsInSubMode on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update topLevelCmdsInSubMode",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/topLevelCmdsInSubMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "topLevelCmdsInSubMode"
                  ]
                },
                "description": "Partially update topLevelCmdsInSubMode on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete topLevelCmdsInSubMode",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/topLevelCmdsInSubMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "topLevelCmdsInSubMode"
                  ]
                },
                "description": "Remove topLevelCmdsInSubMode from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mixedMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/mixedMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "mixedMode"
                  ]
                },
                "description": "Retrieve mixedMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mixedMode",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/mixedMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "mixedMode"
                  ]
                },
                "description": "Create or replace mixedMode on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mixedMode",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/mixedMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "mixedMode"
                  ]
                },
                "description": "Partially update mixedMode on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mixedMode",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/mixedMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "mixedMode"
                  ]
                },
                "description": "Remove mixedMode from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get completionShowOldVal",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/completionShowOldVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "completionShowOldVal"
                  ]
                },
                "description": "Retrieve completionShowOldVal from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace completionShowOldVal",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/completionShowOldVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "completionShowOldVal"
                  ]
                },
                "description": "Create or replace completionShowOldVal on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update completionShowOldVal",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/completionShowOldVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "completionShowOldVal"
                  ]
                },
                "description": "Partially update completionShowOldVal on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete completionShowOldVal",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/completionShowOldVal",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "completionShowOldVal"
                  ]
                },
                "description": "Remove completionShowOldVal from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get completionMetaInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/completionMetaInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "completionMetaInfo"
                  ]
                },
                "description": "Retrieve completionMetaInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace completionMetaInfo",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/completionMetaInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "completionMetaInfo"
                  ]
                },
                "description": "Create or replace completionMetaInfo on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update completionMetaInfo",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/completionMetaInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "completionMetaInfo"
                  ]
                },
                "description": "Partially update completionMetaInfo on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete completionMetaInfo",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/completionMetaInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "completionMetaInfo"
                  ]
                },
                "description": "Remove completionMetaInfo from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reportInvalidCompletionInput",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/reportInvalidCompletionInput",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "reportInvalidCompletionInput"
                  ]
                },
                "description": "Retrieve reportInvalidCompletionInput from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace reportInvalidCompletionInput",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/reportInvalidCompletionInput",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "reportInvalidCompletionInput"
                  ]
                },
                "description": "Create or replace reportInvalidCompletionInput on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update reportInvalidCompletionInput",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/reportInvalidCompletionInput",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "reportInvalidCompletionInput"
                  ]
                },
                "description": "Partially update reportInvalidCompletionInput on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete reportInvalidCompletionInput",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/reportInvalidCompletionInput",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "reportInvalidCompletionInput"
                  ]
                },
                "description": "Remove reportInvalidCompletionInput from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get useShortEnabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/useShortEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "useShortEnabled"
                  ]
                },
                "description": "Retrieve useShortEnabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace useShortEnabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/useShortEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "useShortEnabled"
                  ]
                },
                "description": "Create or replace useShortEnabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update useShortEnabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/useShortEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "useShortEnabled"
                  ]
                },
                "description": "Partially update useShortEnabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete useShortEnabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/useShortEnabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "useShortEnabled"
                  ]
                },
                "description": "Remove useShortEnabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get smartRenameFiltering",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/smartRenameFiltering",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "smartRenameFiltering"
                  ]
                },
                "description": "Retrieve smartRenameFiltering from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace smartRenameFiltering",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/smartRenameFiltering",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "smartRenameFiltering"
                  ]
                },
                "description": "Create or replace smartRenameFiltering on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update smartRenameFiltering",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/smartRenameFiltering",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "smartRenameFiltering"
                  ]
                },
                "description": "Partially update smartRenameFiltering on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete smartRenameFiltering",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/smartRenameFiltering",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "smartRenameFiltering"
                  ]
                },
                "description": "Remove smartRenameFiltering from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowParenQuotes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowParenQuotes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowParenQuotes"
                  ]
                },
                "description": "Retrieve allowParenQuotes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowParenQuotes",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowParenQuotes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowParenQuotes"
                  ]
                },
                "description": "Create or replace allowParenQuotes on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowParenQuotes",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowParenQuotes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowParenQuotes"
                  ]
                },
                "description": "Partially update allowParenQuotes on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowParenQuotes",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowParenQuotes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowParenQuotes"
                  ]
                },
                "description": "Remove allowParenQuotes from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get singleElemPattern",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/singleElemPattern",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "singleElemPattern"
                  ]
                },
                "description": "Retrieve singleElemPattern from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace singleElemPattern",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/singleElemPattern",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "singleElemPattern"
                  ]
                },
                "description": "Create or replace singleElemPattern on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update singleElemPattern",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/singleElemPattern",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "singleElemPattern"
                  ]
                },
                "description": "Partially update singleElemPattern on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete singleElemPattern",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/singleElemPattern",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "singleElemPattern"
                  ]
                },
                "description": "Remove singleElemPattern from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get multiPatternOperation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/multiPatternOperation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "multiPatternOperation"
                  ]
                },
                "description": "Retrieve multiPatternOperation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace multiPatternOperation",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/multiPatternOperation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "multiPatternOperation"
                  ]
                },
                "description": "Create or replace multiPatternOperation on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update multiPatternOperation",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/multiPatternOperation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "multiPatternOperation"
                  ]
                },
                "description": "Partially update multiPatternOperation on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"50\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete multiPatternOperation",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/multiPatternOperation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "multiPatternOperation"
                  ]
                },
                "description": "Remove multiPatternOperation from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sortSubmodeCmds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/sortSubmodeCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "sortSubmodeCmds"
                  ]
                },
                "description": "Retrieve sortSubmodeCmds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sortSubmodeCmds",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/sortSubmodeCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "sortSubmodeCmds"
                  ]
                },
                "description": "Create or replace sortSubmodeCmds on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sortSubmodeCmds",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/sortSubmodeCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "sortSubmodeCmds"
                  ]
                },
                "description": "Partially update sortSubmodeCmds on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sortSubmodeCmds",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/sortSubmodeCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "sortSubmodeCmds"
                  ]
                },
                "description": "Remove sortSubmodeCmds from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sortLocalCmds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/sortLocalCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "sortLocalCmds"
                  ]
                },
                "description": "Retrieve sortLocalCmds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sortLocalCmds",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/sortLocalCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "sortLocalCmds"
                  ]
                },
                "description": "Create or replace sortLocalCmds on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sortLocalCmds",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/sortLocalCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "sortLocalCmds"
                  ]
                },
                "description": "Partially update sortLocalCmds on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sortLocalCmds",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/sortLocalCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "sortLocalCmds"
                  ]
                },
                "description": "Remove sortLocalCmds from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get displayEmptyConfigContainers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/displayEmptyConfigContainers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "displayEmptyConfigContainers"
                  ]
                },
                "description": "Retrieve displayEmptyConfigContainers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace displayEmptyConfigContainers",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/displayEmptyConfigContainers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "displayEmptyConfigContainers"
                  ]
                },
                "description": "Create or replace displayEmptyConfigContainers on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update displayEmptyConfigContainers",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/displayEmptyConfigContainers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "displayEmptyConfigContainers"
                  ]
                },
                "description": "Partially update displayEmptyConfigContainers on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete displayEmptyConfigContainers",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/displayEmptyConfigContainers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "displayEmptyConfigContainers"
                  ]
                },
                "description": "Remove displayEmptyConfigContainers from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get displayNonPresenceAttributes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/displayNonPresenceAttributes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "displayNonPresenceAttributes"
                  ]
                },
                "description": "Retrieve displayNonPresenceAttributes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace displayNonPresenceAttributes",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/displayNonPresenceAttributes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "displayNonPresenceAttributes"
                  ]
                },
                "description": "Create or replace displayNonPresenceAttributes on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update displayNonPresenceAttributes",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/displayNonPresenceAttributes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "displayNonPresenceAttributes"
                  ]
                },
                "description": "Partially update displayNonPresenceAttributes on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete displayNonPresenceAttributes",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/displayNonPresenceAttributes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "displayNonPresenceAttributes"
                  ]
                },
                "description": "Remove displayNonPresenceAttributes from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showEditors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showEditors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showEditors"
                  ]
                },
                "description": "Retrieve showEditors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showEditors",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showEditors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showEditors"
                  ]
                },
                "description": "Create or replace showEditors on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showEditors",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showEditors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showEditors"
                  ]
                },
                "description": "Partially update showEditors on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showEditors",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showEditors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showEditors"
                  ]
                },
                "description": "Remove showEditors from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get whoShowMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/whoShowMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "whoShowMode"
                  ]
                },
                "description": "Retrieve whoShowMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace whoShowMode",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/whoShowMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "whoShowMode"
                  ]
                },
                "description": "Create or replace whoShowMode on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update whoShowMode",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/whoShowMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "whoShowMode"
                  ]
                },
                "description": "Partially update whoShowMode on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete whoShowMode",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/whoShowMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "whoShowMode"
                  ]
                },
                "description": "Remove whoShowMode from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get whoHistoryDateTimeFormat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/whoHistoryDateTimeFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "whoHistoryDateTimeFormat"
                  ]
                },
                "description": "Retrieve whoHistoryDateTimeFormat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace whoHistoryDateTimeFormat",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/whoHistoryDateTimeFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "whoHistoryDateTimeFormat"
                  ]
                },
                "description": "Create or replace whoHistoryDateTimeFormat on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update whoHistoryDateTimeFormat",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/whoHistoryDateTimeFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "whoHistoryDateTimeFormat"
                  ]
                },
                "description": "Partially update whoHistoryDateTimeFormat on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete whoHistoryDateTimeFormat",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/whoHistoryDateTimeFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "whoHistoryDateTimeFormat"
                  ]
                },
                "description": "Remove whoHistoryDateTimeFormat from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get resetScreenAfterMore",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/resetScreenAfterMore",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "resetScreenAfterMore"
                  ]
                },
                "description": "Retrieve resetScreenAfterMore from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace resetScreenAfterMore",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/resetScreenAfterMore",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "resetScreenAfterMore"
                  ]
                },
                "description": "Create or replace resetScreenAfterMore on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update resetScreenAfterMore",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/resetScreenAfterMore",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "resetScreenAfterMore"
                  ]
                },
                "description": "Partially update resetScreenAfterMore on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete resetScreenAfterMore",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/resetScreenAfterMore",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "resetScreenAfterMore"
                  ]
                },
                "description": "Remove resetScreenAfterMore from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get editWrapMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/editWrapMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "editWrapMode"
                  ]
                },
                "description": "Retrieve editWrapMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace editWrapMode",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/editWrapMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "editWrapMode"
                  ]
                },
                "description": "Create or replace editWrapMode on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update editWrapMode",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/editWrapMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "editWrapMode"
                  ]
                },
                "description": "Partially update editWrapMode on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete editWrapMode",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/editWrapMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "editWrapMode"
                  ]
                },
                "description": "Remove editWrapMode from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get supportQuotedEOL",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/supportQuotedEOL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "supportQuotedEOL"
                  ]
                },
                "description": "Retrieve supportQuotedEOL from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace supportQuotedEOL",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/supportQuotedEOL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "supportQuotedEOL"
                  ]
                },
                "description": "Create or replace supportQuotedEOL on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update supportQuotedEOL",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/supportQuotedEOL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "supportQuotedEOL"
                  ]
                },
                "description": "Partially update supportQuotedEOL on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete supportQuotedEOL",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/supportQuotedEOL",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "supportQuotedEOL"
                  ]
                },
                "description": "Remove supportQuotedEOL from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowWildcard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowWildcard"
                  ]
                },
                "description": "Retrieve allowWildcard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowWildcard",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowWildcard"
                  ]
                },
                "description": "Create or replace allowWildcard on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowWildcard",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowWildcard"
                  ]
                },
                "description": "Partially update allowWildcard on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowWildcard",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowWildcard"
                  ]
                },
                "description": "Remove allowWildcard from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowAllAsWildcard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAllAsWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAllAsWildcard"
                  ]
                },
                "description": "Retrieve allowAllAsWildcard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowAllAsWildcard",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAllAsWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAllAsWildcard"
                  ]
                },
                "description": "Create or replace allowAllAsWildcard on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowAllAsWildcard",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAllAsWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAllAsWildcard"
                  ]
                },
                "description": "Partially update allowAllAsWildcard on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowAllAsWildcard",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAllAsWildcard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAllAsWildcard"
                  ]
                },
                "description": "Remove allowAllAsWildcard from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowRangeExpression",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowRangeExpression",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowRangeExpression"
                  ]
                },
                "description": "Retrieve allowRangeExpression from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowRangeExpression",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowRangeExpression",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowRangeExpression"
                  ]
                },
                "description": "Create or replace allowRangeExpression on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowRangeExpression",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowRangeExpression",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowRangeExpression"
                  ]
                },
                "description": "Partially update allowRangeExpression on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowRangeExpression",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowRangeExpression",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowRangeExpression"
                  ]
                },
                "description": "Remove allowRangeExpression from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowRangeExpressionAllTypes",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowRangeExpressionAllTypes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowRangeExpressionAllTypes"
                  ]
                },
                "description": "Retrieve allowRangeExpressionAllTypes from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowRangeExpressionAllTypes",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowRangeExpressionAllTypes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowRangeExpressionAllTypes"
                  ]
                },
                "description": "Create or replace allowRangeExpressionAllTypes on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowRangeExpressionAllTypes",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowRangeExpressionAllTypes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowRangeExpressionAllTypes"
                  ]
                },
                "description": "Partially update allowRangeExpressionAllTypes on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowRangeExpressionAllTypes",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowRangeExpressionAllTypes",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowRangeExpressionAllTypes"
                  ]
                },
                "description": "Remove allowRangeExpressionAllTypes from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get useDoubleDotRanges",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/useDoubleDotRanges",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "useDoubleDotRanges"
                  ]
                },
                "description": "Retrieve useDoubleDotRanges from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace useDoubleDotRanges",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/useDoubleDotRanges",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "useDoubleDotRanges"
                  ]
                },
                "description": "Create or replace useDoubleDotRanges on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update useDoubleDotRanges",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/useDoubleDotRanges",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "useDoubleDotRanges"
                  ]
                },
                "description": "Partially update useDoubleDotRanges on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete useDoubleDotRanges",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/useDoubleDotRanges",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "useDoubleDotRanges"
                  ]
                },
                "description": "Remove useDoubleDotRanges from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addExtraTableSpacing",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/addExtraTableSpacing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "addExtraTableSpacing"
                  ]
                },
                "description": "Retrieve addExtraTableSpacing from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace addExtraTableSpacing",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/addExtraTableSpacing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "addExtraTableSpacing"
                  ]
                },
                "description": "Create or replace addExtraTableSpacing on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update addExtraTableSpacing",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/addExtraTableSpacing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "addExtraTableSpacing"
                  ]
                },
                "description": "Partially update addExtraTableSpacing on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete addExtraTableSpacing",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/addExtraTableSpacing",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "addExtraTableSpacing"
                  ]
                },
                "description": "Remove addExtraTableSpacing from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get suppressRangeKeyword",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressRangeKeyword",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressRangeKeyword"
                  ]
                },
                "description": "Retrieve suppressRangeKeyword from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace suppressRangeKeyword",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressRangeKeyword",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressRangeKeyword"
                  ]
                },
                "description": "Create or replace suppressRangeKeyword on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update suppressRangeKeyword",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressRangeKeyword",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressRangeKeyword"
                  ]
                },
                "description": "Partially update suppressRangeKeyword on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete suppressRangeKeyword",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressRangeKeyword",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressRangeKeyword"
                  ]
                },
                "description": "Remove suppressRangeKeyword from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get exitModeOnEmptyRange",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/exitModeOnEmptyRange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "exitModeOnEmptyRange"
                  ]
                },
                "description": "Retrieve exitModeOnEmptyRange from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace exitModeOnEmptyRange",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/exitModeOnEmptyRange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "exitModeOnEmptyRange"
                  ]
                },
                "description": "Create or replace exitModeOnEmptyRange on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update exitModeOnEmptyRange",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/exitModeOnEmptyRange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "exitModeOnEmptyRange"
                  ]
                },
                "description": "Partially update exitModeOnEmptyRange on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete exitModeOnEmptyRange",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/exitModeOnEmptyRange",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "exitModeOnEmptyRange"
                  ]
                },
                "description": "Remove exitModeOnEmptyRange from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tableLabel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/tableLabel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "tableLabel"
                  ]
                },
                "description": "Retrieve tableLabel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tableLabel",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/tableLabel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "tableLabel"
                  ]
                },
                "description": "Create or replace tableLabel on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tableLabel",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/tableLabel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "tableLabel"
                  ]
                },
                "description": "Partially update tableLabel on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tableLabel",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/tableLabel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "tableLabel"
                  ]
                },
                "description": "Remove tableLabel from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tableLookAhead",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/tableLookAhead",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "tableLookAhead"
                  ]
                },
                "description": "Retrieve tableLookAhead from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tableLookAhead",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/tableLookAhead",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "tableLookAhead"
                  ]
                },
                "description": "Create or replace tableLookAhead on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tableLookAhead",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/tableLookAhead",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "tableLookAhead"
                  ]
                },
                "description": "Partially update tableLookAhead on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tableLookAhead",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/tableLookAhead",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "tableLookAhead"
                  ]
                },
                "description": "Remove tableLookAhead from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get moreBufferLines",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/moreBufferLines",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "moreBufferLines"
                  ]
                },
                "description": "Retrieve moreBufferLines from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace moreBufferLines",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/moreBufferLines",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "moreBufferLines"
                  ]
                },
                "description": "Create or replace moreBufferLines on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update moreBufferLines",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/moreBufferLines",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "moreBufferLines"
                  ]
                },
                "description": "Partially update moreBufferLines on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete moreBufferLines",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/moreBufferLines",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "moreBufferLines"
                  ]
                },
                "description": "Remove moreBufferLines from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showTableLabelsIfMultiple",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showTableLabelsIfMultiple",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showTableLabelsIfMultiple"
                  ]
                },
                "description": "Retrieve showTableLabelsIfMultiple from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showTableLabelsIfMultiple",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showTableLabelsIfMultiple",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showTableLabelsIfMultiple"
                  ]
                },
                "description": "Create or replace showTableLabelsIfMultiple on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showTableLabelsIfMultiple",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showTableLabelsIfMultiple",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showTableLabelsIfMultiple"
                  ]
                },
                "description": "Partially update showTableLabelsIfMultiple on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showTableLabelsIfMultiple",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showTableLabelsIfMultiple",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showTableLabelsIfMultiple"
                  ]
                },
                "description": "Remove showTableLabelsIfMultiple from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get defaultTableBehavior",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/defaultTableBehavior",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "defaultTableBehavior"
                  ]
                },
                "description": "Retrieve defaultTableBehavior from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace defaultTableBehavior",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/defaultTableBehavior",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "defaultTableBehavior"
                  ]
                },
                "description": "Create or replace defaultTableBehavior on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update defaultTableBehavior",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/defaultTableBehavior",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "defaultTableBehavior"
                  ]
                },
                "description": "Partially update defaultTableBehavior on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete defaultTableBehavior",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/defaultTableBehavior",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "defaultTableBehavior"
                  ]
                },
                "description": "Remove defaultTableBehavior from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowTableOverflow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowTableOverflow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowTableOverflow"
                  ]
                },
                "description": "Retrieve allowTableOverflow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowTableOverflow",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowTableOverflow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowTableOverflow"
                  ]
                },
                "description": "Create or replace allowTableOverflow on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowTableOverflow",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowTableOverflow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowTableOverflow"
                  ]
                },
                "description": "Partially update allowTableOverflow on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowTableOverflow",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowTableOverflow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowTableOverflow"
                  ]
                },
                "description": "Remove allowTableOverflow from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tableOverflowTruncate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/tableOverflowTruncate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "tableOverflowTruncate"
                  ]
                },
                "description": "Retrieve tableOverflowTruncate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tableOverflowTruncate",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/tableOverflowTruncate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "tableOverflowTruncate"
                  ]
                },
                "description": "Create or replace tableOverflowTruncate on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tableOverflowTruncate",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/tableOverflowTruncate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "tableOverflowTruncate"
                  ]
                },
                "description": "Partially update tableOverflowTruncate on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tableOverflowTruncate",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/tableOverflowTruncate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "tableOverflowTruncate"
                  ]
                },
                "description": "Remove tableOverflowTruncate from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowTableCellWrap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowTableCellWrap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowTableCellWrap"
                  ]
                },
                "description": "Retrieve allowTableCellWrap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowTableCellWrap",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowTableCellWrap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowTableCellWrap"
                  ]
                },
                "description": "Create or replace allowTableCellWrap on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowTableCellWrap",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowTableCellWrap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowTableCellWrap"
                  ]
                },
                "description": "Partially update allowTableCellWrap on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowTableCellWrap",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowTableCellWrap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowTableCellWrap"
                  ]
                },
                "description": "Remove allowTableCellWrap from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showAllNs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showAllNs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showAllNs"
                  ]
                },
                "description": "Retrieve showAllNs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showAllNs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showAllNs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showAllNs"
                  ]
                },
                "description": "Create or replace showAllNs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showAllNs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showAllNs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showAllNs"
                  ]
                },
                "description": "Partially update showAllNs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showAllNs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showAllNs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showAllNs"
                  ]
                },
                "description": "Remove showAllNs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get useExposeNsPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/useExposeNsPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "useExposeNsPrefix"
                  ]
                },
                "description": "Retrieve useExposeNsPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace useExposeNsPrefix",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/useExposeNsPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "useExposeNsPrefix"
                  ]
                },
                "description": "Create or replace useExposeNsPrefix on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update useExposeNsPrefix",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/useExposeNsPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "useExposeNsPrefix"
                  ]
                },
                "description": "Partially update useExposeNsPrefix on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete useExposeNsPrefix",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/useExposeNsPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "useExposeNsPrefix"
                  ]
                },
                "description": "Remove useExposeNsPrefix from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get orderedShowConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/orderedShowConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "orderedShowConfig"
                  ]
                },
                "description": "Retrieve orderedShowConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace orderedShowConfig",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/orderedShowConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "orderedShowConfig"
                  ]
                },
                "description": "Create or replace orderedShowConfig on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update orderedShowConfig",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/orderedShowConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "orderedShowConfig"
                  ]
                },
                "description": "Partially update orderedShowConfig on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete orderedShowConfig",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/orderedShowConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "orderedShowConfig"
                  ]
                },
                "description": "Remove orderedShowConfig from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get suppressFastShow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressFastShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressFastShow"
                  ]
                },
                "description": "Retrieve suppressFastShow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace suppressFastShow",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressFastShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressFastShow"
                  ]
                },
                "description": "Create or replace suppressFastShow on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update suppressFastShow",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressFastShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressFastShow"
                  ]
                },
                "description": "Partially update suppressFastShow on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete suppressFastShow",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressFastShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressFastShow"
                  ]
                },
                "description": "Remove suppressFastShow from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get leafPrompting",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/leafPrompting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "leafPrompting"
                  ]
                },
                "description": "Retrieve leafPrompting from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace leafPrompting",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/leafPrompting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "leafPrompting"
                  ]
                },
                "description": "Create or replace leafPrompting on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update leafPrompting",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/leafPrompting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "leafPrompting"
                  ]
                },
                "description": "Partially update leafPrompting on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete leafPrompting",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/leafPrompting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "leafPrompting"
                  ]
                },
                "description": "Remove leafPrompting from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get modeInfoInAudit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/modeInfoInAudit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "modeInfoInAudit"
                  ]
                },
                "description": "Retrieve modeInfoInAudit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace modeInfoInAudit",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/modeInfoInAudit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "modeInfoInAudit"
                  ]
                },
                "description": "Create or replace modeInfoInAudit on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update modeInfoInAudit",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/modeInfoInAudit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "modeInfoInAudit"
                  ]
                },
                "description": "Partially update modeInfoInAudit on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete modeInfoInAudit",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/modeInfoInAudit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "modeInfoInAudit"
                  ]
                },
                "description": "Remove modeInfoInAudit from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get auditLogMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/auditLogMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "auditLogMode"
                  ]
                },
                "description": "Retrieve auditLogMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace auditLogMode",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/auditLogMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "auditLogMode"
                  ]
                },
                "description": "Create or replace auditLogMode on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update auditLogMode",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/auditLogMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "auditLogMode"
                  ]
                },
                "description": "Partially update auditLogMode on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete auditLogMode",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/auditLogMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "auditLogMode"
                  ]
                },
                "description": "Remove auditLogMode from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get transactions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/transactions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "transactions"
                  ]
                },
                "description": "Retrieve transactions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace transactions",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/transactions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "transactions"
                  ]
                },
                "description": "Create or replace transactions on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update transactions",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/transactions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "transactions"
                  ]
                },
                "description": "Partially update transactions on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete transactions",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/transactions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "transactions"
                  ]
                },
                "description": "Remove transactions from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get transactionCtrlCmds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/transactionCtrlCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "transactionCtrlCmds"
                  ]
                },
                "description": "Retrieve transactionCtrlCmds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace transactionCtrlCmds",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/transactionCtrlCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "transactionCtrlCmds"
                  ]
                },
                "description": "Create or replace transactionCtrlCmds on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update transactionCtrlCmds",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/transactionCtrlCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "transactionCtrlCmds"
                  ]
                },
                "description": "Partially update transactionCtrlCmds on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete transactionCtrlCmds",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/transactionCtrlCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "transactionCtrlCmds"
                  ]
                },
                "description": "Remove transactionCtrlCmds from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get actionCallNoListInstance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/actionCallNoListInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "actionCallNoListInstance"
                  ]
                },
                "description": "Retrieve actionCallNoListInstance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace actionCallNoListInstance",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/actionCallNoListInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "actionCallNoListInstance"
                  ]
                },
                "description": "Create or replace actionCallNoListInstance on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"item-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update actionCallNoListInstance",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/actionCallNoListInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "actionCallNoListInstance"
                  ]
                },
                "description": "Partially update actionCallNoListInstance on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"item-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete actionCallNoListInstance",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/actionCallNoListInstance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "actionCallNoListInstance"
                  ]
                },
                "description": "Remove actionCallNoListInstance from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get style",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/style",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "style"
                  ]
                },
                "description": "Retrieve style from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace style",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/style",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "style"
                  ]
                },
                "description": "Create or replace style on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update style",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/style",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "style"
                  ]
                },
                "description": "Partially update style on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete style",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/style",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "style"
                  ]
                },
                "description": "Remove style from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get completionShowMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/completionShowMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "completionShowMax"
                  ]
                },
                "description": "Retrieve completionShowMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace completionShowMax",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/completionShowMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "completionShowMax"
                  ]
                },
                "description": "Create or replace completionShowMax on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update completionShowMax",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/completionShowMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "completionShowMax"
                  ]
                },
                "description": "Partially update completionShowMax on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete completionShowMax",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/completionShowMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "completionShowMax"
                  ]
                },
                "description": "Remove completionShowMax from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rollbackAAA",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/rollbackAAA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "rollbackAAA"
                  ]
                },
                "description": "Retrieve rollbackAAA from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rollbackAAA",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/rollbackAAA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "rollbackAAA"
                  ]
                },
                "description": "Create or replace rollbackAAA on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rollbackAAA",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/rollbackAAA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "rollbackAAA"
                  ]
                },
                "description": "Partially update rollbackAAA on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rollbackAAA",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/rollbackAAA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "rollbackAAA"
                  ]
                },
                "description": "Remove rollbackAAA from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rollbackMax",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/rollbackMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "rollbackMax"
                  ]
                },
                "description": "Retrieve rollbackMax from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rollbackMax",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/rollbackMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "rollbackMax"
                  ]
                },
                "description": "Create or replace rollbackMax on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rollbackMax",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/rollbackMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "rollbackMax"
                  ]
                },
                "description": "Partially update rollbackMax on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rollbackMax",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/rollbackMax",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "rollbackMax"
                  ]
                },
                "description": "Remove rollbackMax from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rollbackNumbering",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/rollbackNumbering",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "rollbackNumbering"
                  ]
                },
                "description": "Retrieve rollbackNumbering from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rollbackNumbering",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/rollbackNumbering",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "rollbackNumbering"
                  ]
                },
                "description": "Create or replace rollbackNumbering on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rollbackNumbering",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/rollbackNumbering",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "rollbackNumbering"
                  ]
                },
                "description": "Partially update rollbackNumbering on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rollbackNumbering",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/rollbackNumbering",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "rollbackNumbering"
                  ]
                },
                "description": "Remove rollbackNumbering from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rollbackNumberingInitial",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/rollbackNumberingInitial",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "rollbackNumberingInitial"
                  ]
                },
                "description": "Retrieve rollbackNumberingInitial from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rollbackNumberingInitial",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/rollbackNumberingInitial",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "rollbackNumberingInitial"
                  ]
                },
                "description": "Create or replace rollbackNumberingInitial on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "10",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rollbackNumberingInitial",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/rollbackNumberingInitial",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "rollbackNumberingInitial"
                  ]
                },
                "description": "Partially update rollbackNumberingInitial on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "10",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rollbackNumberingInitial",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/rollbackNumberingInitial",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "rollbackNumberingInitial"
                  ]
                },
                "description": "Remove rollbackNumberingInitial from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get inconsistentDatabaseSuffix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/inconsistentDatabaseSuffix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "inconsistentDatabaseSuffix"
                  ]
                },
                "description": "Retrieve inconsistentDatabaseSuffix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace inconsistentDatabaseSuffix",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/inconsistentDatabaseSuffix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "inconsistentDatabaseSuffix"
                  ]
                },
                "description": "Create or replace inconsistentDatabaseSuffix on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update inconsistentDatabaseSuffix",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/inconsistentDatabaseSuffix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "inconsistentDatabaseSuffix"
                  ]
                },
                "description": "Partially update inconsistentDatabaseSuffix on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete inconsistentDatabaseSuffix",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/inconsistentDatabaseSuffix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "inconsistentDatabaseSuffix"
                  ]
                },
                "description": "Remove inconsistentDatabaseSuffix from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showDefaults",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showDefaults",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showDefaults"
                  ]
                },
                "description": "Retrieve showDefaults from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showDefaults",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showDefaults",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showDefaults"
                  ]
                },
                "description": "Create or replace showDefaults on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showDefaults",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showDefaults",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showDefaults"
                  ]
                },
                "description": "Partially update showDefaults on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showDefaults",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showDefaults",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showDefaults"
                  ]
                },
                "description": "Remove showDefaults from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reallocateOperTrans",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/reallocateOperTrans",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "reallocateOperTrans"
                  ]
                },
                "description": "Retrieve reallocateOperTrans from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace reallocateOperTrans",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/reallocateOperTrans",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "reallocateOperTrans"
                  ]
                },
                "description": "Create or replace reallocateOperTrans on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update reallocateOperTrans",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/reallocateOperTrans",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "reallocateOperTrans"
                  ]
                },
                "description": "Partially update reallocateOperTrans on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete reallocateOperTrans",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/reallocateOperTrans",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "reallocateOperTrans"
                  ]
                },
                "description": "Remove reallocateOperTrans from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get quickSshTeardown",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/quickSshTeardown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "quickSshTeardown"
                  ]
                },
                "description": "Retrieve quickSshTeardown from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace quickSshTeardown",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/quickSshTeardown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "quickSshTeardown"
                  ]
                },
                "description": "Create or replace quickSshTeardown on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update quickSshTeardown",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/quickSshTeardown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "quickSshTeardown"
                  ]
                },
                "description": "Partially update quickSshTeardown on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete quickSshTeardown",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/quickSshTeardown",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "quickSshTeardown"
                  ]
                },
                "description": "Remove quickSshTeardown from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cAlignLeafValues",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cAlignLeafValues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cAlignLeafValues"
                  ]
                },
                "description": "Retrieve cAlignLeafValues from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cAlignLeafValues",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cAlignLeafValues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cAlignLeafValues"
                  ]
                },
                "description": "Create or replace cAlignLeafValues on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cAlignLeafValues",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cAlignLeafValues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cAlignLeafValues"
                  ]
                },
                "description": "Partially update cAlignLeafValues on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cAlignLeafValues",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cAlignLeafValues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cAlignLeafValues"
                  ]
                },
                "description": "Remove cAlignLeafValues from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cConfigAlignLeafValues",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cConfigAlignLeafValues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cConfigAlignLeafValues"
                  ]
                },
                "description": "Retrieve cConfigAlignLeafValues from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cConfigAlignLeafValues",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cConfigAlignLeafValues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cConfigAlignLeafValues"
                  ]
                },
                "description": "Create or replace cConfigAlignLeafValues on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cConfigAlignLeafValues",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cConfigAlignLeafValues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cConfigAlignLeafValues"
                  ]
                },
                "description": "Partially update cConfigAlignLeafValues on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cConfigAlignLeafValues",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cConfigAlignLeafValues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cConfigAlignLeafValues"
                  ]
                },
                "description": "Remove cConfigAlignLeafValues from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get jAlignLeafValues",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jAlignLeafValues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jAlignLeafValues"
                  ]
                },
                "description": "Retrieve jAlignLeafValues from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace jAlignLeafValues",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jAlignLeafValues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jAlignLeafValues"
                  ]
                },
                "description": "Create or replace jAlignLeafValues on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update jAlignLeafValues",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jAlignLeafValues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jAlignLeafValues"
                  ]
                },
                "description": "Partially update jAlignLeafValues on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete jAlignLeafValues",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jAlignLeafValues",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jAlignLeafValues"
                  ]
                },
                "description": "Remove jAlignLeafValues from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get defaultPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/defaultPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "defaultPrefix"
                  ]
                },
                "description": "Retrieve defaultPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace defaultPrefix",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/defaultPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "defaultPrefix"
                  ]
                },
                "description": "Create or replace defaultPrefix on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update defaultPrefix",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/defaultPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "defaultPrefix"
                  ]
                },
                "description": "Partially update defaultPrefix on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete defaultPrefix",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/defaultPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "defaultPrefix"
                  ]
                },
                "description": "Remove defaultPrefix from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get jWarningPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jWarningPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jWarningPrefix"
                  ]
                },
                "description": "Retrieve jWarningPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace jWarningPrefix",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jWarningPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jWarningPrefix"
                  ]
                },
                "description": "Create or replace jWarningPrefix on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update jWarningPrefix",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jWarningPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jWarningPrefix"
                  ]
                },
                "description": "Partially update jWarningPrefix on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete jWarningPrefix",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jWarningPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jWarningPrefix"
                  ]
                },
                "description": "Remove jWarningPrefix from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get jAbortedPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jAbortedPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jAbortedPrefix"
                  ]
                },
                "description": "Retrieve jAbortedPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace jAbortedPrefix",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jAbortedPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jAbortedPrefix"
                  ]
                },
                "description": "Create or replace jAbortedPrefix on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update jAbortedPrefix",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jAbortedPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jAbortedPrefix"
                  ]
                },
                "description": "Partially update jAbortedPrefix on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete jAbortedPrefix",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jAbortedPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jAbortedPrefix"
                  ]
                },
                "description": "Remove jAbortedPrefix from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get jErrorPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jErrorPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jErrorPrefix"
                  ]
                },
                "description": "Retrieve jErrorPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace jErrorPrefix",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jErrorPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jErrorPrefix"
                  ]
                },
                "description": "Create or replace jErrorPrefix on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"0\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update jErrorPrefix",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jErrorPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jErrorPrefix"
                  ]
                },
                "description": "Partially update jErrorPrefix on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"0\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete jErrorPrefix",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jErrorPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jErrorPrefix"
                  ]
                },
                "description": "Remove jErrorPrefix from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cWarningPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cWarningPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cWarningPrefix"
                  ]
                },
                "description": "Retrieve cWarningPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cWarningPrefix",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cWarningPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cWarningPrefix"
                  ]
                },
                "description": "Create or replace cWarningPrefix on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cWarningPrefix",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cWarningPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cWarningPrefix"
                  ]
                },
                "description": "Partially update cWarningPrefix on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cWarningPrefix",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cWarningPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cWarningPrefix"
                  ]
                },
                "description": "Remove cWarningPrefix from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cAbortedPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cAbortedPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cAbortedPrefix"
                  ]
                },
                "description": "Retrieve cAbortedPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cAbortedPrefix",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cAbortedPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cAbortedPrefix"
                  ]
                },
                "description": "Create or replace cAbortedPrefix on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cAbortedPrefix",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cAbortedPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cAbortedPrefix"
                  ]
                },
                "description": "Partially update cAbortedPrefix on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cAbortedPrefix",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cAbortedPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cAbortedPrefix"
                  ]
                },
                "description": "Remove cAbortedPrefix from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cErrorPrefix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cErrorPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cErrorPrefix"
                  ]
                },
                "description": "Retrieve cErrorPrefix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cErrorPrefix",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cErrorPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cErrorPrefix"
                  ]
                },
                "description": "Create or replace cErrorPrefix on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"0\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cErrorPrefix",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cErrorPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cErrorPrefix"
                  ]
                },
                "description": "Partially update cErrorPrefix on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"0\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cErrorPrefix",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cErrorPrefix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cErrorPrefix"
                  ]
                },
                "description": "Remove cErrorPrefix from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get invalidDataString",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/invalidDataString",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "invalidDataString"
                  ]
                },
                "description": "Retrieve invalidDataString from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace invalidDataString",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/invalidDataString",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "invalidDataString"
                  ]
                },
                "description": "Create or replace invalidDataString on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update invalidDataString",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/invalidDataString",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "invalidDataString"
                  ]
                },
                "description": "Partially update invalidDataString on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete invalidDataString",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/invalidDataString",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "invalidDataString"
                  ]
                },
                "description": "Remove invalidDataString from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get noEmbeddedComments",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/noEmbeddedComments",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "noEmbeddedComments"
                  ]
                },
                "description": "Retrieve noEmbeddedComments from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace noEmbeddedComments",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/noEmbeddedComments",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "noEmbeddedComments"
                  ]
                },
                "description": "Create or replace noEmbeddedComments on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update noEmbeddedComments",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/noEmbeddedComments",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "noEmbeddedComments"
                  ]
                },
                "description": "Partially update noEmbeddedComments on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete noEmbeddedComments",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/noEmbeddedComments",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "noEmbeddedComments"
                  ]
                },
                "description": "Remove noEmbeddedComments from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showKeyName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showKeyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showKeyName"
                  ]
                },
                "description": "Retrieve showKeyName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showKeyName",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showKeyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showKeyName"
                  ]
                },
                "description": "Create or replace showKeyName on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showKeyName",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showKeyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showKeyName"
                  ]
                },
                "description": "Partially update showKeyName on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showKeyName",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showKeyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showKeyName"
                  ]
                },
                "description": "Remove showKeyName from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get timezone",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timezone",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timezone"
                  ]
                },
                "description": "Retrieve timezone from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace timezone",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timezone",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timezone"
                  ]
                },
                "description": "Create or replace timezone on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update timezone",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timezone",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timezone"
                  ]
                },
                "description": "Partially update timezone on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete timezone",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timezone",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timezone"
                  ]
                },
                "description": "Remove timezone from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get utcOffset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/utcOffset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "utcOffset"
                  ]
                },
                "description": "Retrieve utcOffset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace utcOffset",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/utcOffset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "utcOffset"
                  ]
                },
                "description": "Create or replace utcOffset on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update utcOffset",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/utcOffset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "utcOffset"
                  ]
                },
                "description": "Partially update utcOffset on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete utcOffset",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/utcOffset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "utcOffset"
                  ]
                },
                "description": "Remove utcOffset from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get oldDetailsArg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/oldDetailsArg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "oldDetailsArg"
                  ]
                },
                "description": "Retrieve oldDetailsArg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace oldDetailsArg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/oldDetailsArg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "oldDetailsArg"
                  ]
                },
                "description": "Create or replace oldDetailsArg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update oldDetailsArg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/oldDetailsArg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "oldDetailsArg"
                  ]
                },
                "description": "Partially update oldDetailsArg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete oldDetailsArg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/oldDetailsArg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "oldDetailsArg"
                  ]
                },
                "description": "Remove oldDetailsArg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get withDefaults",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/withDefaults",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "withDefaults"
                  ]
                },
                "description": "Retrieve withDefaults from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace withDefaults",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/withDefaults",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "withDefaults"
                  ]
                },
                "description": "Create or replace withDefaults on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update withDefaults",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/withDefaults",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "withDefaults"
                  ]
                },
                "description": "Partially update withDefaults on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete withDefaults",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/withDefaults",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "withDefaults"
                  ]
                },
                "description": "Remove withDefaults from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ignoreShowWithDefaultOnDiff",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ignoreShowWithDefaultOnDiff",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ignoreShowWithDefaultOnDiff"
                  ]
                },
                "description": "Retrieve ignoreShowWithDefaultOnDiff from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ignoreShowWithDefaultOnDiff",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ignoreShowWithDefaultOnDiff",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ignoreShowWithDefaultOnDiff"
                  ]
                },
                "description": "Create or replace ignoreShowWithDefaultOnDiff on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ignoreShowWithDefaultOnDiff",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ignoreShowWithDefaultOnDiff",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ignoreShowWithDefaultOnDiff"
                  ]
                },
                "description": "Partially update ignoreShowWithDefaultOnDiff on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ignoreShowWithDefaultOnDiff",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ignoreShowWithDefaultOnDiff",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ignoreShowWithDefaultOnDiff"
                  ]
                },
                "description": "Remove ignoreShowWithDefaultOnDiff from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get trimDefaultShow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/trimDefaultShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "trimDefaultShow"
                  ]
                },
                "description": "Retrieve trimDefaultShow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace trimDefaultShow",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/trimDefaultShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "trimDefaultShow"
                  ]
                },
                "description": "Create or replace trimDefaultShow on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update trimDefaultShow",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/trimDefaultShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "trimDefaultShow"
                  ]
                },
                "description": "Partially update trimDefaultShow on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete trimDefaultShow",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/trimDefaultShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "trimDefaultShow"
                  ]
                },
                "description": "Remove trimDefaultShow from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get trimDefaultSave",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/trimDefaultSave",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "trimDefaultSave"
                  ]
                },
                "description": "Retrieve trimDefaultSave from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace trimDefaultSave",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/trimDefaultSave",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "trimDefaultSave"
                  ]
                },
                "description": "Create or replace trimDefaultSave on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update trimDefaultSave",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/trimDefaultSave",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "trimDefaultSave"
                  ]
                },
                "description": "Partially update trimDefaultSave on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete trimDefaultSave",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/trimDefaultSave",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "trimDefaultSave"
                  ]
                },
                "description": "Remove trimDefaultSave from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get banner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/banner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "banner"
                  ]
                },
                "description": "Retrieve banner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace banner",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/banner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "banner"
                  ]
                },
                "description": "Create or replace banner on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update banner",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/banner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "banner"
                  ]
                },
                "description": "Partially update banner on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete banner",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/banner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "banner"
                  ]
                },
                "description": "Remove banner from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bannerFile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/bannerFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "bannerFile"
                  ]
                },
                "description": "Retrieve bannerFile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bannerFile",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/bannerFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "bannerFile"
                  ]
                },
                "description": "Create or replace bannerFile on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bannerFile",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/bannerFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "bannerFile"
                  ]
                },
                "description": "Partially update bannerFile on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bannerFile",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/bannerFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "bannerFile"
                  ]
                },
                "description": "Remove bannerFile from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prompt1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/prompt1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "prompt1"
                  ]
                },
                "description": "Retrieve prompt1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace prompt1",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/prompt1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "prompt1"
                  ]
                },
                "description": "Create or replace prompt1 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update prompt1",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/prompt1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "prompt1"
                  ]
                },
                "description": "Partially update prompt1 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete prompt1",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/prompt1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "prompt1"
                  ]
                },
                "description": "Remove prompt1 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prompt2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/prompt2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "prompt2"
                  ]
                },
                "description": "Retrieve prompt2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace prompt2",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/prompt2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "prompt2"
                  ]
                },
                "description": "Create or replace prompt2 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update prompt2",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/prompt2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "prompt2"
                  ]
                },
                "description": "Partially update prompt2 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete prompt2",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/prompt2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "prompt2"
                  ]
                },
                "description": "Remove prompt2 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPrompt1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cPrompt1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cPrompt1"
                  ]
                },
                "description": "Retrieve cPrompt1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cPrompt1",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cPrompt1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cPrompt1"
                  ]
                },
                "description": "Create or replace cPrompt1 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cPrompt1",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cPrompt1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cPrompt1"
                  ]
                },
                "description": "Partially update cPrompt1 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cPrompt1",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cPrompt1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cPrompt1"
                  ]
                },
                "description": "Remove cPrompt1 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPrompt2",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cPrompt2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cPrompt2"
                  ]
                },
                "description": "Retrieve cPrompt2 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cPrompt2",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cPrompt2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cPrompt2"
                  ]
                },
                "description": "Create or replace cPrompt2 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cPrompt2",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cPrompt2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cPrompt2"
                  ]
                },
                "description": "Partially update cPrompt2 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cPrompt2",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cPrompt2",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cPrompt2"
                  ]
                },
                "description": "Remove cPrompt2 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cStylePromptInJStyle",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cStylePromptInJStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cStylePromptInJStyle"
                  ]
                },
                "description": "Retrieve cStylePromptInJStyle from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cStylePromptInJStyle",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cStylePromptInJStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cStylePromptInJStyle"
                  ]
                },
                "description": "Create or replace cStylePromptInJStyle on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cStylePromptInJStyle",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cStylePromptInJStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cStylePromptInJStyle"
                  ]
                },
                "description": "Partially update cStylePromptInJStyle on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cStylePromptInJStyle",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cStylePromptInJStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cStylePromptInJStyle"
                  ]
                },
                "description": "Remove cStylePromptInJStyle from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get waitLockedConfigMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/waitLockedConfigMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "waitLockedConfigMode"
                  ]
                },
                "description": "Retrieve waitLockedConfigMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace waitLockedConfigMode",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/waitLockedConfigMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "waitLockedConfigMode"
                  ]
                },
                "description": "Create or replace waitLockedConfigMode on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update waitLockedConfigMode",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/waitLockedConfigMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "waitLockedConfigMode"
                  ]
                },
                "description": "Partially update waitLockedConfigMode on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete waitLockedConfigMode",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/waitLockedConfigMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "waitLockedConfigMode"
                  ]
                },
                "description": "Remove waitLockedConfigMode from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get promptHostnameDelimiter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/promptHostnameDelimiter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "promptHostnameDelimiter"
                  ]
                },
                "description": "Retrieve promptHostnameDelimiter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace promptHostnameDelimiter",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/promptHostnameDelimiter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "promptHostnameDelimiter"
                  ]
                },
                "description": "Create or replace promptHostnameDelimiter on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update promptHostnameDelimiter",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/promptHostnameDelimiter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "promptHostnameDelimiter"
                  ]
                },
                "description": "Partially update promptHostnameDelimiter on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete promptHostnameDelimiter",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/promptHostnameDelimiter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "promptHostnameDelimiter"
                  ]
                },
                "description": "Remove promptHostnameDelimiter from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get asyncPromptRefresh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/asyncPromptRefresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "asyncPromptRefresh"
                  ]
                },
                "description": "Retrieve asyncPromptRefresh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace asyncPromptRefresh",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/asyncPromptRefresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "asyncPromptRefresh"
                  ]
                },
                "description": "Create or replace asyncPromptRefresh on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update asyncPromptRefresh",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/asyncPromptRefresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "asyncPromptRefresh"
                  ]
                },
                "description": "Partially update asyncPromptRefresh on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete asyncPromptRefresh",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/asyncPromptRefresh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "asyncPromptRefresh"
                  ]
                },
                "description": "Remove asyncPromptRefresh from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get idleTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/idleTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "idleTimeout"
                  ]
                },
                "description": "Retrieve idleTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace idleTimeout",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/idleTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "idleTimeout"
                  ]
                },
                "description": "Create or replace idleTimeout on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update idleTimeout",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/idleTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "idleTimeout"
                  ]
                },
                "description": "Partially update idleTimeout on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete idleTimeout",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/idleTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "idleTimeout"
                  ]
                },
                "description": "Remove idleTimeout from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get promptSessionsCLI",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/promptSessionsCLI",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "promptSessionsCLI"
                  ]
                },
                "description": "Retrieve promptSessionsCLI from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace promptSessionsCLI",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/promptSessionsCLI",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "promptSessionsCLI"
                  ]
                },
                "description": "Create or replace promptSessionsCLI on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update promptSessionsCLI",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/promptSessionsCLI",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "promptSessionsCLI"
                  ]
                },
                "description": "Partially update promptSessionsCLI on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete promptSessionsCLI",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/promptSessionsCLI",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "promptSessionsCLI"
                  ]
                },
                "description": "Remove promptSessionsCLI from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get disableIdleTimeoutOnCmd",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/disableIdleTimeoutOnCmd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "disableIdleTimeoutOnCmd"
                  ]
                },
                "description": "Retrieve disableIdleTimeoutOnCmd from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace disableIdleTimeoutOnCmd",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/disableIdleTimeoutOnCmd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "disableIdleTimeoutOnCmd"
                  ]
                },
                "description": "Create or replace disableIdleTimeoutOnCmd on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update disableIdleTimeoutOnCmd",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/disableIdleTimeoutOnCmd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "disableIdleTimeoutOnCmd"
                  ]
                },
                "description": "Partially update disableIdleTimeoutOnCmd on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete disableIdleTimeoutOnCmd",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/disableIdleTimeoutOnCmd",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "disableIdleTimeoutOnCmd"
                  ]
                },
                "description": "Remove disableIdleTimeoutOnCmd from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get commandTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/commandTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "commandTimeout"
                  ]
                },
                "description": "Retrieve commandTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace commandTimeout",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/commandTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "commandTimeout"
                  ]
                },
                "description": "Create or replace commandTimeout on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update commandTimeout",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/commandTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "commandTimeout"
                  ]
                },
                "description": "Partially update commandTimeout on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete commandTimeout",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/commandTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "commandTimeout"
                  ]
                },
                "description": "Remove commandTimeout from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get spaceCompletion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/spaceCompletion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "spaceCompletion"
                  ]
                },
                "description": "Retrieve spaceCompletion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace spaceCompletion",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/spaceCompletion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "spaceCompletion"
                  ]
                },
                "description": "Create or replace spaceCompletion on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update spaceCompletion",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/spaceCompletion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "spaceCompletion"
                  ]
                },
                "description": "Partially update spaceCompletion on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete spaceCompletion",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/spaceCompletion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "spaceCompletion"
                  ]
                },
                "description": "Remove spaceCompletion from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/spaceCompletion/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "spaceCompletion",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/spaceCompletion/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "spaceCompletion",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/spaceCompletion/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "spaceCompletion",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/spaceCompletion/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "spaceCompletion",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get timestamp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timestamp"
                  ]
                },
                "description": "Retrieve timestamp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace timestamp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timestamp"
                  ]
                },
                "description": "Create or replace timestamp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"clock24\": true,\n  \"format\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update timestamp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timestamp"
                  ]
                },
                "description": "Partially update timestamp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"clock24\": true,\n  \"format\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete timestamp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timestamp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timestamp"
                  ]
                },
                "description": "Remove timestamp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timestamp/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timestamp",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timestamp/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timestamp",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timestamp/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timestamp",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timestamp/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timestamp",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get clock24",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timestamp/clock24",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timestamp",
                    "clock24"
                  ]
                },
                "description": "Retrieve clock24 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace clock24",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timestamp/clock24",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timestamp",
                    "clock24"
                  ]
                },
                "description": "Create or replace clock24 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update clock24",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timestamp/clock24",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timestamp",
                    "clock24"
                  ]
                },
                "description": "Partially update clock24 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete clock24",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timestamp/clock24",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timestamp",
                    "clock24"
                  ]
                },
                "description": "Remove clock24 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get format",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timestamp/format",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timestamp",
                    "format"
                  ]
                },
                "description": "Retrieve format from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace format",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timestamp/format",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timestamp",
                    "format"
                  ]
                },
                "description": "Create or replace format on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update format",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timestamp/format",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timestamp",
                    "format"
                  ]
                },
                "description": "Partially update format on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete format",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/timestamp/format",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "timestamp",
                    "format"
                  ]
                },
                "description": "Remove format from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get autoWizard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/autoWizard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "autoWizard"
                  ]
                },
                "description": "Retrieve autoWizard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace autoWizard",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/autoWizard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "autoWizard"
                  ]
                },
                "description": "Create or replace autoWizard on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update autoWizard",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/autoWizard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "autoWizard"
                  ]
                },
                "description": "Partially update autoWizard on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete autoWizard",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/autoWizard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "autoWizard"
                  ]
                },
                "description": "Remove autoWizard from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/autoWizard/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "autoWizard",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/autoWizard/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "autoWizard",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/autoWizard/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "autoWizard",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/autoWizard/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "autoWizard",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ssh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh"
                  ]
                },
                "description": "Retrieve ssh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ssh",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh"
                  ]
                },
                "description": "Create or replace ssh on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"extraIpPorts\": [\n    \"configured-value\"\n  ],\n  \"haPrimaryListen\": [\n    \"configured-value\"\n  ],\n  \"dscp\": \"46\",\n  \"useKeyboardInteractive\": true,\n  \"banner\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ssh",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh"
                  ]
                },
                "description": "Partially update ssh on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"extraIpPorts\": [\n    \"configured-value\"\n  ],\n  \"haPrimaryListen\": [\n    \"configured-value\"\n  ],\n  \"dscp\": \"46\",\n  \"useKeyboardInteractive\": true,\n  \"banner\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ssh",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh"
                  ]
                },
                "description": "Remove ssh from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "ip"
                  ]
                },
                "description": "Retrieve ip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ip",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "ip"
                  ]
                },
                "description": "Create or replace ip on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ip",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "ip"
                  ]
                },
                "description": "Partially update ip on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ip",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "ip"
                  ]
                },
                "description": "Remove ip from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get port",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "port"
                  ]
                },
                "description": "Retrieve port from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace port",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "port"
                  ]
                },
                "description": "Create or replace port on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"443\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update port",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "port"
                  ]
                },
                "description": "Partially update port on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"443\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete port",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "port"
                  ]
                },
                "description": "Remove port from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get netns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/netns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "netns"
                  ]
                },
                "description": "Retrieve netns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace netns",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/netns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "netns"
                  ]
                },
                "description": "Create or replace netns on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update netns",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/netns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "netns"
                  ]
                },
                "description": "Partially update netns on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete netns",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/netns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "netns"
                  ]
                },
                "description": "Remove netns from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vrf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/vrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "vrf"
                  ]
                },
                "description": "Retrieve vrf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vrf",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/vrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "vrf"
                  ]
                },
                "description": "Create or replace vrf on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vrf",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/vrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "vrf"
                  ]
                },
                "description": "Partially update vrf on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vrf",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/vrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "vrf"
                  ]
                },
                "description": "Remove vrf from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get extraIpPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/extraIpPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "extraIpPorts"
                  ]
                },
                "description": "Retrieve extraIpPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace extraIpPorts",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/extraIpPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "extraIpPorts"
                  ]
                },
                "description": "Create or replace extraIpPorts on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update extraIpPorts",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/extraIpPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "extraIpPorts"
                  ]
                },
                "description": "Partially update extraIpPorts on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete extraIpPorts",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/extraIpPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "extraIpPorts"
                  ]
                },
                "description": "Remove extraIpPorts from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get haPrimaryListen",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/haPrimaryListen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "haPrimaryListen"
                  ]
                },
                "description": "Retrieve haPrimaryListen from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace haPrimaryListen",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/haPrimaryListen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "haPrimaryListen"
                  ]
                },
                "description": "Create or replace haPrimaryListen on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update haPrimaryListen",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/haPrimaryListen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "haPrimaryListen"
                  ]
                },
                "description": "Partially update haPrimaryListen on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete haPrimaryListen",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/haPrimaryListen",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "haPrimaryListen"
                  ]
                },
                "description": "Remove haPrimaryListen from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "dscp"
                  ]
                },
                "description": "Retrieve dscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dscp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "dscp"
                  ]
                },
                "description": "Create or replace dscp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"46\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dscp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "dscp"
                  ]
                },
                "description": "Partially update dscp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"46\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dscp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "dscp"
                  ]
                },
                "description": "Remove dscp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get useKeyboardInteractive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/useKeyboardInteractive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "useKeyboardInteractive"
                  ]
                },
                "description": "Retrieve useKeyboardInteractive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace useKeyboardInteractive",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/useKeyboardInteractive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "useKeyboardInteractive"
                  ]
                },
                "description": "Create or replace useKeyboardInteractive on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update useKeyboardInteractive",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/useKeyboardInteractive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "useKeyboardInteractive"
                  ]
                },
                "description": "Partially update useKeyboardInteractive on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete useKeyboardInteractive",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/useKeyboardInteractive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "useKeyboardInteractive"
                  ]
                },
                "description": "Remove useKeyboardInteractive from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get banner",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/banner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "banner"
                  ]
                },
                "description": "Retrieve banner from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace banner",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/banner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "banner"
                  ]
                },
                "description": "Create or replace banner on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update banner",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/banner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "banner"
                  ]
                },
                "description": "Partially update banner on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete banner",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/banner",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "banner"
                  ]
                },
                "description": "Remove banner from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bannerFile",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/bannerFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "bannerFile"
                  ]
                },
                "description": "Retrieve bannerFile from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bannerFile",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/bannerFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "bannerFile"
                  ]
                },
                "description": "Create or replace bannerFile on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bannerFile",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/bannerFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "bannerFile"
                  ]
                },
                "description": "Partially update bannerFile on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bannerFile",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ssh/bannerFile",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ssh",
                    "bannerFile"
                  ]
                },
                "description": "Remove bannerFile from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get commitMessage",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/commitMessage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "commitMessage"
                  ]
                },
                "description": "Retrieve commitMessage from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace commitMessage",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/commitMessage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "commitMessage"
                  ]
                },
                "description": "Create or replace commitMessage on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update commitMessage",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/commitMessage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "commitMessage"
                  ]
                },
                "description": "Partially update commitMessage on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete commitMessage",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/commitMessage",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "commitMessage"
                  ]
                },
                "description": "Remove commitMessage from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get commitMessageFormat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/commitMessageFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "commitMessageFormat"
                  ]
                },
                "description": "Retrieve commitMessageFormat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace commitMessageFormat",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/commitMessageFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "commitMessageFormat"
                  ]
                },
                "description": "Create or replace commitMessageFormat on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update commitMessageFormat",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/commitMessageFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "commitMessageFormat"
                  ]
                },
                "description": "Partially update commitMessageFormat on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete commitMessageFormat",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/commitMessageFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "commitMessageFormat"
                  ]
                },
                "description": "Remove commitMessageFormat from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get suppressCommitMessages",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressCommitMessages",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressCommitMessages"
                  ]
                },
                "description": "Retrieve suppressCommitMessages from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace suppressCommitMessages",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressCommitMessages",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressCommitMessages"
                  ]
                },
                "description": "Create or replace suppressCommitMessages on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"context\": [\n    \"configured-value\"\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update suppressCommitMessages",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressCommitMessages",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressCommitMessages"
                  ]
                },
                "description": "Partially update suppressCommitMessages on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"context\": [\n    \"configured-value\"\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete suppressCommitMessages",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressCommitMessages",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressCommitMessages"
                  ]
                },
                "description": "Remove suppressCommitMessages from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get context",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressCommitMessages/context",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressCommitMessages",
                    "context"
                  ]
                },
                "description": "Retrieve context from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace context",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressCommitMessages/context",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressCommitMessages",
                    "context"
                  ]
                },
                "description": "Create or replace context on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update context",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressCommitMessages/context",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressCommitMessages",
                    "context"
                  ]
                },
                "description": "Partially update context on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete context",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressCommitMessages/context",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressCommitMessages",
                    "context"
                  ]
                },
                "description": "Remove context from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get jShowCR",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jShowCR",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jShowCR"
                  ]
                },
                "description": "Retrieve jShowCR from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace jShowCR",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jShowCR",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jShowCR"
                  ]
                },
                "description": "Create or replace jShowCR on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update jShowCR",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jShowCR",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jShowCR"
                  ]
                },
                "description": "Partially update jShowCR on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete jShowCR",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jShowCR",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jShowCR"
                  ]
                },
                "description": "Remove jShowCR from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showPipe",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showPipe",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showPipe"
                  ]
                },
                "description": "Retrieve showPipe from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showPipe",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showPipe",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showPipe"
                  ]
                },
                "description": "Create or replace showPipe on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showPipe",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showPipe",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showPipe"
                  ]
                },
                "description": "Partially update showPipe on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showPipe",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showPipe",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showPipe"
                  ]
                },
                "description": "Remove showPipe from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showPipeConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showPipeConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showPipeConfig"
                  ]
                },
                "description": "Retrieve showPipeConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showPipeConfig",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showPipeConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showPipeConfig"
                  ]
                },
                "description": "Create or replace showPipeConfig on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showPipeConfig",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showPipeConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showPipeConfig"
                  ]
                },
                "description": "Partially update showPipeConfig on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showPipeConfig",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showPipeConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showPipeConfig"
                  ]
                },
                "description": "Remove showPipeConfig from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get disablePipe",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/disablePipe",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "disablePipe"
                  ]
                },
                "description": "Retrieve disablePipe from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace disablePipe",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/disablePipe",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "disablePipe"
                  ]
                },
                "description": "Create or replace disablePipe on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update disablePipe",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/disablePipe",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "disablePipe"
                  ]
                },
                "description": "Partially update disablePipe on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete disablePipe",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/disablePipe",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "disablePipe"
                  ]
                },
                "description": "Remove disablePipe from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get disablePipeConfig",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/disablePipeConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "disablePipeConfig"
                  ]
                },
                "description": "Retrieve disablePipeConfig from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace disablePipeConfig",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/disablePipeConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "disablePipeConfig"
                  ]
                },
                "description": "Create or replace disablePipeConfig on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update disablePipeConfig",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/disablePipeConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "disablePipeConfig"
                  ]
                },
                "description": "Partially update disablePipeConfig on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete disablePipeConfig",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/disablePipeConfig",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "disablePipeConfig"
                  ]
                },
                "description": "Remove disablePipeConfig from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pipeHelpMode",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/pipeHelpMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "pipeHelpMode"
                  ]
                },
                "description": "Retrieve pipeHelpMode from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pipeHelpMode",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/pipeHelpMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "pipeHelpMode"
                  ]
                },
                "description": "Create or replace pipeHelpMode on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pipeHelpMode",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/pipeHelpMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "pipeHelpMode"
                  ]
                },
                "description": "Partially update pipeHelpMode on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pipeHelpMode",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/pipeHelpMode",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "pipeHelpMode"
                  ]
                },
                "description": "Remove pipeHelpMode from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get jAllowDeleteAll",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jAllowDeleteAll",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jAllowDeleteAll"
                  ]
                },
                "description": "Retrieve jAllowDeleteAll from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace jAllowDeleteAll",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jAllowDeleteAll",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jAllowDeleteAll"
                  ]
                },
                "description": "Create or replace jAllowDeleteAll on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update jAllowDeleteAll",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jAllowDeleteAll",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jAllowDeleteAll"
                  ]
                },
                "description": "Partially update jAllowDeleteAll on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete jAllowDeleteAll",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jAllowDeleteAll",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jAllowDeleteAll"
                  ]
                },
                "description": "Remove jAllowDeleteAll from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSilentNo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cSilentNo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cSilentNo"
                  ]
                },
                "description": "Retrieve cSilentNo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cSilentNo",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cSilentNo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cSilentNo"
                  ]
                },
                "description": "Create or replace cSilentNo on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cSilentNo",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cSilentNo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cSilentNo"
                  ]
                },
                "description": "Partially update cSilentNo on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cSilentNo",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cSilentNo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cSilentNo"
                  ]
                },
                "description": "Remove cSilentNo from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get noFollowIncompleteCommand",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/noFollowIncompleteCommand",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "noFollowIncompleteCommand"
                  ]
                },
                "description": "Retrieve noFollowIncompleteCommand from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace noFollowIncompleteCommand",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/noFollowIncompleteCommand",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "noFollowIncompleteCommand"
                  ]
                },
                "description": "Create or replace noFollowIncompleteCommand on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update noFollowIncompleteCommand",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/noFollowIncompleteCommand",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "noFollowIncompleteCommand"
                  ]
                },
                "description": "Partially update noFollowIncompleteCommand on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete noFollowIncompleteCommand",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/noFollowIncompleteCommand",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "noFollowIncompleteCommand"
                  ]
                },
                "description": "Remove noFollowIncompleteCommand from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cRestrictiveNo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cRestrictiveNo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cRestrictiveNo"
                  ]
                },
                "description": "Retrieve cRestrictiveNo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cRestrictiveNo",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cRestrictiveNo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cRestrictiveNo"
                  ]
                },
                "description": "Create or replace cRestrictiveNo on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cRestrictiveNo",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cRestrictiveNo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cRestrictiveNo"
                  ]
                },
                "description": "Partially update cRestrictiveNo on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cRestrictiveNo",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cRestrictiveNo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cRestrictiveNo"
                  ]
                },
                "description": "Remove cRestrictiveNo from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prioritizeSubmodeCmds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/prioritizeSubmodeCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "prioritizeSubmodeCmds"
                  ]
                },
                "description": "Retrieve prioritizeSubmodeCmds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace prioritizeSubmodeCmds",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/prioritizeSubmodeCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "prioritizeSubmodeCmds"
                  ]
                },
                "description": "Create or replace prioritizeSubmodeCmds on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update prioritizeSubmodeCmds",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/prioritizeSubmodeCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "prioritizeSubmodeCmds"
                  ]
                },
                "description": "Partially update prioritizeSubmodeCmds on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete prioritizeSubmodeCmds",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/prioritizeSubmodeCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "prioritizeSubmodeCmds"
                  ]
                },
                "description": "Remove prioritizeSubmodeCmds from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cExtendedCmdSearch",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cExtendedCmdSearch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cExtendedCmdSearch"
                  ]
                },
                "description": "Retrieve cExtendedCmdSearch from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cExtendedCmdSearch",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cExtendedCmdSearch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cExtendedCmdSearch"
                  ]
                },
                "description": "Create or replace cExtendedCmdSearch on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cExtendedCmdSearch",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cExtendedCmdSearch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cExtendedCmdSearch"
                  ]
                },
                "description": "Partially update cExtendedCmdSearch on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cExtendedCmdSearch",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cExtendedCmdSearch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cExtendedCmdSearch"
                  ]
                },
                "description": "Remove cExtendedCmdSearch from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cSuppressCmdSearch",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cSuppressCmdSearch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cSuppressCmdSearch"
                  ]
                },
                "description": "Retrieve cSuppressCmdSearch from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cSuppressCmdSearch",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cSuppressCmdSearch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cSuppressCmdSearch"
                  ]
                },
                "description": "Create or replace cSuppressCmdSearch on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cSuppressCmdSearch",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cSuppressCmdSearch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cSuppressCmdSearch"
                  ]
                },
                "description": "Partially update cSuppressCmdSearch on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cSuppressCmdSearch",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cSuppressCmdSearch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cSuppressCmdSearch"
                  ]
                },
                "description": "Remove cSuppressCmdSearch from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enterSubmodeOnLeaf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enterSubmodeOnLeaf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enterSubmodeOnLeaf"
                  ]
                },
                "description": "Retrieve enterSubmodeOnLeaf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enterSubmodeOnLeaf",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enterSubmodeOnLeaf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enterSubmodeOnLeaf"
                  ]
                },
                "description": "Create or replace enterSubmodeOnLeaf on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enterSubmodeOnLeaf",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enterSubmodeOnLeaf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enterSubmodeOnLeaf"
                  ]
                },
                "description": "Partially update enterSubmodeOnLeaf on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enterSubmodeOnLeaf",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enterSubmodeOnLeaf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enterSubmodeOnLeaf"
                  ]
                },
                "description": "Remove enterSubmodeOnLeaf from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get jExtendedShow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jExtendedShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jExtendedShow"
                  ]
                },
                "description": "Retrieve jExtendedShow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace jExtendedShow",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jExtendedShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jExtendedShow"
                  ]
                },
                "description": "Create or replace jExtendedShow on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update jExtendedShow",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jExtendedShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jExtendedShow"
                  ]
                },
                "description": "Partially update jExtendedShow on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete jExtendedShow",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jExtendedShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jExtendedShow"
                  ]
                },
                "description": "Remove jExtendedShow from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get jShowUnset",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jShowUnset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jShowUnset"
                  ]
                },
                "description": "Retrieve jShowUnset from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace jShowUnset",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jShowUnset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jShowUnset"
                  ]
                },
                "description": "Create or replace jShowUnset on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update jShowUnset",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jShowUnset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jShowUnset"
                  ]
                },
                "description": "Partially update jShowUnset on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete jShowUnset",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jShowUnset",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jShowUnset"
                  ]
                },
                "description": "Remove jShowUnset from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get jShowUnsetText",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jShowUnsetText",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jShowUnsetText"
                  ]
                },
                "description": "Retrieve jShowUnsetText from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace jShowUnsetText",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jShowUnsetText",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jShowUnsetText"
                  ]
                },
                "description": "Create or replace jShowUnsetText on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update jShowUnsetText",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jShowUnsetText",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jShowUnsetText"
                  ]
                },
                "description": "Partially update jShowUnsetText on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete jShowUnsetText",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jShowUnsetText",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jShowUnsetText"
                  ]
                },
                "description": "Remove jShowUnsetText from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get jStatusFormat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jStatusFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jStatusFormat"
                  ]
                },
                "description": "Retrieve jStatusFormat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace jStatusFormat",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jStatusFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jStatusFormat"
                  ]
                },
                "description": "Create or replace jStatusFormat on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"active\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update jStatusFormat",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jStatusFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jStatusFormat"
                  ]
                },
                "description": "Partially update jStatusFormat on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"active\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete jStatusFormat",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jStatusFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jStatusFormat"
                  ]
                },
                "description": "Remove jStatusFormat from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cModeExitFormat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cModeExitFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cModeExitFormat"
                  ]
                },
                "description": "Retrieve cModeExitFormat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cModeExitFormat",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cModeExitFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cModeExitFormat"
                  ]
                },
                "description": "Create or replace cModeExitFormat on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cModeExitFormat",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cModeExitFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cModeExitFormat"
                  ]
                },
                "description": "Partially update cModeExitFormat on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cModeExitFormat",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cModeExitFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cModeExitFormat"
                  ]
                },
                "description": "Remove cModeExitFormat from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get forcedExitFormat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/forcedExitFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "forcedExitFormat"
                  ]
                },
                "description": "Retrieve forcedExitFormat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace forcedExitFormat",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/forcedExitFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "forcedExitFormat"
                  ]
                },
                "description": "Create or replace forcedExitFormat on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update forcedExitFormat",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/forcedExitFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "forcedExitFormat"
                  ]
                },
                "description": "Partially update forcedExitFormat on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete forcedExitFormat",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/forcedExitFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "forcedExitFormat"
                  ]
                },
                "description": "Remove forcedExitFormat from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showSubsystemMessages",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showSubsystemMessages",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showSubsystemMessages"
                  ]
                },
                "description": "Retrieve showSubsystemMessages from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showSubsystemMessages",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showSubsystemMessages",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showSubsystemMessages"
                  ]
                },
                "description": "Create or replace showSubsystemMessages on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showSubsystemMessages",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showSubsystemMessages",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showSubsystemMessages"
                  ]
                },
                "description": "Partially update showSubsystemMessages on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showSubsystemMessages",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showSubsystemMessages",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showSubsystemMessages"
                  ]
                },
                "description": "Remove showSubsystemMessages from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ignoreSubsystemFailures",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ignoreSubsystemFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ignoreSubsystemFailures"
                  ]
                },
                "description": "Retrieve ignoreSubsystemFailures from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ignoreSubsystemFailures",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ignoreSubsystemFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ignoreSubsystemFailures"
                  ]
                },
                "description": "Create or replace ignoreSubsystemFailures on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ignoreSubsystemFailures",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ignoreSubsystemFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ignoreSubsystemFailures"
                  ]
                },
                "description": "Partially update ignoreSubsystemFailures on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ignoreSubsystemFailures",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ignoreSubsystemFailures",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ignoreSubsystemFailures"
                  ]
                },
                "description": "Remove ignoreSubsystemFailures from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showEmptyContainers",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showEmptyContainers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showEmptyContainers"
                  ]
                },
                "description": "Retrieve showEmptyContainers from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showEmptyContainers",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showEmptyContainers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showEmptyContainers"
                  ]
                },
                "description": "Create or replace showEmptyContainers on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showEmptyContainers",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showEmptyContainers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showEmptyContainers"
                  ]
                },
                "description": "Partially update showEmptyContainers on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showEmptyContainers",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showEmptyContainers",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showEmptyContainers"
                  ]
                },
                "description": "Remove showEmptyContainers from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showTags",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showTags",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showTags"
                  ]
                },
                "description": "Retrieve showTags from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showTags",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showTags",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showTags"
                  ]
                },
                "description": "Create or replace showTags on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showTags",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showTags",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showTags"
                  ]
                },
                "description": "Partially update showTags on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showTags",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showTags",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showTags"
                  ]
                },
                "description": "Remove showTags from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showAnnotations",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showAnnotations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showAnnotations"
                  ]
                },
                "description": "Retrieve showAnnotations from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showAnnotations",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showAnnotations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showAnnotations"
                  ]
                },
                "description": "Create or replace showAnnotations on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showAnnotations",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showAnnotations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showAnnotations"
                  ]
                },
                "description": "Partially update showAnnotations on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showAnnotations",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showAnnotations",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showAnnotations"
                  ]
                },
                "description": "Remove showAnnotations from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showServiceMetaData",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showServiceMetaData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showServiceMetaData"
                  ]
                },
                "description": "Retrieve showServiceMetaData from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showServiceMetaData",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showServiceMetaData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showServiceMetaData"
                  ]
                },
                "description": "Create or replace showServiceMetaData on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showServiceMetaData",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showServiceMetaData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showServiceMetaData"
                  ]
                },
                "description": "Partially update showServiceMetaData on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showServiceMetaData",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showServiceMetaData",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showServiceMetaData"
                  ]
                },
                "description": "Remove showServiceMetaData from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get suppressNedErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressNedErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressNedErrors"
                  ]
                },
                "description": "Retrieve suppressNedErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace suppressNedErrors",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressNedErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressNedErrors"
                  ]
                },
                "description": "Create or replace suppressNedErrors on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update suppressNedErrors",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressNedErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressNedErrors"
                  ]
                },
                "description": "Partially update suppressNedErrors on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete suppressNedErrors",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressNedErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressNedErrors"
                  ]
                },
                "description": "Remove suppressNedErrors from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get jShowTableRecursive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jShowTableRecursive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jShowTableRecursive"
                  ]
                },
                "description": "Retrieve jShowTableRecursive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace jShowTableRecursive",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jShowTableRecursive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jShowTableRecursive"
                  ]
                },
                "description": "Create or replace jShowTableRecursive on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update jShowTableRecursive",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jShowTableRecursive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jShowTableRecursive"
                  ]
                },
                "description": "Partially update jShowTableRecursive on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete jShowTableRecursive",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jShowTableRecursive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jShowTableRecursive"
                  ]
                },
                "description": "Remove jShowTableRecursive from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cPrivate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cPrivate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cPrivate"
                  ]
                },
                "description": "Retrieve cPrivate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cPrivate",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cPrivate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cPrivate"
                  ]
                },
                "description": "Create or replace cPrivate on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cPrivate",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cPrivate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cPrivate"
                  ]
                },
                "description": "Partially update cPrivate on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cPrivate",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cPrivate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cPrivate"
                  ]
                },
                "description": "Remove cPrivate from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTab",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cTab",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cTab"
                  ]
                },
                "description": "Retrieve cTab from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cTab",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cTab",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cTab"
                  ]
                },
                "description": "Create or replace cTab on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cTab",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cTab",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cTab"
                  ]
                },
                "description": "Partially update cTab on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cTab",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cTab",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cTab"
                  ]
                },
                "description": "Remove cTab from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cTabInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cTabInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cTabInfo"
                  ]
                },
                "description": "Retrieve cTabInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cTabInfo",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cTabInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cTabInfo"
                  ]
                },
                "description": "Create or replace cTabInfo on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cTabInfo",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cTabInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cTabInfo"
                  ]
                },
                "description": "Partially update cTabInfo on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cTabInfo",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cTabInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cTabInfo"
                  ]
                },
                "description": "Remove cTabInfo from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tabExtend",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/tabExtend",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "tabExtend"
                  ]
                },
                "description": "Retrieve tabExtend from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tabExtend",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/tabExtend",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "tabExtend"
                  ]
                },
                "description": "Create or replace tabExtend on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tabExtend",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/tabExtend",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "tabExtend"
                  ]
                },
                "description": "Partially update tabExtend on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tabExtend",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/tabExtend",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "tabExtend"
                  ]
                },
                "description": "Remove tabExtend from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cHelp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cHelp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cHelp"
                  ]
                },
                "description": "Retrieve cHelp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cHelp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cHelp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cHelp"
                  ]
                },
                "description": "Create or replace cHelp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cHelp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cHelp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cHelp"
                  ]
                },
                "description": "Partially update cHelp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cHelp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cHelp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cHelp"
                  ]
                },
                "description": "Remove cHelp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get jHideHelp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jHideHelp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jHideHelp"
                  ]
                },
                "description": "Retrieve jHideHelp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace jHideHelp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jHideHelp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jHideHelp"
                  ]
                },
                "description": "Create or replace jHideHelp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update jHideHelp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jHideHelp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jHideHelp"
                  ]
                },
                "description": "Partially update jHideHelp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete jHideHelp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jHideHelp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jHideHelp"
                  ]
                },
                "description": "Remove jHideHelp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get restrictedFileAccess",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/restrictedFileAccess",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "restrictedFileAccess"
                  ]
                },
                "description": "Retrieve restrictedFileAccess from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace restrictedFileAccess",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/restrictedFileAccess",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "restrictedFileAccess"
                  ]
                },
                "description": "Create or replace restrictedFileAccess on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update restrictedFileAccess",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/restrictedFileAccess",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "restrictedFileAccess"
                  ]
                },
                "description": "Partially update restrictedFileAccess on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete restrictedFileAccess",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/restrictedFileAccess",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "restrictedFileAccess"
                  ]
                },
                "description": "Remove restrictedFileAccess from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get hideDotFiles",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/hideDotFiles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "hideDotFiles"
                  ]
                },
                "description": "Retrieve hideDotFiles from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace hideDotFiles",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/hideDotFiles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "hideDotFiles"
                  ]
                },
                "description": "Create or replace hideDotFiles on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update hideDotFiles",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/hideDotFiles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "hideDotFiles"
                  ]
                },
                "description": "Partially update hideDotFiles on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete hideDotFiles",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/hideDotFiles",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "hideDotFiles"
                  ]
                },
                "description": "Remove hideDotFiles from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get restrictedFileRegexp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/restrictedFileRegexp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "restrictedFileRegexp"
                  ]
                },
                "description": "Retrieve restrictedFileRegexp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace restrictedFileRegexp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/restrictedFileRegexp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "restrictedFileRegexp"
                  ]
                },
                "description": "Create or replace restrictedFileRegexp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update restrictedFileRegexp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/restrictedFileRegexp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "restrictedFileRegexp"
                  ]
                },
                "description": "Partially update restrictedFileRegexp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete restrictedFileRegexp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/restrictedFileRegexp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "restrictedFileRegexp"
                  ]
                },
                "description": "Remove restrictedFileRegexp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get historySave",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/historySave",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "historySave"
                  ]
                },
                "description": "Retrieve historySave from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace historySave",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/historySave",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "historySave"
                  ]
                },
                "description": "Create or replace historySave on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update historySave",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/historySave",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "historySave"
                  ]
                },
                "description": "Partially update historySave on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete historySave",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/historySave",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "historySave"
                  ]
                },
                "description": "Remove historySave from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get historyRemoveDuplicates",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/historyRemoveDuplicates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "historyRemoveDuplicates"
                  ]
                },
                "description": "Retrieve historyRemoveDuplicates from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace historyRemoveDuplicates",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/historyRemoveDuplicates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "historyRemoveDuplicates"
                  ]
                },
                "description": "Create or replace historyRemoveDuplicates on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update historyRemoveDuplicates",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/historyRemoveDuplicates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "historyRemoveDuplicates"
                  ]
                },
                "description": "Partially update historyRemoveDuplicates on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete historyRemoveDuplicates",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/historyRemoveDuplicates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "historyRemoveDuplicates"
                  ]
                },
                "description": "Remove historyRemoveDuplicates from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get historyMaxSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/historyMaxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "historyMaxSize"
                  ]
                },
                "description": "Retrieve historyMaxSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace historyMaxSize",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/historyMaxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "historyMaxSize"
                  ]
                },
                "description": "Create or replace historyMaxSize on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update historyMaxSize",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/historyMaxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "historyMaxSize"
                  ]
                },
                "description": "Partially update historyMaxSize on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete historyMaxSize",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/historyMaxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "historyMaxSize"
                  ]
                },
                "description": "Remove historyMaxSize from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get messageMaxSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/messageMaxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "messageMaxSize"
                  ]
                },
                "description": "Retrieve messageMaxSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace messageMaxSize",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/messageMaxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "messageMaxSize"
                  ]
                },
                "description": "Create or replace messageMaxSize on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update messageMaxSize",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/messageMaxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "messageMaxSize"
                  ]
                },
                "description": "Partially update messageMaxSize on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete messageMaxSize",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/messageMaxSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "messageMaxSize"
                  ]
                },
                "description": "Remove messageMaxSize from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mapActions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/mapActions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "mapActions"
                  ]
                },
                "description": "Retrieve mapActions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mapActions",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/mapActions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "mapActions"
                  ]
                },
                "description": "Create or replace mapActions on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mapActions",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/mapActions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "mapActions"
                  ]
                },
                "description": "Partially update mapActions on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mapActions",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/mapActions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "mapActions"
                  ]
                },
                "description": "Remove mapActions from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get compactTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/compactTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "compactTable"
                  ]
                },
                "description": "Retrieve compactTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace compactTable",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/compactTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "compactTable"
                  ]
                },
                "description": "Create or replace compactTable on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update compactTable",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/compactTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "compactTable"
                  ]
                },
                "description": "Partially update compactTable on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete compactTable",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/compactTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "compactTable"
                  ]
                },
                "description": "Remove compactTable from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get compactShow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/compactShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "compactShow"
                  ]
                },
                "description": "Retrieve compactShow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace compactShow",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/compactShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "compactShow"
                  ]
                },
                "description": "Create or replace compactShow on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update compactShow",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/compactShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "compactShow"
                  ]
                },
                "description": "Partially update compactShow on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete compactShow",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/compactShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "compactShow"
                  ]
                },
                "description": "Remove compactShow from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get compactStatsShow",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/compactStatsShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "compactStatsShow"
                  ]
                },
                "description": "Retrieve compactStatsShow from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace compactStatsShow",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/compactStatsShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "compactStatsShow"
                  ]
                },
                "description": "Create or replace compactStatsShow on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update compactStatsShow",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/compactStatsShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "compactStatsShow"
                  ]
                },
                "description": "Partially update compactStatsShow on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete compactStatsShow",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/compactStatsShow",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "compactStatsShow"
                  ]
                },
                "description": "Remove compactStatsShow from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get prettifyStatsName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/prettifyStatsName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "prettifyStatsName"
                  ]
                },
                "description": "Retrieve prettifyStatsName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace prettifyStatsName",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/prettifyStatsName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "prettifyStatsName"
                  ]
                },
                "description": "Create or replace prettifyStatsName on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update prettifyStatsName",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/prettifyStatsName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "prettifyStatsName"
                  ]
                },
                "description": "Partially update prettifyStatsName on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete prettifyStatsName",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/prettifyStatsName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "prettifyStatsName"
                  ]
                },
                "description": "Remove prettifyStatsName from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showCommitProgress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showCommitProgress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showCommitProgress"
                  ]
                },
                "description": "Retrieve showCommitProgress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showCommitProgress",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showCommitProgress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showCommitProgress"
                  ]
                },
                "description": "Create or replace showCommitProgress on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showCommitProgress",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showCommitProgress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showCommitProgress"
                  ]
                },
                "description": "Partially update showCommitProgress on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showCommitProgress",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showCommitProgress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showCommitProgress"
                  ]
                },
                "description": "Remove showCommitProgress from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get commitActivityClock",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/commitActivityClock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "commitActivityClock"
                  ]
                },
                "description": "Retrieve commitActivityClock from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace commitActivityClock",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/commitActivityClock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "commitActivityClock"
                  ]
                },
                "description": "Create or replace commitActivityClock on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update commitActivityClock",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/commitActivityClock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "commitActivityClock"
                  ]
                },
                "description": "Partially update commitActivityClock on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete commitActivityClock",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/commitActivityClock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "commitActivityClock"
                  ]
                },
                "description": "Remove commitActivityClock from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get confirmUncommitedOnExit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/confirmUncommitedOnExit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "confirmUncommitedOnExit"
                  ]
                },
                "description": "Retrieve confirmUncommitedOnExit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace confirmUncommitedOnExit",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/confirmUncommitedOnExit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "confirmUncommitedOnExit"
                  ]
                },
                "description": "Create or replace confirmUncommitedOnExit on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update confirmUncommitedOnExit",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/confirmUncommitedOnExit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "confirmUncommitedOnExit"
                  ]
                },
                "description": "Partially update confirmUncommitedOnExit on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete confirmUncommitedOnExit",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/confirmUncommitedOnExit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "confirmUncommitedOnExit"
                  ]
                },
                "description": "Remove confirmUncommitedOnExit from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get reconfirmHidden",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/reconfirmHidden",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "reconfirmHidden"
                  ]
                },
                "description": "Retrieve reconfirmHidden from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace reconfirmHidden",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/reconfirmHidden",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "reconfirmHidden"
                  ]
                },
                "description": "Create or replace reconfirmHidden on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update reconfirmHidden",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/reconfirmHidden",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "reconfirmHidden"
                  ]
                },
                "description": "Partially update reconfirmHidden on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete reconfirmHidden",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/reconfirmHidden",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "reconfirmHidden"
                  ]
                },
                "description": "Remove reconfirmHidden from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dequoteHidden",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/dequoteHidden",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "dequoteHidden"
                  ]
                },
                "description": "Retrieve dequoteHidden from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dequoteHidden",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/dequoteHidden",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "dequoteHidden"
                  ]
                },
                "description": "Create or replace dequoteHidden on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dequoteHidden",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/dequoteHidden",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "dequoteHidden"
                  ]
                },
                "description": "Partially update dequoteHidden on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dequoteHidden",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/dequoteHidden",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "dequoteHidden"
                  ]
                },
                "description": "Remove dequoteHidden from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enumKeyInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enumKeyInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enumKeyInfo"
                  ]
                },
                "description": "Retrieve enumKeyInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enumKeyInfo",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enumKeyInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enumKeyInfo"
                  ]
                },
                "description": "Create or replace enumKeyInfo on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enumKeyInfo",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enumKeyInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enumKeyInfo"
                  ]
                },
                "description": "Partially update enumKeyInfo on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enumKeyInfo",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enumKeyInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enumKeyInfo"
                  ]
                },
                "description": "Remove enumKeyInfo from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get columnStats",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/columnStats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "columnStats"
                  ]
                },
                "description": "Retrieve columnStats from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace columnStats",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/columnStats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "columnStats"
                  ]
                },
                "description": "Create or replace columnStats on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update columnStats",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/columnStats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "columnStats"
                  ]
                },
                "description": "Partially update columnStats on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete columnStats",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/columnStats",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "columnStats"
                  ]
                },
                "description": "Remove columnStats from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowAbbrevCmds",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevCmds"
                  ]
                },
                "description": "Retrieve allowAbbrevCmds from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowAbbrevCmds",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevCmds"
                  ]
                },
                "description": "Create or replace allowAbbrevCmds on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowAbbrevCmds",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevCmds"
                  ]
                },
                "description": "Partially update allowAbbrevCmds on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowAbbrevCmds",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevCmds",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevCmds"
                  ]
                },
                "description": "Remove allowAbbrevCmds from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowAbbrevCmdsOnLoad",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevCmdsOnLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevCmdsOnLoad"
                  ]
                },
                "description": "Retrieve allowAbbrevCmdsOnLoad from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowAbbrevCmdsOnLoad",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevCmdsOnLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevCmdsOnLoad"
                  ]
                },
                "description": "Create or replace allowAbbrevCmdsOnLoad on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowAbbrevCmdsOnLoad",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevCmdsOnLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevCmdsOnLoad"
                  ]
                },
                "description": "Partially update allowAbbrevCmdsOnLoad on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowAbbrevCmdsOnLoad",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevCmdsOnLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevCmdsOnLoad"
                  ]
                },
                "description": "Remove allowAbbrevCmdsOnLoad from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowAbbrevKeys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevKeys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevKeys"
                  ]
                },
                "description": "Retrieve allowAbbrevKeys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowAbbrevKeys",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevKeys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevKeys"
                  ]
                },
                "description": "Create or replace allowAbbrevKeys on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowAbbrevKeys",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevKeys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevKeys"
                  ]
                },
                "description": "Partially update allowAbbrevKeys on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowAbbrevKeys",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevKeys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevKeys"
                  ]
                },
                "description": "Remove allowAbbrevKeys from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowAbbrevParamNames",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevParamNames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevParamNames"
                  ]
                },
                "description": "Retrieve allowAbbrevParamNames from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowAbbrevParamNames",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevParamNames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevParamNames"
                  ]
                },
                "description": "Create or replace allowAbbrevParamNames on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowAbbrevParamNames",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevParamNames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevParamNames"
                  ]
                },
                "description": "Partially update allowAbbrevParamNames on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowAbbrevParamNames",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevParamNames",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevParamNames"
                  ]
                },
                "description": "Remove allowAbbrevParamNames from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowAbbrevEnums",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevEnums",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevEnums"
                  ]
                },
                "description": "Retrieve allowAbbrevEnums from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowAbbrevEnums",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevEnums",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevEnums"
                  ]
                },
                "description": "Create or replace allowAbbrevEnums on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowAbbrevEnums",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevEnums",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevEnums"
                  ]
                },
                "description": "Partially update allowAbbrevEnums on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowAbbrevEnums",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowAbbrevEnums",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowAbbrevEnums"
                  ]
                },
                "description": "Remove allowAbbrevEnums from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowCaseInsensitiveEnums",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowCaseInsensitiveEnums",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowCaseInsensitiveEnums"
                  ]
                },
                "description": "Retrieve allowCaseInsensitiveEnums from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowCaseInsensitiveEnums",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowCaseInsensitiveEnums",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowCaseInsensitiveEnums"
                  ]
                },
                "description": "Create or replace allowCaseInsensitiveEnums on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowCaseInsensitiveEnums",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowCaseInsensitiveEnums",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowCaseInsensitiveEnums"
                  ]
                },
                "description": "Partially update allowCaseInsensitiveEnums on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowCaseInsensitiveEnums",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowCaseInsensitiveEnums",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowCaseInsensitiveEnums"
                  ]
                },
                "description": "Remove allowCaseInsensitiveEnums from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get strictRefsOnLoad",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/strictRefsOnLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "strictRefsOnLoad"
                  ]
                },
                "description": "Retrieve strictRefsOnLoad from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace strictRefsOnLoad",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/strictRefsOnLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "strictRefsOnLoad"
                  ]
                },
                "description": "Create or replace strictRefsOnLoad on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update strictRefsOnLoad",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/strictRefsOnLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "strictRefsOnLoad"
                  ]
                },
                "description": "Partially update strictRefsOnLoad on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete strictRefsOnLoad",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/strictRefsOnLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "strictRefsOnLoad"
                  ]
                },
                "description": "Remove strictRefsOnLoad from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get stopLoadOnError",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/stopLoadOnError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "stopLoadOnError"
                  ]
                },
                "description": "Retrieve stopLoadOnError from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace stopLoadOnError",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/stopLoadOnError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "stopLoadOnError"
                  ]
                },
                "description": "Create or replace stopLoadOnError on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update stopLoadOnError",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/stopLoadOnError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "stopLoadOnError"
                  ]
                },
                "description": "Partially update stopLoadOnError on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete stopLoadOnError",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/stopLoadOnError",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "stopLoadOnError"
                  ]
                },
                "description": "Remove stopLoadOnError from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get suppressBurstErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressBurstErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressBurstErrors"
                  ]
                },
                "description": "Retrieve suppressBurstErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace suppressBurstErrors",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressBurstErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressBurstErrors"
                  ]
                },
                "description": "Create or replace suppressBurstErrors on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update suppressBurstErrors",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressBurstErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressBurstErrors"
                  ]
                },
                "description": "Partially update suppressBurstErrors on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete suppressBurstErrors",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/suppressBurstErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "suppressBurstErrors"
                  ]
                },
                "description": "Remove suppressBurstErrors from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allOrNothingLoad",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allOrNothingLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allOrNothingLoad"
                  ]
                },
                "description": "Retrieve allOrNothingLoad from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allOrNothingLoad",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allOrNothingLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allOrNothingLoad"
                  ]
                },
                "description": "Create or replace allOrNothingLoad on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allOrNothingLoad",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allOrNothingLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allOrNothingLoad"
                  ]
                },
                "description": "Partially update allOrNothingLoad on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allOrNothingLoad",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allOrNothingLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allOrNothingLoad"
                  ]
                },
                "description": "Remove allOrNothingLoad from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get autocommitLoad",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/autocommitLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "autocommitLoad"
                  ]
                },
                "description": "Retrieve autocommitLoad from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace autocommitLoad",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/autocommitLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "autocommitLoad"
                  ]
                },
                "description": "Create or replace autocommitLoad on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update autocommitLoad",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/autocommitLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "autocommitLoad"
                  ]
                },
                "description": "Partially update autocommitLoad on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete autocommitLoad",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/autocommitLoad",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "autocommitLoad"
                  ]
                },
                "description": "Remove autocommitLoad from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get autocommitLoadChunkSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/autocommitLoadChunkSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "autocommitLoadChunkSize"
                  ]
                },
                "description": "Retrieve autocommitLoadChunkSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace autocommitLoadChunkSize",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/autocommitLoadChunkSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "autocommitLoadChunkSize"
                  ]
                },
                "description": "Create or replace autocommitLoadChunkSize on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update autocommitLoadChunkSize",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/autocommitLoadChunkSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "autocommitLoadChunkSize"
                  ]
                },
                "description": "Partially update autocommitLoadChunkSize on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete autocommitLoadChunkSize",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/autocommitLoadChunkSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "autocommitLoadChunkSize"
                  ]
                },
                "description": "Remove autocommitLoadChunkSize from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enableLoadMerge",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableLoadMerge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableLoadMerge"
                  ]
                },
                "description": "Retrieve enableLoadMerge from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enableLoadMerge",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableLoadMerge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableLoadMerge"
                  ]
                },
                "description": "Create or replace enableLoadMerge on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enableLoadMerge",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableLoadMerge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableLoadMerge"
                  ]
                },
                "description": "Partially update enableLoadMerge on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enableLoadMerge",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableLoadMerge",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableLoadMerge"
                  ]
                },
                "description": "Remove enableLoadMerge from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get loadActivityClock",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/loadActivityClock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "loadActivityClock"
                  ]
                },
                "description": "Retrieve loadActivityClock from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace loadActivityClock",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/loadActivityClock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "loadActivityClock"
                  ]
                },
                "description": "Create or replace loadActivityClock on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update loadActivityClock",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/loadActivityClock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "loadActivityClock"
                  ]
                },
                "description": "Partially update loadActivityClock on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete loadActivityClock",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/loadActivityClock",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "loadActivityClock"
                  ]
                },
                "description": "Remove loadActivityClock from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get instanceDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/instanceDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "instanceDescription"
                  ]
                },
                "description": "Retrieve instanceDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace instanceDescription",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/instanceDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "instanceDescription"
                  ]
                },
                "description": "Create or replace instanceDescription on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update instanceDescription",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/instanceDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "instanceDescription"
                  ]
                },
                "description": "Partially update instanceDescription on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete instanceDescription",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/instanceDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "instanceDescription"
                  ]
                },
                "description": "Remove instanceDescription from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get addErrorPrefixSuffix",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/addErrorPrefixSuffix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "addErrorPrefixSuffix"
                  ]
                },
                "description": "Retrieve addErrorPrefixSuffix from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace addErrorPrefixSuffix",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/addErrorPrefixSuffix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "addErrorPrefixSuffix"
                  ]
                },
                "description": "Create or replace addErrorPrefixSuffix on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update addErrorPrefixSuffix",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/addErrorPrefixSuffix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "addErrorPrefixSuffix"
                  ]
                },
                "description": "Partially update addErrorPrefixSuffix on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete addErrorPrefixSuffix",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/addErrorPrefixSuffix",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "addErrorPrefixSuffix"
                  ]
                },
                "description": "Remove addErrorPrefixSuffix from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get compListCompact",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/compListCompact",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "compListCompact"
                  ]
                },
                "description": "Retrieve compListCompact from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace compListCompact",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/compListCompact",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "compListCompact"
                  ]
                },
                "description": "Create or replace compListCompact on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update compListCompact",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/compListCompact",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "compListCompact"
                  ]
                },
                "description": "Partially update compListCompact on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete compListCompact",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/compListCompact",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "compListCompact"
                  ]
                },
                "description": "Remove compListCompact from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get completionListLine",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/completionListLine",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "completionListLine"
                  ]
                },
                "description": "Retrieve completionListLine from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace completionListLine",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/completionListLine",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "completionListLine"
                  ]
                },
                "description": "Create or replace completionListLine on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update completionListLine",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/completionListLine",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "completionListLine"
                  ]
                },
                "description": "Partially update completionListLine on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete completionListLine",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/completionListLine",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "completionListLine"
                  ]
                },
                "description": "Remove completionListLine from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get infoOnMatch",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/infoOnMatch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "infoOnMatch"
                  ]
                },
                "description": "Retrieve infoOnMatch from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace infoOnMatch",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/infoOnMatch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "infoOnMatch"
                  ]
                },
                "description": "Create or replace infoOnMatch on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update infoOnMatch",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/infoOnMatch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "infoOnMatch"
                  ]
                },
                "description": "Partially update infoOnMatch on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete infoOnMatch",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/infoOnMatch",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "infoOnMatch"
                  ]
                },
                "description": "Remove infoOnMatch from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get externalActionErrorMsg",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/externalActionErrorMsg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "externalActionErrorMsg"
                  ]
                },
                "description": "Retrieve externalActionErrorMsg from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace externalActionErrorMsg",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/externalActionErrorMsg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "externalActionErrorMsg"
                  ]
                },
                "description": "Create or replace externalActionErrorMsg on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"0\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update externalActionErrorMsg",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/externalActionErrorMsg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "externalActionErrorMsg"
                  ]
                },
                "description": "Partially update externalActionErrorMsg on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"0\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete externalActionErrorMsg",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/externalActionErrorMsg",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "externalActionErrorMsg"
                  ]
                },
                "description": "Remove externalActionErrorMsg from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enableDisplayLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableDisplayLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableDisplayLevel"
                  ]
                },
                "description": "Retrieve enableDisplayLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enableDisplayLevel",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableDisplayLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableDisplayLevel"
                  ]
                },
                "description": "Create or replace enableDisplayLevel on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enableDisplayLevel",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableDisplayLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableDisplayLevel"
                  ]
                },
                "description": "Partially update enableDisplayLevel on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enableDisplayLevel",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableDisplayLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableDisplayLevel"
                  ]
                },
                "description": "Remove enableDisplayLevel from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get defaultDisplayLevel",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/defaultDisplayLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "defaultDisplayLevel"
                  ]
                },
                "description": "Retrieve defaultDisplayLevel from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace defaultDisplayLevel",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/defaultDisplayLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "defaultDisplayLevel"
                  ]
                },
                "description": "Create or replace defaultDisplayLevel on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update defaultDisplayLevel",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/defaultDisplayLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "defaultDisplayLevel"
                  ]
                },
                "description": "Partially update defaultDisplayLevel on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete defaultDisplayLevel",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/defaultDisplayLevel",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "defaultDisplayLevel"
                  ]
                },
                "description": "Remove defaultDisplayLevel from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enableDisplayGroups",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableDisplayGroups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableDisplayGroups"
                  ]
                },
                "description": "Retrieve enableDisplayGroups from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enableDisplayGroups",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableDisplayGroups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableDisplayGroups"
                  ]
                },
                "description": "Create or replace enableDisplayGroups on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enableDisplayGroups",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableDisplayGroups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableDisplayGroups"
                  ]
                },
                "description": "Partially update enableDisplayGroups on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enableDisplayGroups",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableDisplayGroups",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableDisplayGroups"
                  ]
                },
                "description": "Remove enableDisplayGroups from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get unifiedHistory",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/unifiedHistory",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "unifiedHistory"
                  ]
                },
                "description": "Retrieve unifiedHistory from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace unifiedHistory",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/unifiedHistory",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "unifiedHistory"
                  ]
                },
                "description": "Create or replace unifiedHistory on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update unifiedHistory",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/unifiedHistory",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "unifiedHistory"
                  ]
                },
                "description": "Partially update unifiedHistory on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete unifiedHistory",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/unifiedHistory",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "unifiedHistory"
                  ]
                },
                "description": "Remove unifiedHistory from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get modeInfoInAAA",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/modeInfoInAAA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "modeInfoInAAA"
                  ]
                },
                "description": "Retrieve modeInfoInAAA from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace modeInfoInAAA",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/modeInfoInAAA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "modeInfoInAAA"
                  ]
                },
                "description": "Create or replace modeInfoInAAA on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update modeInfoInAAA",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/modeInfoInAAA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "modeInfoInAAA"
                  ]
                },
                "description": "Partially update modeInfoInAAA on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete modeInfoInAAA",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/modeInfoInAAA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "modeInfoInAAA"
                  ]
                },
                "description": "Remove modeInfoInAAA from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cmdAAAForAutowizard",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cmdAAAForAutowizard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cmdAAAForAutowizard"
                  ]
                },
                "description": "Retrieve cmdAAAForAutowizard from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cmdAAAForAutowizard",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cmdAAAForAutowizard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cmdAAAForAutowizard"
                  ]
                },
                "description": "Create or replace cmdAAAForAutowizard on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cmdAAAForAutowizard",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cmdAAAForAutowizard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cmdAAAForAutowizard"
                  ]
                },
                "description": "Partially update cmdAAAForAutowizard on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cmdAAAForAutowizard",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cmdAAAForAutowizard",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cmdAAAForAutowizard"
                  ]
                },
                "description": "Remove cmdAAAForAutowizard from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cStrictAAA",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cStrictAAA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cStrictAAA"
                  ]
                },
                "description": "Retrieve cStrictAAA from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cStrictAAA",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cStrictAAA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cStrictAAA"
                  ]
                },
                "description": "Create or replace cStrictAAA on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cStrictAAA",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cStrictAAA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cStrictAAA"
                  ]
                },
                "description": "Partially update cStrictAAA on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cStrictAAA",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/cStrictAAA",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "cStrictAAA"
                  ]
                },
                "description": "Remove cStrictAAA from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get quoteStyle",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/quoteStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "quoteStyle"
                  ]
                },
                "description": "Retrieve quoteStyle from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace quoteStyle",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/quoteStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "quoteStyle"
                  ]
                },
                "description": "Create or replace quoteStyle on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update quoteStyle",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/quoteStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "quoteStyle"
                  ]
                },
                "description": "Partially update quoteStyle on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete quoteStyle",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/quoteStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "quoteStyle"
                  ]
                },
                "description": "Remove quoteStyle from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get laxBarQuoting",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/laxBarQuoting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "laxBarQuoting"
                  ]
                },
                "description": "Retrieve laxBarQuoting from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace laxBarQuoting",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/laxBarQuoting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "laxBarQuoting"
                  ]
                },
                "description": "Create or replace laxBarQuoting on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update laxBarQuoting",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/laxBarQuoting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "laxBarQuoting"
                  ]
                },
                "description": "Partially update laxBarQuoting on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete laxBarQuoting",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/laxBarQuoting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "laxBarQuoting"
                  ]
                },
                "description": "Remove laxBarQuoting from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expandAliasOnCompletion",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/expandAliasOnCompletion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "expandAliasOnCompletion"
                  ]
                },
                "description": "Retrieve expandAliasOnCompletion from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace expandAliasOnCompletion",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/expandAliasOnCompletion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "expandAliasOnCompletion"
                  ]
                },
                "description": "Create or replace expandAliasOnCompletion on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update expandAliasOnCompletion",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/expandAliasOnCompletion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "expandAliasOnCompletion"
                  ]
                },
                "description": "Partially update expandAliasOnCompletion on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete expandAliasOnCompletion",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/expandAliasOnCompletion",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "expandAliasOnCompletion"
                  ]
                },
                "description": "Remove expandAliasOnCompletion from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get expandAliasEscape",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/expandAliasEscape",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "expandAliasEscape"
                  ]
                },
                "description": "Retrieve expandAliasEscape from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace expandAliasEscape",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/expandAliasEscape",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "expandAliasEscape"
                  ]
                },
                "description": "Create or replace expandAliasEscape on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update expandAliasEscape",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/expandAliasEscape",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "expandAliasEscape"
                  ]
                },
                "description": "Partially update expandAliasEscape on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete expandAliasEscape",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/expandAliasEscape",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "expandAliasEscape"
                  ]
                },
                "description": "Remove expandAliasEscape from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get docWrap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/docWrap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "docWrap"
                  ]
                },
                "description": "Retrieve docWrap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace docWrap",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/docWrap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "docWrap"
                  ]
                },
                "description": "Create or replace docWrap on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update docWrap",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/docWrap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "docWrap"
                  ]
                },
                "description": "Partially update docWrap on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete docWrap",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/docWrap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "docWrap"
                  ]
                },
                "description": "Remove docWrap from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get infoOnTab",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/infoOnTab",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "infoOnTab"
                  ]
                },
                "description": "Retrieve infoOnTab from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace infoOnTab",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/infoOnTab",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "infoOnTab"
                  ]
                },
                "description": "Create or replace infoOnTab on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update infoOnTab",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/infoOnTab",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "infoOnTab"
                  ]
                },
                "description": "Partially update infoOnTab on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete infoOnTab",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/infoOnTab",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "infoOnTab"
                  ]
                },
                "description": "Remove infoOnTab from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get infoOnSpace",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/infoOnSpace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "infoOnSpace"
                  ]
                },
                "description": "Retrieve infoOnSpace from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace infoOnSpace",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/infoOnSpace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "infoOnSpace"
                  ]
                },
                "description": "Create or replace infoOnSpace on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update infoOnSpace",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/infoOnSpace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "infoOnSpace"
                  ]
                },
                "description": "Partially update infoOnSpace on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete infoOnSpace",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/infoOnSpace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "infoOnSpace"
                  ]
                },
                "description": "Remove infoOnSpace from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get newLogout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/newLogout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "newLogout"
                  ]
                },
                "description": "Retrieve newLogout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace newLogout",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/newLogout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "newLogout"
                  ]
                },
                "description": "Create or replace newLogout on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update newLogout",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/newLogout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "newLogout"
                  ]
                },
                "description": "Partially update newLogout on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete newLogout",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/newLogout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "newLogout"
                  ]
                },
                "description": "Remove newLogout from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get newInsert",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/newInsert",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "newInsert"
                  ]
                },
                "description": "Retrieve newInsert from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace newInsert",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/newInsert",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "newInsert"
                  ]
                },
                "description": "Create or replace newInsert on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update newInsert",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/newInsert",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "newInsert"
                  ]
                },
                "description": "Partially update newInsert on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete newInsert",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/newInsert",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "newInsert"
                  ]
                },
                "description": "Remove newInsert from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get messageFormat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/messageFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "messageFormat"
                  ]
                },
                "description": "Retrieve messageFormat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace messageFormat",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/messageFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "messageFormat"
                  ]
                },
                "description": "Create or replace messageFormat on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update messageFormat",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/messageFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "messageFormat"
                  ]
                },
                "description": "Partially update messageFormat on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete messageFormat",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/messageFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "messageFormat"
                  ]
                },
                "description": "Remove messageFormat from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get messageWordWrap",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/messageWordWrap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "messageWordWrap"
                  ]
                },
                "description": "Retrieve messageWordWrap from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace messageWordWrap",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/messageWordWrap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "messageWordWrap"
                  ]
                },
                "description": "Create or replace messageWordWrap on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update messageWordWrap",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/messageWordWrap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "messageWordWrap"
                  ]
                },
                "description": "Partially update messageWordWrap on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete messageWordWrap",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/messageWordWrap",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "messageWordWrap"
                  ]
                },
                "description": "Remove messageWordWrap from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get messageQueueSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/messageQueueSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "messageQueueSize"
                  ]
                },
                "description": "Retrieve messageQueueSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace messageQueueSize",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/messageQueueSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "messageQueueSize"
                  ]
                },
                "description": "Create or replace messageQueueSize on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update messageQueueSize",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/messageQueueSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "messageQueueSize"
                  ]
                },
                "description": "Partially update messageQueueSize on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete messageQueueSize",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/messageQueueSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "messageQueueSize"
                  ]
                },
                "description": "Remove messageQueueSize from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get promptEnumLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/promptEnumLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "promptEnumLimit"
                  ]
                },
                "description": "Retrieve promptEnumLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace promptEnumLimit",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/promptEnumLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "promptEnumLimit"
                  ]
                },
                "description": "Create or replace promptEnumLimit on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "10",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update promptEnumLimit",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/promptEnumLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "promptEnumLimit"
                  ]
                },
                "description": "Partially update promptEnumLimit on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "10",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete promptEnumLimit",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/promptEnumLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "promptEnumLimit"
                  ]
                },
                "description": "Remove promptEnumLimit from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caseInsensitive",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/caseInsensitive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "caseInsensitive"
                  ]
                },
                "description": "Retrieve caseInsensitive from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace caseInsensitive",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/caseInsensitive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "caseInsensitive"
                  ]
                },
                "description": "Create or replace caseInsensitive on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update caseInsensitive",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/caseInsensitive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "caseInsensitive"
                  ]
                },
                "description": "Partially update caseInsensitive on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete caseInsensitive",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/caseInsensitive",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "caseInsensitive"
                  ]
                },
                "description": "Remove caseInsensitive from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get caseInsensitiveKeys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/caseInsensitiveKeys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "caseInsensitiveKeys"
                  ]
                },
                "description": "Retrieve caseInsensitiveKeys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace caseInsensitiveKeys",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/caseInsensitiveKeys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "caseInsensitiveKeys"
                  ]
                },
                "description": "Create or replace caseInsensitiveKeys on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update caseInsensitiveKeys",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/caseInsensitiveKeys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "caseInsensitiveKeys"
                  ]
                },
                "description": "Partially update caseInsensitiveKeys on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete caseInsensitiveKeys",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/caseInsensitiveKeys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "caseInsensitiveKeys"
                  ]
                },
                "description": "Remove caseInsensitiveKeys from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ignoreLeadingWhitespace",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ignoreLeadingWhitespace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ignoreLeadingWhitespace"
                  ]
                },
                "description": "Retrieve ignoreLeadingWhitespace from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ignoreLeadingWhitespace",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ignoreLeadingWhitespace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ignoreLeadingWhitespace"
                  ]
                },
                "description": "Create or replace ignoreLeadingWhitespace on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ignoreLeadingWhitespace",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ignoreLeadingWhitespace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ignoreLeadingWhitespace"
                  ]
                },
                "description": "Partially update ignoreLeadingWhitespace on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ignoreLeadingWhitespace",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/ignoreLeadingWhitespace",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "ignoreLeadingWhitespace"
                  ]
                },
                "description": "Remove ignoreLeadingWhitespace from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get indentTemplates",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/indentTemplates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "indentTemplates"
                  ]
                },
                "description": "Retrieve indentTemplates from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace indentTemplates",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/indentTemplates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "indentTemplates"
                  ]
                },
                "description": "Create or replace indentTemplates on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update indentTemplates",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/indentTemplates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "indentTemplates"
                  ]
                },
                "description": "Partially update indentTemplates on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete indentTemplates",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/indentTemplates",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "indentTemplates"
                  ]
                },
                "description": "Remove indentTemplates from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get wrapInfo",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/wrapInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "wrapInfo"
                  ]
                },
                "description": "Retrieve wrapInfo from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace wrapInfo",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/wrapInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "wrapInfo"
                  ]
                },
                "description": "Create or replace wrapInfo on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update wrapInfo",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/wrapInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "wrapInfo"
                  ]
                },
                "description": "Partially update wrapInfo on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete wrapInfo",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/wrapInfo",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "wrapInfo"
                  ]
                },
                "description": "Remove wrapInfo from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get wrapPrompt",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/wrapPrompt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "wrapPrompt"
                  ]
                },
                "description": "Retrieve wrapPrompt from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace wrapPrompt",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/wrapPrompt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "wrapPrompt"
                  ]
                },
                "description": "Create or replace wrapPrompt on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update wrapPrompt",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/wrapPrompt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "wrapPrompt"
                  ]
                },
                "description": "Partially update wrapPrompt on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete wrapPrompt",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/wrapPrompt",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "wrapPrompt"
                  ]
                },
                "description": "Remove wrapPrompt from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sortShowElems",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/sortShowElems",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "sortShowElems"
                  ]
                },
                "description": "Retrieve sortShowElems from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sortShowElems",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/sortShowElems",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "sortShowElems"
                  ]
                },
                "description": "Create or replace sortShowElems on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sortShowElems",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/sortShowElems",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "sortShowElems"
                  ]
                },
                "description": "Partially update sortShowElems on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sortShowElems",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/sortShowElems",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "sortShowElems"
                  ]
                },
                "description": "Remove sortShowElems from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showMatchBeforePossible",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showMatchBeforePossible",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showMatchBeforePossible"
                  ]
                },
                "description": "Retrieve showMatchBeforePossible from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showMatchBeforePossible",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showMatchBeforePossible",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showMatchBeforePossible"
                  ]
                },
                "description": "Create or replace showMatchBeforePossible on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showMatchBeforePossible",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showMatchBeforePossible",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showMatchBeforePossible"
                  ]
                },
                "description": "Partially update showMatchBeforePossible on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showMatchBeforePossible",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showMatchBeforePossible",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showMatchBeforePossible"
                  ]
                },
                "description": "Remove showMatchBeforePossible from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get possibleCompletionsFormat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/possibleCompletionsFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "possibleCompletionsFormat"
                  ]
                },
                "description": "Retrieve possibleCompletionsFormat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace possibleCompletionsFormat",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/possibleCompletionsFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "possibleCompletionsFormat"
                  ]
                },
                "description": "Create or replace possibleCompletionsFormat on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update possibleCompletionsFormat",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/possibleCompletionsFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "possibleCompletionsFormat"
                  ]
                },
                "description": "Partially update possibleCompletionsFormat on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete possibleCompletionsFormat",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/possibleCompletionsFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "possibleCompletionsFormat"
                  ]
                },
                "description": "Remove possibleCompletionsFormat from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showActionCompletions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showActionCompletions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showActionCompletions"
                  ]
                },
                "description": "Retrieve showActionCompletions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showActionCompletions",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showActionCompletions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showActionCompletions"
                  ]
                },
                "description": "Create or replace showActionCompletions on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showActionCompletions",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showActionCompletions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showActionCompletions"
                  ]
                },
                "description": "Partially update showActionCompletions on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showActionCompletions",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showActionCompletions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showActionCompletions"
                  ]
                },
                "description": "Remove showActionCompletions from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get actionCompletionsFormat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/actionCompletionsFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "actionCompletionsFormat"
                  ]
                },
                "description": "Retrieve actionCompletionsFormat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace actionCompletionsFormat",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/actionCompletionsFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "actionCompletionsFormat"
                  ]
                },
                "description": "Create or replace actionCompletionsFormat on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update actionCompletionsFormat",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/actionCompletionsFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "actionCompletionsFormat"
                  ]
                },
                "description": "Partially update actionCompletionsFormat on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete actionCompletionsFormat",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/actionCompletionsFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "actionCompletionsFormat"
                  ]
                },
                "description": "Remove actionCompletionsFormat from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matchCompletionsFormat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/matchCompletionsFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "matchCompletionsFormat"
                  ]
                },
                "description": "Retrieve matchCompletionsFormat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace matchCompletionsFormat",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/matchCompletionsFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "matchCompletionsFormat"
                  ]
                },
                "description": "Create or replace matchCompletionsFormat on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update matchCompletionsFormat",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/matchCompletionsFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "matchCompletionsFormat"
                  ]
                },
                "description": "Partially update matchCompletionsFormat on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete matchCompletionsFormat",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/matchCompletionsFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "matchCompletionsFormat"
                  ]
                },
                "description": "Remove matchCompletionsFormat from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get noMatchCompletionsFormat",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/noMatchCompletionsFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "noMatchCompletionsFormat"
                  ]
                },
                "description": "Retrieve noMatchCompletionsFormat from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace noMatchCompletionsFormat",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/noMatchCompletionsFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "noMatchCompletionsFormat"
                  ]
                },
                "description": "Create or replace noMatchCompletionsFormat on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update noMatchCompletionsFormat",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/noMatchCompletionsFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "noMatchCompletionsFormat"
                  ]
                },
                "description": "Partially update noMatchCompletionsFormat on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete noMatchCompletionsFormat",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/noMatchCompletionsFormat",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "noMatchCompletionsFormat"
                  ]
                },
                "description": "Remove noMatchCompletionsFormat from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matchCompletionsSearchLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/matchCompletionsSearchLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "matchCompletionsSearchLimit"
                  ]
                },
                "description": "Retrieve matchCompletionsSearchLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace matchCompletionsSearchLimit",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/matchCompletionsSearchLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "matchCompletionsSearchLimit"
                  ]
                },
                "description": "Create or replace matchCompletionsSearchLimit on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update matchCompletionsSearchLimit",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/matchCompletionsSearchLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "matchCompletionsSearchLimit"
                  ]
                },
                "description": "Partially update matchCompletionsSearchLimit on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete matchCompletionsSearchLimit",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/matchCompletionsSearchLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "matchCompletionsSearchLimit"
                  ]
                },
                "description": "Remove matchCompletionsSearchLimit from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showDescription",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showDescription"
                  ]
                },
                "description": "Retrieve showDescription from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showDescription",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showDescription"
                  ]
                },
                "description": "Create or replace showDescription on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showDescription",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showDescription"
                  ]
                },
                "description": "Partially update showDescription on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showDescription",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/showDescription",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "showDescription"
                  ]
                },
                "description": "Remove showDescription from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get explicitSetCreate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/explicitSetCreate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "explicitSetCreate"
                  ]
                },
                "description": "Retrieve explicitSetCreate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace explicitSetCreate",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/explicitSetCreate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "explicitSetCreate"
                  ]
                },
                "description": "Create or replace explicitSetCreate on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update explicitSetCreate",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/explicitSetCreate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "explicitSetCreate"
                  ]
                },
                "description": "Partially update explicitSetCreate on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete explicitSetCreate",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/explicitSetCreate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "explicitSetCreate"
                  ]
                },
                "description": "Remove explicitSetCreate from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get templateFilter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/templateFilter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "templateFilter"
                  ]
                },
                "description": "Retrieve templateFilter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace templateFilter",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/templateFilter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "templateFilter"
                  ]
                },
                "description": "Create or replace templateFilter on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"callback\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update templateFilter",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/templateFilter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "templateFilter"
                  ]
                },
                "description": "Partially update templateFilter on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"callback\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete templateFilter",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/templateFilter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "templateFilter"
                  ]
                },
                "description": "Remove templateFilter from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get templateFilter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/templateFilter={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "templateFilter=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve templateFilter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace templateFilter",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/templateFilter={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "templateFilter=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace templateFilter on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"callback\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update templateFilter",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/templateFilter={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "templateFilter=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update templateFilter on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"callback\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete templateFilter",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/templateFilter={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "templateFilter=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove templateFilter from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get name",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/templateFilter/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "templateFilter",
                    "name"
                  ]
                },
                "description": "Retrieve name from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace name",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/templateFilter/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "templateFilter",
                    "name"
                  ]
                },
                "description": "Create or replace name on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update name",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/templateFilter/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "templateFilter",
                    "name"
                  ]
                },
                "description": "Partially update name on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete name",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/templateFilter/name",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "templateFilter",
                    "name"
                  ]
                },
                "description": "Remove name from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get callback",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/templateFilter/callback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "templateFilter",
                    "callback"
                  ]
                },
                "description": "Retrieve callback from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace callback",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/templateFilter/callback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "templateFilter",
                    "callback"
                  ]
                },
                "description": "Create or replace callback on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update callback",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/templateFilter/callback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "templateFilter",
                    "callback"
                  ]
                },
                "description": "Partially update callback on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete callback",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/templateFilter/callback",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "templateFilter",
                    "callback"
                  ]
                },
                "description": "Remove callback from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get escapeBackslash",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/escapeBackslash",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "escapeBackslash"
                  ]
                },
                "description": "Retrieve escapeBackslash from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace escapeBackslash",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/escapeBackslash",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "escapeBackslash"
                  ]
                },
                "description": "Create or replace escapeBackslash on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update escapeBackslash",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/escapeBackslash",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "escapeBackslash"
                  ]
                },
                "description": "Partially update escapeBackslash on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete escapeBackslash",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/escapeBackslash",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "escapeBackslash"
                  ]
                },
                "description": "Remove escapeBackslash from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get preserveSemicolon",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/preserveSemicolon",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "preserveSemicolon"
                  ]
                },
                "description": "Retrieve preserveSemicolon from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace preserveSemicolon",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/preserveSemicolon",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "preserveSemicolon"
                  ]
                },
                "description": "Create or replace preserveSemicolon on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update preserveSemicolon",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/preserveSemicolon",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "preserveSemicolon"
                  ]
                },
                "description": "Partially update preserveSemicolon on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete preserveSemicolon",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/preserveSemicolon",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "preserveSemicolon"
                  ]
                },
                "description": "Remove preserveSemicolon from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get defaultLeafListStyle",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/defaultLeafListStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "defaultLeafListStyle"
                  ]
                },
                "description": "Retrieve defaultLeafListStyle from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace defaultLeafListStyle",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/defaultLeafListStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "defaultLeafListStyle"
                  ]
                },
                "description": "Create or replace defaultLeafListStyle on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"item-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update defaultLeafListStyle",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/defaultLeafListStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "defaultLeafListStyle"
                  ]
                },
                "description": "Partially update defaultLeafListStyle on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"item-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete defaultLeafListStyle",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/defaultLeafListStyle",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "defaultLeafListStyle"
                  ]
                },
                "description": "Remove defaultLeafListStyle from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get bypassAllowAbbrevKeys",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/bypassAllowAbbrevKeys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "bypassAllowAbbrevKeys"
                  ]
                },
                "description": "Retrieve bypassAllowAbbrevKeys from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace bypassAllowAbbrevKeys",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/bypassAllowAbbrevKeys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "bypassAllowAbbrevKeys"
                  ]
                },
                "description": "Create or replace bypassAllowAbbrevKeys on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update bypassAllowAbbrevKeys",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/bypassAllowAbbrevKeys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "bypassAllowAbbrevKeys"
                  ]
                },
                "description": "Partially update bypassAllowAbbrevKeys on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete bypassAllowAbbrevKeys",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/bypassAllowAbbrevKeys",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "bypassAllowAbbrevKeys"
                  ]
                },
                "description": "Remove bypassAllowAbbrevKeys from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get jEnableLoadMergeLeafList",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jEnableLoadMergeLeafList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jEnableLoadMergeLeafList"
                  ]
                },
                "description": "Retrieve jEnableLoadMergeLeafList from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace jEnableLoadMergeLeafList",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jEnableLoadMergeLeafList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jEnableLoadMergeLeafList"
                  ]
                },
                "description": "Create or replace jEnableLoadMergeLeafList on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update jEnableLoadMergeLeafList",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jEnableLoadMergeLeafList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jEnableLoadMergeLeafList"
                  ]
                },
                "description": "Partially update jEnableLoadMergeLeafList on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete jEnableLoadMergeLeafList",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/jEnableLoadMergeLeafList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "jEnableLoadMergeLeafList"
                  ]
                },
                "description": "Remove jEnableLoadMergeLeafList from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enableLoadMergeLeafList",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableLoadMergeLeafList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableLoadMergeLeafList"
                  ]
                },
                "description": "Retrieve enableLoadMergeLeafList from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enableLoadMergeLeafList",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableLoadMergeLeafList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableLoadMergeLeafList"
                  ]
                },
                "description": "Create or replace enableLoadMergeLeafList on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enableLoadMergeLeafList",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableLoadMergeLeafList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableLoadMergeLeafList"
                  ]
                },
                "description": "Partially update enableLoadMergeLeafList on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enableLoadMergeLeafList",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableLoadMergeLeafList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableLoadMergeLeafList"
                  ]
                },
                "description": "Remove enableLoadMergeLeafList from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enableCliCache",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableCliCache",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableCliCache"
                  ]
                },
                "description": "Retrieve enableCliCache from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enableCliCache",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableCliCache",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableCliCache"
                  ]
                },
                "description": "Create or replace enableCliCache on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enableCliCache",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableCliCache",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableCliCache"
                  ]
                },
                "description": "Partially update enableCliCache on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enableCliCache",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/enableCliCache",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "enableCliCache"
                  ]
                },
                "description": "Remove enableCliCache from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nmda",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/nmda",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "nmda"
                  ]
                },
                "description": "Retrieve nmda from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace nmda",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/nmda",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "nmda"
                  ]
                },
                "description": "Create or replace nmda on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"showOperationalState\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update nmda",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/nmda",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "nmda"
                  ]
                },
                "description": "Partially update nmda on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"showOperationalState\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete nmda",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/nmda",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "nmda"
                  ]
                },
                "description": "Remove nmda from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showOperationalState",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/nmda/showOperationalState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "nmda",
                    "showOperationalState"
                  ]
                },
                "description": "Retrieve showOperationalState from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showOperationalState",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/nmda/showOperationalState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "nmda",
                    "showOperationalState"
                  ]
                },
                "description": "Create or replace showOperationalState on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showOperationalState",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/nmda/showOperationalState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "nmda",
                    "showOperationalState"
                  ]
                },
                "description": "Partially update showOperationalState on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showOperationalState",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/nmda/showOperationalState",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "nmda",
                    "showOperationalState"
                  ]
                },
                "description": "Remove showOperationalState from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get turboParser",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/turboParser",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "turboParser"
                  ]
                },
                "description": "Retrieve turboParser from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace turboParser",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/turboParser",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "turboParser"
                  ]
                },
                "description": "Create or replace turboParser on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update turboParser",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/turboParser",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "turboParser"
                  ]
                },
                "description": "Partially update turboParser on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete turboParser",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/turboParser",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "turboParser"
                  ]
                },
                "description": "Remove turboParser from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowBracketsInNoLeafList",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowBracketsInNoLeafList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowBracketsInNoLeafList"
                  ]
                },
                "description": "Retrieve allowBracketsInNoLeafList from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowBracketsInNoLeafList",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowBracketsInNoLeafList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowBracketsInNoLeafList"
                  ]
                },
                "description": "Create or replace allowBracketsInNoLeafList on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowBracketsInNoLeafList",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowBracketsInNoLeafList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowBracketsInNoLeafList"
                  ]
                },
                "description": "Partially update allowBracketsInNoLeafList on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowBracketsInNoLeafList",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/cli/allowBracketsInNoLeafList",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "cli",
                    "allowBracketsInNoLeafList"
                  ]
                },
                "description": "Remove allowBracketsInNoLeafList from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get webui",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui"
                  ]
                },
                "description": "Retrieve webui from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace webui",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui"
                  ]
                },
                "description": "Create or replace webui on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customHeaders\": {\n    \"header\": [\n      {\n        \"name\": {},\n        \"value\": {}\n      }\n    ]\n  },\n  \"xFrameOptions\": \"configured-value\",\n  \"xContentTypeOptions\": \"configured-value\",\n  \"xXssProtection\": \"configured-value\",\n  \"strictTransportSecurity\": \"https://10.1.1.1/restconf\",\n  \"contentSecurityPolicy\": \"https://10.1.1.1/restconf\",\n  \"crossOriginEmbedderPolicy\": \"configured-value\",\n  \"crossOriginOpenerPolicy\": \"configured-value\",\n  \"wasmScriptPolicyPattern\": \"configured-value\",\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update webui",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui"
                  ]
                },
                "description": "Partially update webui on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"customHeaders\": {\n    \"header\": [\n      {\n        \"name\": {},\n        \"value\": {}\n      }\n    ]\n  },\n  \"xFrameOptions\": \"configured-value\",\n  \"xContentTypeOptions\": \"configured-value\",\n  \"xXssProtection\": \"configured-value\",\n  \"strictTransportSecurity\": \"https://10.1.1.1/restconf\",\n  \"contentSecurityPolicy\": \"https://10.1.1.1/restconf\",\n  \"crossOriginEmbedderPolicy\": \"configured-value\",\n  \"crossOriginOpenerPolicy\": \"configured-value\",\n  \"wasmScriptPolicyPattern\": \"configured-value\",\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete webui",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui"
                  ]
                },
                "description": "Remove webui from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get customHeaders",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/customHeaders",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "customHeaders"
                  ]
                },
                "description": "Retrieve customHeaders from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace customHeaders",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/customHeaders",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "customHeaders"
                  ]
                },
                "description": "Create or replace customHeaders on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"header\": [\n    {\n      \"name\": \"example-1\",\n      \"value\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update customHeaders",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/customHeaders",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "customHeaders"
                  ]
                },
                "description": "Partially update customHeaders on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"header\": [\n    {\n      \"name\": \"example-1\",\n      \"value\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete customHeaders",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/customHeaders",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "customHeaders"
                  ]
                },
                "description": "Remove customHeaders from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get header",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/customHeaders/header",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "customHeaders",
                    "header"
                  ]
                },
                "description": "Retrieve header from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace header",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/customHeaders/header",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "customHeaders",
                    "header"
                  ]
                },
                "description": "Create or replace header on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"value\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update header",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/customHeaders/header",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "customHeaders",
                    "header"
                  ]
                },
                "description": "Partially update header on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"value\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete header",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/customHeaders/header",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "customHeaders",
                    "header"
                  ]
                },
                "description": "Remove header from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get header",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/customHeaders/header={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "customHeaders",
                    "header=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve header from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace header",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/customHeaders/header={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "customHeaders",
                    "header=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace header on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"value\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update header",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/customHeaders/header={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "customHeaders",
                    "header=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update header on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"value\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete header",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/customHeaders/header={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "customHeaders",
                    "header=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove header from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get xFrameOptions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/xFrameOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "xFrameOptions"
                  ]
                },
                "description": "Retrieve xFrameOptions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace xFrameOptions",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/xFrameOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "xFrameOptions"
                  ]
                },
                "description": "Create or replace xFrameOptions on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update xFrameOptions",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/xFrameOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "xFrameOptions"
                  ]
                },
                "description": "Partially update xFrameOptions on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete xFrameOptions",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/xFrameOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "xFrameOptions"
                  ]
                },
                "description": "Remove xFrameOptions from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get xContentTypeOptions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/xContentTypeOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "xContentTypeOptions"
                  ]
                },
                "description": "Retrieve xContentTypeOptions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace xContentTypeOptions",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/xContentTypeOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "xContentTypeOptions"
                  ]
                },
                "description": "Create or replace xContentTypeOptions on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update xContentTypeOptions",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/xContentTypeOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "xContentTypeOptions"
                  ]
                },
                "description": "Partially update xContentTypeOptions on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete xContentTypeOptions",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/xContentTypeOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "xContentTypeOptions"
                  ]
                },
                "description": "Remove xContentTypeOptions from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get xXssProtection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/xXssProtection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "xXssProtection"
                  ]
                },
                "description": "Retrieve xXssProtection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace xXssProtection",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/xXssProtection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "xXssProtection"
                  ]
                },
                "description": "Create or replace xXssProtection on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update xXssProtection",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/xXssProtection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "xXssProtection"
                  ]
                },
                "description": "Partially update xXssProtection on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete xXssProtection",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/xXssProtection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "xXssProtection"
                  ]
                },
                "description": "Remove xXssProtection from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get strictTransportSecurity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/strictTransportSecurity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "strictTransportSecurity"
                  ]
                },
                "description": "Retrieve strictTransportSecurity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace strictTransportSecurity",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/strictTransportSecurity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "strictTransportSecurity"
                  ]
                },
                "description": "Create or replace strictTransportSecurity on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update strictTransportSecurity",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/strictTransportSecurity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "strictTransportSecurity"
                  ]
                },
                "description": "Partially update strictTransportSecurity on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete strictTransportSecurity",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/strictTransportSecurity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "strictTransportSecurity"
                  ]
                },
                "description": "Remove strictTransportSecurity from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get contentSecurityPolicy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/contentSecurityPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "contentSecurityPolicy"
                  ]
                },
                "description": "Retrieve contentSecurityPolicy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace contentSecurityPolicy",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/contentSecurityPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "contentSecurityPolicy"
                  ]
                },
                "description": "Create or replace contentSecurityPolicy on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update contentSecurityPolicy",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/contentSecurityPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "contentSecurityPolicy"
                  ]
                },
                "description": "Partially update contentSecurityPolicy on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete contentSecurityPolicy",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/contentSecurityPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "contentSecurityPolicy"
                  ]
                },
                "description": "Remove contentSecurityPolicy from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get crossOriginEmbedderPolicy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/crossOriginEmbedderPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "crossOriginEmbedderPolicy"
                  ]
                },
                "description": "Retrieve crossOriginEmbedderPolicy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace crossOriginEmbedderPolicy",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/crossOriginEmbedderPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "crossOriginEmbedderPolicy"
                  ]
                },
                "description": "Create or replace crossOriginEmbedderPolicy on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update crossOriginEmbedderPolicy",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/crossOriginEmbedderPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "crossOriginEmbedderPolicy"
                  ]
                },
                "description": "Partially update crossOriginEmbedderPolicy on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete crossOriginEmbedderPolicy",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/crossOriginEmbedderPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "crossOriginEmbedderPolicy"
                  ]
                },
                "description": "Remove crossOriginEmbedderPolicy from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get crossOriginOpenerPolicy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/crossOriginOpenerPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "crossOriginOpenerPolicy"
                  ]
                },
                "description": "Retrieve crossOriginOpenerPolicy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace crossOriginOpenerPolicy",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/crossOriginOpenerPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "crossOriginOpenerPolicy"
                  ]
                },
                "description": "Create or replace crossOriginOpenerPolicy on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update crossOriginOpenerPolicy",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/crossOriginOpenerPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "crossOriginOpenerPolicy"
                  ]
                },
                "description": "Partially update crossOriginOpenerPolicy on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete crossOriginOpenerPolicy",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/crossOriginOpenerPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "crossOriginOpenerPolicy"
                  ]
                },
                "description": "Remove crossOriginOpenerPolicy from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get wasmScriptPolicyPattern",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/wasmScriptPolicyPattern",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "wasmScriptPolicyPattern"
                  ]
                },
                "description": "Retrieve wasmScriptPolicyPattern from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace wasmScriptPolicyPattern",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/wasmScriptPolicyPattern",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "wasmScriptPolicyPattern"
                  ]
                },
                "description": "Create or replace wasmScriptPolicyPattern on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update wasmScriptPolicyPattern",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/wasmScriptPolicyPattern",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "wasmScriptPolicyPattern"
                  ]
                },
                "description": "Partially update wasmScriptPolicyPattern on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete wasmScriptPolicyPattern",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/wasmScriptPolicyPattern",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "wasmScriptPolicyPattern"
                  ]
                },
                "description": "Remove wasmScriptPolicyPattern from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get serverName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/serverName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "serverName"
                  ]
                },
                "description": "Retrieve serverName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace serverName",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/serverName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "serverName"
                  ]
                },
                "description": "Create or replace serverName on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update serverName",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/serverName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "serverName"
                  ]
                },
                "description": "Partially update serverName on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete serverName",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/serverName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "serverName"
                  ]
                },
                "description": "Remove serverName from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get matchHostName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/matchHostName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "matchHostName"
                  ]
                },
                "description": "Retrieve matchHostName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace matchHostName",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/matchHostName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "matchHostName"
                  ]
                },
                "description": "Create or replace matchHostName on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update matchHostName",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/matchHostName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "matchHostName"
                  ]
                },
                "description": "Partially update matchHostName on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete matchHostName",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/matchHostName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "matchHostName"
                  ]
                },
                "description": "Remove matchHostName from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cacheRefreshSecs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cacheRefreshSecs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cacheRefreshSecs"
                  ]
                },
                "description": "Retrieve cacheRefreshSecs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cacheRefreshSecs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cacheRefreshSecs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cacheRefreshSecs"
                  ]
                },
                "description": "Create or replace cacheRefreshSecs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cacheRefreshSecs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cacheRefreshSecs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cacheRefreshSecs"
                  ]
                },
                "description": "Partially update cacheRefreshSecs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cacheRefreshSecs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cacheRefreshSecs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cacheRefreshSecs"
                  ]
                },
                "description": "Remove cacheRefreshSecs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxRefEntries",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/maxRefEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "maxRefEntries"
                  ]
                },
                "description": "Retrieve maxRefEntries from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxRefEntries",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/maxRefEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "maxRefEntries"
                  ]
                },
                "description": "Create or replace maxRefEntries on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxRefEntries",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/maxRefEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "maxRefEntries"
                  ]
                },
                "description": "Partially update maxRefEntries on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxRefEntries",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/maxRefEntries",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "maxRefEntries"
                  ]
                },
                "description": "Remove maxRefEntries from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get docroot",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/docroot",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "docroot"
                  ]
                },
                "description": "Retrieve docroot from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace docroot",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/docroot",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "docroot"
                  ]
                },
                "description": "Create or replace docroot on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update docroot",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/docroot",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "docroot"
                  ]
                },
                "description": "Partially update docroot on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete docroot",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/docroot",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "docroot"
                  ]
                },
                "description": "Remove docroot from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get webuiIndexUrl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/webuiIndexUrl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "webuiIndexUrl"
                  ]
                },
                "description": "Retrieve webuiIndexUrl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace webuiIndexUrl",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/webuiIndexUrl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "webuiIndexUrl"
                  ]
                },
                "description": "Create or replace webuiIndexUrl on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update webuiIndexUrl",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/webuiIndexUrl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "webuiIndexUrl"
                  ]
                },
                "description": "Partially update webuiIndexUrl on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete webuiIndexUrl",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/webuiIndexUrl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "webuiIndexUrl"
                  ]
                },
                "description": "Remove webuiIndexUrl from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get loginDir",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/loginDir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "loginDir"
                  ]
                },
                "description": "Retrieve loginDir from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace loginDir",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/loginDir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "loginDir"
                  ]
                },
                "description": "Create or replace loginDir on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update loginDir",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/loginDir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "loginDir"
                  ]
                },
                "description": "Partially update loginDir on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete loginDir",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/loginDir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "loginDir"
                  ]
                },
                "description": "Remove loginDir from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get customDir",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/customDir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "customDir"
                  ]
                },
                "description": "Retrieve customDir from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace customDir",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/customDir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "customDir"
                  ]
                },
                "description": "Create or replace customDir on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update customDir",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/customDir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "customDir"
                  ]
                },
                "description": "Partially update customDir on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete customDir",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/customDir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "customDir"
                  ]
                },
                "description": "Remove customDir from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get disableAuth",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/disableAuth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "disableAuth"
                  ]
                },
                "description": "Retrieve disableAuth from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace disableAuth",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/disableAuth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "disableAuth"
                  ]
                },
                "description": "Create or replace disableAuth on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dir\": [\n    \"configured-value\"\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update disableAuth",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/disableAuth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "disableAuth"
                  ]
                },
                "description": "Partially update disableAuth on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"dir\": [\n    \"configured-value\"\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete disableAuth",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/disableAuth",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "disableAuth"
                  ]
                },
                "description": "Remove disableAuth from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dir",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/disableAuth/dir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "disableAuth",
                    "dir"
                  ]
                },
                "description": "Retrieve dir from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dir",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/disableAuth/dir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "disableAuth",
                    "dir"
                  ]
                },
                "description": "Create or replace dir on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dir",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/disableAuth/dir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "disableAuth",
                    "dir"
                  ]
                },
                "description": "Partially update dir on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dir",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/disableAuth/dir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "disableAuth",
                    "dir"
                  ]
                },
                "description": "Remove dir from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get allowSymlinks",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/allowSymlinks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "allowSymlinks"
                  ]
                },
                "description": "Retrieve allowSymlinks from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace allowSymlinks",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/allowSymlinks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "allowSymlinks"
                  ]
                },
                "description": "Create or replace allowSymlinks on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update allowSymlinks",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/allowSymlinks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "allowSymlinks"
                  ]
                },
                "description": "Partially update allowSymlinks on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete allowSymlinks",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/allowSymlinks",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "allowSymlinks"
                  ]
                },
                "description": "Remove allowSymlinks from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get transport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "transport"
                  ]
                },
                "description": "Retrieve transport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace transport",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "transport"
                  ]
                },
                "description": "Create or replace transport on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"tcp\": {\n    \"enabled\": true,\n    \"disableNonAuthRedirect\": true,\n    \"redirect\": \"configured-value\",\n    \"ip\": \"10.1.1.1\",\n    \"port\": \"443\",\n    \"keepalive\": true,\n    \"keepaliveTimeout\": 1,\n    \"netns\": \"configured-value\",\n    \"vrf\": \"default\",\n    \"extraIpPorts\": [\n      \"configured-value\"\n    ]\n  },\n  \"ssl\": {\n    \"enabled\": true,\n    \"disableNonAuthRedirect\": true,\n    \"redirect\": \"configured-value\",\n    \"ip\": \"10.1.1.1\",\n    \"port\": \"443\",\n    \"keepalive\": true,\n    \"keepaliveTimeout\": 1,\n    \"netns\": \"configured-value\",\n    \"vrf\": \"default\",\n    \"extraIpPorts\": [\n      \"configured-value\"\n    ]\n  },\n  \"unauthenticatedMessageLimit\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update transport",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "transport"
                  ]
                },
                "description": "Partially update transport on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"tcp\": {\n    \"enabled\": true,\n    \"disableNonAuthRedirect\": true,\n    \"redirect\": \"configured-value\",\n    \"ip\": \"10.1.1.1\",\n    \"port\": \"443\",\n    \"keepalive\": true,\n    \"keepaliveTimeout\": 1,\n    \"netns\": \"configured-value\",\n    \"vrf\": \"default\",\n    \"extraIpPorts\": [\n      \"configured-value\"\n    ]\n  },\n  \"ssl\": {\n    \"enabled\": true,\n    \"disableNonAuthRedirect\": true,\n    \"redirect\": \"configured-value\",\n    \"ip\": \"10.1.1.1\",\n    \"port\": \"443\",\n    \"keepalive\": true,\n    \"keepaliveTimeout\": 1,\n    \"netns\": \"configured-value\",\n    \"vrf\": \"default\",\n    \"extraIpPorts\": [\n      \"configured-value\"\n    ]\n  },\n  \"unauthenticatedMessageLimit\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete transport",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "transport"
                  ]
                },
                "description": "Remove transport from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/transport/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "transport",
                    "tcp"
                  ]
                },
                "description": "Retrieve tcp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tcp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/transport/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "transport",
                    "tcp"
                  ]
                },
                "description": "Create or replace tcp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"disableNonAuthRedirect\": true,\n  \"redirect\": \"configured-value\",\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"keepalive\": true,\n  \"keepaliveTimeout\": 1,\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"extraIpPorts\": [\n    \"configured-value\"\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tcp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/transport/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "transport",
                    "tcp"
                  ]
                },
                "description": "Partially update tcp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"disableNonAuthRedirect\": true,\n  \"redirect\": \"configured-value\",\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"keepalive\": true,\n  \"keepaliveTimeout\": 1,\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"extraIpPorts\": [\n    \"configured-value\"\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tcp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/transport/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "transport",
                    "tcp"
                  ]
                },
                "description": "Remove tcp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ssl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/transport/ssl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "transport",
                    "ssl"
                  ]
                },
                "description": "Retrieve ssl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ssl",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/transport/ssl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "transport",
                    "ssl"
                  ]
                },
                "description": "Create or replace ssl on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"disableNonAuthRedirect\": true,\n  \"redirect\": \"configured-value\",\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"keepalive\": true,\n  \"keepaliveTimeout\": 1,\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"extraIpPorts\": [\n    \"configured-value\"\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ssl",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/transport/ssl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "transport",
                    "ssl"
                  ]
                },
                "description": "Partially update ssl on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"disableNonAuthRedirect\": true,\n  \"redirect\": \"configured-value\",\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"keepalive\": true,\n  \"keepaliveTimeout\": 1,\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"extraIpPorts\": [\n    \"configured-value\"\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ssl",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/transport/ssl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "transport",
                    "ssl"
                  ]
                },
                "description": "Remove ssl from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get unauthenticatedMessageLimit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/transport/unauthenticatedMessageLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "transport",
                    "unauthenticatedMessageLimit"
                  ]
                },
                "description": "Retrieve unauthenticatedMessageLimit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace unauthenticatedMessageLimit",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/transport/unauthenticatedMessageLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "transport",
                    "unauthenticatedMessageLimit"
                  ]
                },
                "description": "Create or replace unauthenticatedMessageLimit on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update unauthenticatedMessageLimit",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/transport/unauthenticatedMessageLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "transport",
                    "unauthenticatedMessageLimit"
                  ]
                },
                "description": "Partially update unauthenticatedMessageLimit on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete unauthenticatedMessageLimit",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/transport/unauthenticatedMessageLimit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "transport",
                    "unauthenticatedMessageLimit"
                  ]
                },
                "description": "Remove unauthenticatedMessageLimit from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cgi",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi"
                  ]
                },
                "description": "Retrieve cgi from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cgi",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi"
                  ]
                },
                "description": "Create or replace cgi on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"dir\": \"configured-value\",\n  \"requestFilter\": \"configured-value\",\n  \"maxRequestLength\": 1,\n  \"php\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cgi",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi"
                  ]
                },
                "description": "Partially update cgi on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"dir\": \"configured-value\",\n  \"requestFilter\": \"configured-value\",\n  \"maxRequestLength\": 1,\n  \"php\": {\n    \"enabled\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cgi",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi"
                  ]
                },
                "description": "Remove cgi from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dir",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/dir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "dir"
                  ]
                },
                "description": "Retrieve dir from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dir",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/dir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "dir"
                  ]
                },
                "description": "Create or replace dir on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dir",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/dir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "dir"
                  ]
                },
                "description": "Partially update dir on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dir",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/dir",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "dir"
                  ]
                },
                "description": "Remove dir from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get requestFilter",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/requestFilter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "requestFilter"
                  ]
                },
                "description": "Retrieve requestFilter from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace requestFilter",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/requestFilter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "requestFilter"
                  ]
                },
                "description": "Create or replace requestFilter on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update requestFilter",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/requestFilter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "requestFilter"
                  ]
                },
                "description": "Partially update requestFilter on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete requestFilter",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/requestFilter",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "requestFilter"
                  ]
                },
                "description": "Remove requestFilter from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxRequestLength",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/maxRequestLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "maxRequestLength"
                  ]
                },
                "description": "Retrieve maxRequestLength from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxRequestLength",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/maxRequestLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "maxRequestLength"
                  ]
                },
                "description": "Create or replace maxRequestLength on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxRequestLength",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/maxRequestLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "maxRequestLength"
                  ]
                },
                "description": "Partially update maxRequestLength on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxRequestLength",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/maxRequestLength",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "maxRequestLength"
                  ]
                },
                "description": "Remove maxRequestLength from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get php",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/php",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "php"
                  ]
                },
                "description": "Retrieve php from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace php",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/php",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "php"
                  ]
                },
                "description": "Create or replace php on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update php",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/php",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "php"
                  ]
                },
                "description": "Partially update php on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete php",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/cgi/php",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "cgi",
                    "php"
                  ]
                },
                "description": "Remove php from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get idleTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/idleTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "idleTimeout"
                  ]
                },
                "description": "Retrieve idleTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace idleTimeout",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/idleTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "idleTimeout"
                  ]
                },
                "description": "Create or replace idleTimeout on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update idleTimeout",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/idleTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "idleTimeout"
                  ]
                },
                "description": "Partially update idleTimeout on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete idleTimeout",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/idleTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "idleTimeout"
                  ]
                },
                "description": "Remove idleTimeout from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get absoluteTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/absoluteTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "absoluteTimeout"
                  ]
                },
                "description": "Retrieve absoluteTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace absoluteTimeout",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/absoluteTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "absoluteTimeout"
                  ]
                },
                "description": "Create or replace absoluteTimeout on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update absoluteTimeout",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/absoluteTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "absoluteTimeout"
                  ]
                },
                "description": "Partially update absoluteTimeout on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete absoluteTimeout",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/absoluteTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "absoluteTimeout"
                  ]
                },
                "description": "Remove absoluteTimeout from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rateLimiting",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/rateLimiting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "rateLimiting"
                  ]
                },
                "description": "Retrieve rateLimiting from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rateLimiting",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/rateLimiting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "rateLimiting"
                  ]
                },
                "description": "Create or replace rateLimiting on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rateLimiting",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/rateLimiting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "rateLimiting"
                  ]
                },
                "description": "Partially update rateLimiting on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rateLimiting",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/rateLimiting",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "rateLimiting"
                  ]
                },
                "description": "Remove rateLimiting from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get audit",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/audit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "audit"
                  ]
                },
                "description": "Retrieve audit from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace audit",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/audit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "audit"
                  ]
                },
                "description": "Create or replace audit on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update audit",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/audit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "audit"
                  ]
                },
                "description": "Partially update audit on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete audit",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/audit",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "audit"
                  ]
                },
                "description": "Remove audit from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get resources",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/resources",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "resources"
                  ]
                },
                "description": "Retrieve resources from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace resources",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/resources",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "resources"
                  ]
                },
                "description": "Create or replace resources on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update resources",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/resources",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "resources"
                  ]
                },
                "description": "Partially update resources on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete resources",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/resources",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "resources"
                  ]
                },
                "description": "Remove resources from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/resources/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "resources",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/resources/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "resources",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/resources/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "resources",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/webui/resources/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "webui",
                    "resources",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get restconf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf"
                  ]
                },
                "description": "Retrieve restconf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace restconf",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf"
                  ]
                },
                "description": "Create or replace restconf on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"showHidden\": true,\n  \"rootResource\": \"configured-value\",\n  \"schemaServerUrl\": \"https://10.1.1.1/restconf\",\n  \"tokenResponse\": {\n    \"xAuthToken\": true,\n    \"tokenCookie\": {\n      \"name\": \"example-1\",\n      \"directives\": \"configured-value\"\n    }\n  },\n  \"customHeaders\": {\n    \"header\": [\n      {\n        \"name\": {},\n        \"value\": {}\n      }\n    ]\n  },\n  \"xFrameOptions\": \"configured-value\",\n  \"xContentTypeOptions\": \"configured-value\",\n  \"xXssProtection\": \"configured-value\",\n  \"strictTransportSecurity\": \"https://10.1.1.1/restconf\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update restconf",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf"
                  ]
                },
                "description": "Partially update restconf on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"showHidden\": true,\n  \"rootResource\": \"configured-value\",\n  \"schemaServerUrl\": \"https://10.1.1.1/restconf\",\n  \"tokenResponse\": {\n    \"xAuthToken\": true,\n    \"tokenCookie\": {\n      \"name\": \"example-1\",\n      \"directives\": \"configured-value\"\n    }\n  },\n  \"customHeaders\": {\n    \"header\": [\n      {\n        \"name\": {},\n        \"value\": {}\n      }\n    ]\n  },\n  \"xFrameOptions\": \"configured-value\",\n  \"xContentTypeOptions\": \"configured-value\",\n  \"xXssProtection\": \"configured-value\",\n  \"strictTransportSecurity\": \"https://10.1.1.1/restconf\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete restconf",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf"
                  ]
                },
                "description": "Remove restconf from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get showHidden",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/showHidden",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "showHidden"
                  ]
                },
                "description": "Retrieve showHidden from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace showHidden",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/showHidden",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "showHidden"
                  ]
                },
                "description": "Create or replace showHidden on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update showHidden",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/showHidden",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "showHidden"
                  ]
                },
                "description": "Partially update showHidden on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete showHidden",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/showHidden",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "showHidden"
                  ]
                },
                "description": "Remove showHidden from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rootResource",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/rootResource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "rootResource"
                  ]
                },
                "description": "Retrieve rootResource from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rootResource",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/rootResource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "rootResource"
                  ]
                },
                "description": "Create or replace rootResource on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rootResource",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/rootResource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "rootResource"
                  ]
                },
                "description": "Partially update rootResource on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rootResource",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/rootResource",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "rootResource"
                  ]
                },
                "description": "Remove rootResource from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get schemaServerUrl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/schemaServerUrl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "schemaServerUrl"
                  ]
                },
                "description": "Retrieve schemaServerUrl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace schemaServerUrl",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/schemaServerUrl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "schemaServerUrl"
                  ]
                },
                "description": "Create or replace schemaServerUrl on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update schemaServerUrl",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/schemaServerUrl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "schemaServerUrl"
                  ]
                },
                "description": "Partially update schemaServerUrl on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete schemaServerUrl",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/schemaServerUrl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "schemaServerUrl"
                  ]
                },
                "description": "Remove schemaServerUrl from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenResponse",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/tokenResponse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "tokenResponse"
                  ]
                },
                "description": "Retrieve tokenResponse from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tokenResponse",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/tokenResponse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "tokenResponse"
                  ]
                },
                "description": "Create or replace tokenResponse on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"xAuthToken\": true,\n  \"tokenCookie\": {\n    \"name\": \"example-1\",\n    \"directives\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tokenResponse",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/tokenResponse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "tokenResponse"
                  ]
                },
                "description": "Partially update tokenResponse on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"xAuthToken\": true,\n  \"tokenCookie\": {\n    \"name\": \"example-1\",\n    \"directives\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tokenResponse",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/tokenResponse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "tokenResponse"
                  ]
                },
                "description": "Remove tokenResponse from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get xAuthToken",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/tokenResponse/xAuthToken",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "tokenResponse",
                    "xAuthToken"
                  ]
                },
                "description": "Retrieve xAuthToken from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace xAuthToken",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/tokenResponse/xAuthToken",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "tokenResponse",
                    "xAuthToken"
                  ]
                },
                "description": "Create or replace xAuthToken on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update xAuthToken",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/tokenResponse/xAuthToken",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "tokenResponse",
                    "xAuthToken"
                  ]
                },
                "description": "Partially update xAuthToken on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete xAuthToken",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/tokenResponse/xAuthToken",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "tokenResponse",
                    "xAuthToken"
                  ]
                },
                "description": "Remove xAuthToken from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tokenCookie",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/tokenResponse/tokenCookie",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "tokenResponse",
                    "tokenCookie"
                  ]
                },
                "description": "Retrieve tokenCookie from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tokenCookie",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/tokenResponse/tokenCookie",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "tokenResponse",
                    "tokenCookie"
                  ]
                },
                "description": "Create or replace tokenCookie on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"name\": \"example-1\",\n  \"directives\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tokenCookie",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/tokenResponse/tokenCookie",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "tokenResponse",
                    "tokenCookie"
                  ]
                },
                "description": "Partially update tokenCookie on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"name\": \"example-1\",\n  \"directives\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tokenCookie",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/tokenResponse/tokenCookie",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "tokenResponse",
                    "tokenCookie"
                  ]
                },
                "description": "Remove tokenCookie from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get customHeaders",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/customHeaders",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "customHeaders"
                  ]
                },
                "description": "Retrieve customHeaders from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace customHeaders",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/customHeaders",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "customHeaders"
                  ]
                },
                "description": "Create or replace customHeaders on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"header\": [\n    {\n      \"name\": \"example-1\",\n      \"value\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update customHeaders",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/customHeaders",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "customHeaders"
                  ]
                },
                "description": "Partially update customHeaders on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"header\": [\n    {\n      \"name\": \"example-1\",\n      \"value\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete customHeaders",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/customHeaders",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "customHeaders"
                  ]
                },
                "description": "Remove customHeaders from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get header",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/customHeaders/header",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "customHeaders",
                    "header"
                  ]
                },
                "description": "Retrieve header from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace header",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/customHeaders/header",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "customHeaders",
                    "header"
                  ]
                },
                "description": "Create or replace header on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"value\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update header",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/customHeaders/header",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "customHeaders",
                    "header"
                  ]
                },
                "description": "Partially update header on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"value\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete header",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/customHeaders/header",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "customHeaders",
                    "header"
                  ]
                },
                "description": "Remove header from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get header",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/customHeaders/header={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "customHeaders",
                    "header=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Retrieve header from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace header",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/customHeaders/header={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "customHeaders",
                    "header=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Create or replace header on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"value\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update header",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/customHeaders/header={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "customHeaders",
                    "header=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Partially update header on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"name\": \"example-1\",\n    \"value\": \"configured-value\"\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete header",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/customHeaders/header={name}",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "customHeaders",
                    "header=:name"
                  ],
                  "variable": [
                    {
                      "key": "name",
                      "value": "",
                      "description": "Path parameter: name"
                    }
                  ]
                },
                "description": "Remove header from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get xFrameOptions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/xFrameOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "xFrameOptions"
                  ]
                },
                "description": "Retrieve xFrameOptions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace xFrameOptions",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/xFrameOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "xFrameOptions"
                  ]
                },
                "description": "Create or replace xFrameOptions on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update xFrameOptions",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/xFrameOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "xFrameOptions"
                  ]
                },
                "description": "Partially update xFrameOptions on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete xFrameOptions",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/xFrameOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "xFrameOptions"
                  ]
                },
                "description": "Remove xFrameOptions from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get xContentTypeOptions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/xContentTypeOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "xContentTypeOptions"
                  ]
                },
                "description": "Retrieve xContentTypeOptions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace xContentTypeOptions",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/xContentTypeOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "xContentTypeOptions"
                  ]
                },
                "description": "Create or replace xContentTypeOptions on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update xContentTypeOptions",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/xContentTypeOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "xContentTypeOptions"
                  ]
                },
                "description": "Partially update xContentTypeOptions on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete xContentTypeOptions",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/xContentTypeOptions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "xContentTypeOptions"
                  ]
                },
                "description": "Remove xContentTypeOptions from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get xXssProtection",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/xXssProtection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "xXssProtection"
                  ]
                },
                "description": "Retrieve xXssProtection from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace xXssProtection",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/xXssProtection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "xXssProtection"
                  ]
                },
                "description": "Create or replace xXssProtection on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update xXssProtection",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/xXssProtection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "xXssProtection"
                  ]
                },
                "description": "Partially update xXssProtection on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete xXssProtection",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/xXssProtection",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "xXssProtection"
                  ]
                },
                "description": "Remove xXssProtection from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get strictTransportSecurity",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/strictTransportSecurity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "strictTransportSecurity"
                  ]
                },
                "description": "Retrieve strictTransportSecurity from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace strictTransportSecurity",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/strictTransportSecurity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "strictTransportSecurity"
                  ]
                },
                "description": "Create or replace strictTransportSecurity on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update strictTransportSecurity",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/strictTransportSecurity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "strictTransportSecurity"
                  ]
                },
                "description": "Partially update strictTransportSecurity on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete strictTransportSecurity",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/strictTransportSecurity",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "strictTransportSecurity"
                  ]
                },
                "description": "Remove strictTransportSecurity from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get contentSecurityPolicy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/contentSecurityPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "contentSecurityPolicy"
                  ]
                },
                "description": "Retrieve contentSecurityPolicy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace contentSecurityPolicy",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/contentSecurityPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "contentSecurityPolicy"
                  ]
                },
                "description": "Create or replace contentSecurityPolicy on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update contentSecurityPolicy",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/contentSecurityPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "contentSecurityPolicy"
                  ]
                },
                "description": "Partially update contentSecurityPolicy on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"https://10.1.1.1/restconf\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete contentSecurityPolicy",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/contentSecurityPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "contentSecurityPolicy"
                  ]
                },
                "description": "Remove contentSecurityPolicy from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get crossOriginEmbedderPolicy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/crossOriginEmbedderPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "crossOriginEmbedderPolicy"
                  ]
                },
                "description": "Retrieve crossOriginEmbedderPolicy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace crossOriginEmbedderPolicy",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/crossOriginEmbedderPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "crossOriginEmbedderPolicy"
                  ]
                },
                "description": "Create or replace crossOriginEmbedderPolicy on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update crossOriginEmbedderPolicy",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/crossOriginEmbedderPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "crossOriginEmbedderPolicy"
                  ]
                },
                "description": "Partially update crossOriginEmbedderPolicy on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete crossOriginEmbedderPolicy",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/crossOriginEmbedderPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "crossOriginEmbedderPolicy"
                  ]
                },
                "description": "Remove crossOriginEmbedderPolicy from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get crossOriginOpenerPolicy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/crossOriginOpenerPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "crossOriginOpenerPolicy"
                  ]
                },
                "description": "Retrieve crossOriginOpenerPolicy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace crossOriginOpenerPolicy",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/crossOriginOpenerPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "crossOriginOpenerPolicy"
                  ]
                },
                "description": "Create or replace crossOriginOpenerPolicy on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update crossOriginOpenerPolicy",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/crossOriginOpenerPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "crossOriginOpenerPolicy"
                  ]
                },
                "description": "Partially update crossOriginOpenerPolicy on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete crossOriginOpenerPolicy",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/crossOriginOpenerPolicy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "crossOriginOpenerPolicy"
                  ]
                },
                "description": "Remove crossOriginOpenerPolicy from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get wasmScriptPolicyPattern",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/wasmScriptPolicyPattern",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "wasmScriptPolicyPattern"
                  ]
                },
                "description": "Retrieve wasmScriptPolicyPattern from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace wasmScriptPolicyPattern",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/wasmScriptPolicyPattern",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "wasmScriptPolicyPattern"
                  ]
                },
                "description": "Create or replace wasmScriptPolicyPattern on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update wasmScriptPolicyPattern",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/wasmScriptPolicyPattern",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "wasmScriptPolicyPattern"
                  ]
                },
                "description": "Partially update wasmScriptPolicyPattern on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete wasmScriptPolicyPattern",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/wasmScriptPolicyPattern",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "wasmScriptPolicyPattern"
                  ]
                },
                "description": "Remove wasmScriptPolicyPattern from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get requireModuleName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/requireModuleName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "requireModuleName"
                  ]
                },
                "description": "Retrieve requireModuleName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace requireModuleName",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/requireModuleName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "requireModuleName"
                  ]
                },
                "description": "Create or replace requireModuleName on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update requireModuleName",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/requireModuleName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "requireModuleName"
                  ]
                },
                "description": "Partially update requireModuleName on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete requireModuleName",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/requireModuleName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "requireModuleName"
                  ]
                },
                "description": "Remove requireModuleName from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/requireModuleName/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "requireModuleName",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/requireModuleName/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "requireModuleName",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/requireModuleName/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "requireModuleName",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/requireModuleName/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "requireModuleName",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get transport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "transport"
                  ]
                },
                "description": "Retrieve transport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace transport",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "transport"
                  ]
                },
                "description": "Create or replace transport on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"tcp\": {\n    \"enabled\": true,\n    \"ip\": \"10.1.1.1\",\n    \"port\": \"443\",\n    \"netns\": \"configured-value\",\n    \"vrf\": \"default\",\n    \"extraIpPorts\": [\n      \"configured-value\"\n    ],\n    \"haPrimaryListen\": [\n      \"configured-value\"\n    ],\n    \"dscp\": \"46\"\n  },\n  \"ssl\": {\n    \"enabled\": true,\n    \"ip\": \"10.1.1.1\",\n    \"port\": \"443\",\n    \"netns\": \"configured-value\",\n    \"vrf\": \"default\",\n    \"extraIpPorts\": [\n      \"configured-value\"\n    ],\n    \"haPrimaryListen\": [\n      \"configured-value\"\n    ],\n    \"dscp\": \"46\",\n    \"keyFile\": \"configured-value\",\n    \"certFile\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update transport",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "transport"
                  ]
                },
                "description": "Partially update transport on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"tcp\": {\n    \"enabled\": true,\n    \"ip\": \"10.1.1.1\",\n    \"port\": \"443\",\n    \"netns\": \"configured-value\",\n    \"vrf\": \"default\",\n    \"extraIpPorts\": [\n      \"configured-value\"\n    ],\n    \"haPrimaryListen\": [\n      \"configured-value\"\n    ],\n    \"dscp\": \"46\"\n  },\n  \"ssl\": {\n    \"enabled\": true,\n    \"ip\": \"10.1.1.1\",\n    \"port\": \"443\",\n    \"netns\": \"configured-value\",\n    \"vrf\": \"default\",\n    \"extraIpPorts\": [\n      \"configured-value\"\n    ],\n    \"haPrimaryListen\": [\n      \"configured-value\"\n    ],\n    \"dscp\": \"46\",\n    \"keyFile\": \"configured-value\",\n    \"certFile\": \"configured-value\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete transport",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "transport"
                  ]
                },
                "description": "Remove transport from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/transport/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "transport",
                    "tcp"
                  ]
                },
                "description": "Retrieve tcp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tcp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/transport/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "transport",
                    "tcp"
                  ]
                },
                "description": "Create or replace tcp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"extraIpPorts\": [\n    \"configured-value\"\n  ],\n  \"haPrimaryListen\": [\n    \"configured-value\"\n  ],\n  \"dscp\": \"46\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tcp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/transport/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "transport",
                    "tcp"
                  ]
                },
                "description": "Partially update tcp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"extraIpPorts\": [\n    \"configured-value\"\n  ],\n  \"haPrimaryListen\": [\n    \"configured-value\"\n  ],\n  \"dscp\": \"46\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tcp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/transport/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "transport",
                    "tcp"
                  ]
                },
                "description": "Remove tcp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ssl",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/transport/ssl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "transport",
                    "ssl"
                  ]
                },
                "description": "Retrieve ssl from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ssl",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/transport/ssl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "transport",
                    "ssl"
                  ]
                },
                "description": "Create or replace ssl on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"extraIpPorts\": [\n    \"configured-value\"\n  ],\n  \"haPrimaryListen\": [\n    \"configured-value\"\n  ],\n  \"dscp\": \"46\",\n  \"keyFile\": \"configured-value\",\n  \"certFile\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ssl",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/transport/ssl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "transport",
                    "ssl"
                  ]
                },
                "description": "Partially update ssl on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"extraIpPorts\": [\n    \"configured-value\"\n  ],\n  \"haPrimaryListen\": [\n    \"configured-value\"\n  ],\n  \"dscp\": \"46\",\n  \"keyFile\": \"configured-value\",\n  \"certFile\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ssl",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/restconf/transport/ssl",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "restconf",
                    "transport",
                    "ssl"
                  ]
                },
                "description": "Remove ssl from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get proxyForwarding",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding"
                  ]
                },
                "description": "Retrieve proxyForwarding from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace proxyForwarding",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding"
                  ]
                },
                "description": "Create or replace proxyForwarding on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"autoLogin\": true,\n  \"proxy\": [\n    {\n      \"target\": \"configured-value\",\n      \"address\": \"10.1.1.1\",\n      \"netconf\": {\n        \"ssh\": {}\n      },\n      \"cli\": {\n        \"ssh\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update proxyForwarding",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding"
                  ]
                },
                "description": "Partially update proxyForwarding on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"autoLogin\": true,\n  \"proxy\": [\n    {\n      \"target\": \"configured-value\",\n      \"address\": \"10.1.1.1\",\n      \"netconf\": {\n        \"ssh\": {}\n      },\n      \"cli\": {\n        \"ssh\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete proxyForwarding",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding"
                  ]
                },
                "description": "Remove proxyForwarding from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get autoLogin",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/autoLogin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "autoLogin"
                  ]
                },
                "description": "Retrieve autoLogin from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace autoLogin",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/autoLogin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "autoLogin"
                  ]
                },
                "description": "Create or replace autoLogin on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update autoLogin",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/autoLogin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "autoLogin"
                  ]
                },
                "description": "Partially update autoLogin on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete autoLogin",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/autoLogin",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "autoLogin"
                  ]
                },
                "description": "Remove autoLogin from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get proxy",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy"
                  ]
                },
                "description": "Retrieve proxy from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace proxy",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy"
                  ]
                },
                "description": "Create or replace proxy on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"target\": \"configured-value\",\n    \"address\": \"10.1.1.1\",\n    \"netconf\": {\n      \"ssh\": {\n        \"port\": {}\n      }\n    },\n    \"cli\": {\n      \"ssh\": {\n        \"port\": {}\n      }\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update proxy",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy"
                  ]
                },
                "description": "Partially update proxy on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"target\": \"configured-value\",\n    \"address\": \"10.1.1.1\",\n    \"netconf\": {\n      \"ssh\": {\n        \"port\": {}\n      }\n    },\n    \"cli\": {\n      \"ssh\": {\n        \"port\": {}\n      }\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete proxy",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy"
                  ]
                },
                "description": "Remove proxy from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get target",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy/target",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy",
                    "target"
                  ]
                },
                "description": "Retrieve target from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace target",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy/target",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy",
                    "target"
                  ]
                },
                "description": "Create or replace target on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update target",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy/target",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy",
                    "target"
                  ]
                },
                "description": "Partially update target on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete target",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy/target",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy",
                    "target"
                  ]
                },
                "description": "Remove target from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get address",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy",
                    "address"
                  ]
                },
                "description": "Retrieve address from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace address",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy",
                    "address"
                  ]
                },
                "description": "Create or replace address on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update address",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy",
                    "address"
                  ]
                },
                "description": "Partially update address on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete address",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy/address",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy",
                    "address"
                  ]
                },
                "description": "Remove address from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get netconf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy/netconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy",
                    "netconf"
                  ]
                },
                "description": "Retrieve netconf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace netconf",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy/netconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy",
                    "netconf"
                  ]
                },
                "description": "Create or replace netconf on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ssh\": {\n    \"port\": \"443\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update netconf",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy/netconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy",
                    "netconf"
                  ]
                },
                "description": "Partially update netconf on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ssh\": {\n    \"port\": \"443\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete netconf",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy/netconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy",
                    "netconf"
                  ]
                },
                "description": "Remove netconf from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get cli",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy/cli",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy",
                    "cli"
                  ]
                },
                "description": "Retrieve cli from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace cli",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy/cli",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy",
                    "cli"
                  ]
                },
                "description": "Create or replace cli on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ssh\": {\n    \"port\": \"443\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update cli",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy/cli",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy",
                    "cli"
                  ]
                },
                "description": "Partially update cli on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ssh\": {\n    \"port\": \"443\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete cli",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/proxyForwarding/proxy/cli",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "proxyForwarding",
                    "proxy",
                    "cli"
                  ]
                },
                "description": "Remove cli from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpAgent",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent"
                  ]
                },
                "description": "Retrieve snmpAgent from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace snmpAgent",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent"
                  ]
                },
                "description": "Create or replace snmpAgent on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"extraIpPorts\": [\n    \"configured-value\"\n  ],\n  \"dscp\": \"46\",\n  \"mibs\": {\n    \"file\": [\n      \"configured-value\"\n    ],\n    \"fromLoadPath\": true\n  },\n  \"temporaryStorageTime\": 1,\n  \"snmpVersions\": {\n    \"v1\": true,\n    \"v2c\": true,\n    \"v3\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update snmpAgent",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent"
                  ]
                },
                "description": "Partially update snmpAgent on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"extraIpPorts\": [\n    \"configured-value\"\n  ],\n  \"dscp\": \"46\",\n  \"mibs\": {\n    \"file\": [\n      \"configured-value\"\n    ],\n    \"fromLoadPath\": true\n  },\n  \"temporaryStorageTime\": 1,\n  \"snmpVersions\": {\n    \"v1\": true,\n    \"v2c\": true,\n    \"v3\": true\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete snmpAgent",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent"
                  ]
                },
                "description": "Remove snmpAgent from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ip",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "ip"
                  ]
                },
                "description": "Retrieve ip from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ip",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "ip"
                  ]
                },
                "description": "Create or replace ip on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ip",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "ip"
                  ]
                },
                "description": "Partially update ip on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10.1.1.1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ip",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/ip",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "ip"
                  ]
                },
                "description": "Remove ip from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get port",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "port"
                  ]
                },
                "description": "Retrieve port from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace port",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "port"
                  ]
                },
                "description": "Create or replace port on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"443\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update port",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "port"
                  ]
                },
                "description": "Partially update port on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"443\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete port",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/port",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "port"
                  ]
                },
                "description": "Remove port from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get netns",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/netns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "netns"
                  ]
                },
                "description": "Retrieve netns from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace netns",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/netns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "netns"
                  ]
                },
                "description": "Create or replace netns on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update netns",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/netns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "netns"
                  ]
                },
                "description": "Partially update netns on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete netns",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/netns",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "netns"
                  ]
                },
                "description": "Remove netns from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vrf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/vrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "vrf"
                  ]
                },
                "description": "Retrieve vrf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vrf",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/vrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "vrf"
                  ]
                },
                "description": "Create or replace vrf on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vrf",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/vrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "vrf"
                  ]
                },
                "description": "Partially update vrf on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"default\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vrf",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/vrf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "vrf"
                  ]
                },
                "description": "Remove vrf from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get extraIpPorts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/extraIpPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "extraIpPorts"
                  ]
                },
                "description": "Retrieve extraIpPorts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace extraIpPorts",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/extraIpPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "extraIpPorts"
                  ]
                },
                "description": "Create or replace extraIpPorts on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update extraIpPorts",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/extraIpPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "extraIpPorts"
                  ]
                },
                "description": "Partially update extraIpPorts on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete extraIpPorts",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/extraIpPorts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "extraIpPorts"
                  ]
                },
                "description": "Remove extraIpPorts from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dscp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "dscp"
                  ]
                },
                "description": "Retrieve dscp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dscp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "dscp"
                  ]
                },
                "description": "Create or replace dscp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"46\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dscp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "dscp"
                  ]
                },
                "description": "Partially update dscp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"46\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dscp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/dscp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "dscp"
                  ]
                },
                "description": "Remove dscp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get mibs",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/mibs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "mibs"
                  ]
                },
                "description": "Retrieve mibs from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace mibs",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/mibs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "mibs"
                  ]
                },
                "description": "Create or replace mibs on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"file\": [\n    \"configured-value\"\n  ],\n  \"fromLoadPath\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update mibs",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/mibs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "mibs"
                  ]
                },
                "description": "Partially update mibs on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"file\": [\n    \"configured-value\"\n  ],\n  \"fromLoadPath\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete mibs",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/mibs",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "mibs"
                  ]
                },
                "description": "Remove mibs from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get file",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/mibs/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "mibs",
                    "file"
                  ]
                },
                "description": "Retrieve file from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace file",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/mibs/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "mibs",
                    "file"
                  ]
                },
                "description": "Create or replace file on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update file",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/mibs/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "mibs",
                    "file"
                  ]
                },
                "description": "Partially update file on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete file",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/mibs/file",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "mibs",
                    "file"
                  ]
                },
                "description": "Remove file from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get fromLoadPath",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/mibs/fromLoadPath",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "mibs",
                    "fromLoadPath"
                  ]
                },
                "description": "Retrieve fromLoadPath from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace fromLoadPath",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/mibs/fromLoadPath",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "mibs",
                    "fromLoadPath"
                  ]
                },
                "description": "Create or replace fromLoadPath on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update fromLoadPath",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/mibs/fromLoadPath",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "mibs",
                    "fromLoadPath"
                  ]
                },
                "description": "Partially update fromLoadPath on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete fromLoadPath",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/mibs/fromLoadPath",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "mibs",
                    "fromLoadPath"
                  ]
                },
                "description": "Remove fromLoadPath from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get temporaryStorageTime",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/temporaryStorageTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "temporaryStorageTime"
                  ]
                },
                "description": "Retrieve temporaryStorageTime from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace temporaryStorageTime",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/temporaryStorageTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "temporaryStorageTime"
                  ]
                },
                "description": "Create or replace temporaryStorageTime on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update temporaryStorageTime",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/temporaryStorageTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "temporaryStorageTime"
                  ]
                },
                "description": "Partially update temporaryStorageTime on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete temporaryStorageTime",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/temporaryStorageTime",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "temporaryStorageTime"
                  ]
                },
                "description": "Remove temporaryStorageTime from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpVersions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpVersions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpVersions"
                  ]
                },
                "description": "Retrieve snmpVersions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace snmpVersions",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpVersions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpVersions"
                  ]
                },
                "description": "Create or replace snmpVersions on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"v1\": true,\n  \"v2c\": true,\n  \"v3\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update snmpVersions",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpVersions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpVersions"
                  ]
                },
                "description": "Partially update snmpVersions on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"v1\": true,\n  \"v2c\": true,\n  \"v3\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete snmpVersions",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpVersions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpVersions"
                  ]
                },
                "description": "Remove snmpVersions from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get v1",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpVersions/v1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpVersions",
                    "v1"
                  ]
                },
                "description": "Retrieve v1 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace v1",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpVersions/v1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpVersions",
                    "v1"
                  ]
                },
                "description": "Create or replace v1 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update v1",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpVersions/v1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpVersions",
                    "v1"
                  ]
                },
                "description": "Partially update v1 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete v1",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpVersions/v1",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpVersions",
                    "v1"
                  ]
                },
                "description": "Remove v1 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get v2c",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpVersions/v2c",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpVersions",
                    "v2c"
                  ]
                },
                "description": "Retrieve v2c from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace v2c",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpVersions/v2c",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpVersions",
                    "v2c"
                  ]
                },
                "description": "Create or replace v2c on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update v2c",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpVersions/v2c",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpVersions",
                    "v2c"
                  ]
                },
                "description": "Partially update v2c on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete v2c",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpVersions/v2c",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpVersions",
                    "v2c"
                  ]
                },
                "description": "Remove v2c from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get v3",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpVersions/v3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpVersions",
                    "v3"
                  ]
                },
                "description": "Retrieve v3 from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace v3",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpVersions/v3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpVersions",
                    "v3"
                  ]
                },
                "description": "Create or replace v3 on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update v3",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpVersions/v3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpVersions",
                    "v3"
                  ]
                },
                "description": "Partially update v3 on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete v3",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpVersions/v3",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpVersions",
                    "v3"
                  ]
                },
                "description": "Remove v3 from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpEngine",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpEngine",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpEngine"
                  ]
                },
                "description": "Retrieve snmpEngine from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace snmpEngine",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpEngine",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpEngine"
                  ]
                },
                "description": "Create or replace snmpEngine on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"snmpEngineID\": \"1\",\n  \"snmpEngineMaxMessageSize\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update snmpEngine",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpEngine",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpEngine"
                  ]
                },
                "description": "Partially update snmpEngine on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"snmpEngineID\": \"1\",\n  \"snmpEngineMaxMessageSize\": 1\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete snmpEngine",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpEngine",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpEngine"
                  ]
                },
                "description": "Remove snmpEngine from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpEngineID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpEngine/snmpEngineID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpEngine",
                    "snmpEngineID"
                  ]
                },
                "description": "Retrieve snmpEngineID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace snmpEngineID",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpEngine/snmpEngineID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpEngine",
                    "snmpEngineID"
                  ]
                },
                "description": "Create or replace snmpEngineID on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update snmpEngineID",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpEngine/snmpEngineID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpEngine",
                    "snmpEngineID"
                  ]
                },
                "description": "Partially update snmpEngineID on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete snmpEngineID",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpEngine/snmpEngineID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpEngine",
                    "snmpEngineID"
                  ]
                },
                "description": "Remove snmpEngineID from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get snmpEngineMaxMessageSize",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpEngine/snmpEngineMaxMessageSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpEngine",
                    "snmpEngineMaxMessageSize"
                  ]
                },
                "description": "Retrieve snmpEngineMaxMessageSize from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace snmpEngineMaxMessageSize",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpEngine/snmpEngineMaxMessageSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpEngine",
                    "snmpEngineMaxMessageSize"
                  ]
                },
                "description": "Create or replace snmpEngineMaxMessageSize on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update snmpEngineMaxMessageSize",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpEngine/snmpEngineMaxMessageSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpEngine",
                    "snmpEngineMaxMessageSize"
                  ]
                },
                "description": "Partially update snmpEngineMaxMessageSize on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete snmpEngineMaxMessageSize",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/snmpEngine/snmpEngineMaxMessageSize",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "snmpEngine",
                    "snmpEngineMaxMessageSize"
                  ]
                },
                "description": "Remove snmpEngineMaxMessageSize from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sessionIgnorePort",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/sessionIgnorePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "sessionIgnorePort"
                  ]
                },
                "description": "Retrieve sessionIgnorePort from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sessionIgnorePort",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/sessionIgnorePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "sessionIgnorePort"
                  ]
                },
                "description": "Create or replace sessionIgnorePort on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sessionIgnorePort",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/sessionIgnorePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "sessionIgnorePort"
                  ]
                },
                "description": "Partially update sessionIgnorePort on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sessionIgnorePort",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/sessionIgnorePort",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "sessionIgnorePort"
                  ]
                },
                "description": "Remove sessionIgnorePort from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get authenticationFailureNotifyName",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/authenticationFailureNotifyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "authenticationFailureNotifyName"
                  ]
                },
                "description": "Retrieve authenticationFailureNotifyName from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace authenticationFailureNotifyName",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/authenticationFailureNotifyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "authenticationFailureNotifyName"
                  ]
                },
                "description": "Create or replace authenticationFailureNotifyName on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update authenticationFailureNotifyName",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/authenticationFailureNotifyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "authenticationFailureNotifyName"
                  ]
                },
                "description": "Partially update authenticationFailureNotifyName on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"example-1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete authenticationFailureNotifyName",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/authenticationFailureNotifyName",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "authenticationFailureNotifyName"
                  ]
                },
                "description": "Remove authenticationFailureNotifyName from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get candidate",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/candidate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "candidate"
                  ]
                },
                "description": "Retrieve candidate from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace candidate",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/candidate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "candidate"
                  ]
                },
                "description": "Create or replace candidate on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"maxLockWait\": \"configured-value\",\n  \"pendingChangesAction\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update candidate",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/candidate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "candidate"
                  ]
                },
                "description": "Partially update candidate on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"maxLockWait\": \"configured-value\",\n  \"pendingChangesAction\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete candidate",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/candidate",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "candidate"
                  ]
                },
                "description": "Remove candidate from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxLockWait",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/candidate/maxLockWait",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "candidate",
                    "maxLockWait"
                  ]
                },
                "description": "Retrieve maxLockWait from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxLockWait",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/candidate/maxLockWait",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "candidate",
                    "maxLockWait"
                  ]
                },
                "description": "Create or replace maxLockWait on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxLockWait",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/candidate/maxLockWait",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "candidate",
                    "maxLockWait"
                  ]
                },
                "description": "Partially update maxLockWait on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxLockWait",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/candidate/maxLockWait",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "candidate",
                    "maxLockWait"
                  ]
                },
                "description": "Remove maxLockWait from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get pendingChangesAction",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/candidate/pendingChangesAction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "candidate",
                    "pendingChangesAction"
                  ]
                },
                "description": "Retrieve pendingChangesAction from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace pendingChangesAction",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/candidate/pendingChangesAction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "candidate",
                    "pendingChangesAction"
                  ]
                },
                "description": "Create or replace pendingChangesAction on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update pendingChangesAction",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/candidate/pendingChangesAction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "candidate",
                    "pendingChangesAction"
                  ]
                },
                "description": "Partially update pendingChangesAction on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete pendingChangesAction",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/candidate/pendingChangesAction",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "candidate",
                    "pendingChangesAction"
                  ]
                },
                "description": "Remove pendingChangesAction from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get dropWhenInUse",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/dropWhenInUse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "dropWhenInUse"
                  ]
                },
                "description": "Retrieve dropWhenInUse from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace dropWhenInUse",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/dropWhenInUse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "dropWhenInUse"
                  ]
                },
                "description": "Create or replace dropWhenInUse on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update dropWhenInUse",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/dropWhenInUse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "dropWhenInUse"
                  ]
                },
                "description": "Partially update dropWhenInUse on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete dropWhenInUse",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/dropWhenInUse",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "dropWhenInUse"
                  ]
                },
                "description": "Remove dropWhenInUse from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get contexts",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/contexts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "contexts"
                  ]
                },
                "description": "Retrieve contexts from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace contexts",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/contexts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "contexts"
                  ]
                },
                "description": "Create or replace contexts on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update contexts",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/contexts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "contexts"
                  ]
                },
                "description": "Partially update contexts on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  \"configured-value\"\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete contexts",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/contexts",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "contexts"
                  ]
                },
                "description": "Remove contexts from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get system",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system"
                  ]
                },
                "description": "Retrieve system from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace system",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system"
                  ]
                },
                "description": "Create or replace system on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"sysDescr\": \"configured-value\",\n  \"sysObjectID\": \"1\",\n  \"sysServices\": 1,\n  \"sysORTable\": {\n    \"sysOREntry\": [\n      {\n        \"sysORIndex\": {},\n        \"sysORID\": {},\n        \"sysORDescr\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update system",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system"
                  ]
                },
                "description": "Partially update system on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"sysDescr\": \"configured-value\",\n  \"sysObjectID\": \"1\",\n  \"sysServices\": 1,\n  \"sysORTable\": {\n    \"sysOREntry\": [\n      {\n        \"sysORIndex\": {},\n        \"sysORID\": {},\n        \"sysORDescr\": {}\n      }\n    ]\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete system",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system"
                  ]
                },
                "description": "Remove system from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysDescr",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system/sysDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system",
                    "sysDescr"
                  ]
                },
                "description": "Retrieve sysDescr from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sysDescr",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system/sysDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system",
                    "sysDescr"
                  ]
                },
                "description": "Create or replace sysDescr on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sysDescr",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system/sysDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system",
                    "sysDescr"
                  ]
                },
                "description": "Partially update sysDescr on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sysDescr",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system/sysDescr",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system",
                    "sysDescr"
                  ]
                },
                "description": "Remove sysDescr from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysObjectID",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system/sysObjectID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system",
                    "sysObjectID"
                  ]
                },
                "description": "Retrieve sysObjectID from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sysObjectID",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system/sysObjectID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system",
                    "sysObjectID"
                  ]
                },
                "description": "Create or replace sysObjectID on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sysObjectID",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system/sysObjectID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system",
                    "sysObjectID"
                  ]
                },
                "description": "Partially update sysObjectID on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"1\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sysObjectID",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system/sysObjectID",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system",
                    "sysObjectID"
                  ]
                },
                "description": "Remove sysObjectID from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysServices",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system/sysServices",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system",
                    "sysServices"
                  ]
                },
                "description": "Retrieve sysServices from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sysServices",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system/sysServices",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system",
                    "sysServices"
                  ]
                },
                "description": "Create or replace sysServices on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sysServices",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system/sysServices",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system",
                    "sysServices"
                  ]
                },
                "description": "Partially update sysServices on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sysServices",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system/sysServices",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system",
                    "sysServices"
                  ]
                },
                "description": "Remove sysServices from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sysORTable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system/sysORTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system",
                    "sysORTable"
                  ]
                },
                "description": "Retrieve sysORTable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sysORTable",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system/sysORTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system",
                    "sysORTable"
                  ]
                },
                "description": "Create or replace sysORTable on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"sysOREntry\": [\n    {\n      \"sysORIndex\": 1,\n      \"sysORID\": \"1\",\n      \"sysORDescr\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sysORTable",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system/sysORTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system",
                    "sysORTable"
                  ]
                },
                "description": "Partially update sysORTable on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"sysOREntry\": [\n    {\n      \"sysORIndex\": 1,\n      \"sysORID\": \"1\",\n      \"sysORDescr\": \"configured-value\"\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sysORTable",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/snmpAgent/system/sysORTable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "snmpAgent",
                    "system",
                    "sysORTable"
                  ]
                },
                "description": "Remove sysORTable from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get netconf",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf"
                  ]
                },
                "description": "Retrieve netconf from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace netconf",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf"
                  ]
                },
                "description": "Create or replace netconf on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"transport\": {\n    \"sshCallHomeExecutable\": \"configured-value\",\n    \"sshCallHomeSourceAddress\": {\n      \"ipv4\": \"configured-value\",\n      \"ipv6\": \"2001:db8::1\"\n    },\n    \"ssh\": {\n      \"enabled\": true,\n      \"ip\": \"10.1.1.1\",\n      \"port\": \"443\",\n      \"netns\": \"configured-value\",\n      \"vrf\": \"default\",\n      \"extraIpPorts\": [\n        {}\n      ],\n      \"haPrimaryListen\": [\n        {}\n      ],\n      \"dscp\": \"46\",\n      \"useKeyboardInteractive\": true,\n      \"rcvPktSize\": \"configured-value\"\n    },\n    \"tcp\": {\n      \"enabled\": true,\n      \"ip\": \"10.1.1.1\",\n      \"port\": \"443\",\n      \"netns\": \"configured-value\",\n      \"vrf\": \"default\",\n      \"keepalive\": true,\n      \"extraIpPorts\": [\n        {}\n      ],\n      \"haPrimaryListen\": [\n        {}\n      ],\n      \"dscp\": \"46\"\n    }\n  },\n  \"extendedSessions\": true,\n  \"idleTimeout\": \"10:30:45\",\n  \"writeTimeout\": \"10:30:45\",\n  \"transactionReuseTimeout\": \"10:30:45\",\n  \"rpcErrors\": \"0\",\n  \"maxBatchProcesses\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update netconf",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf"
                  ]
                },
                "description": "Partially update netconf on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"transport\": {\n    \"sshCallHomeExecutable\": \"configured-value\",\n    \"sshCallHomeSourceAddress\": {\n      \"ipv4\": \"configured-value\",\n      \"ipv6\": \"2001:db8::1\"\n    },\n    \"ssh\": {\n      \"enabled\": true,\n      \"ip\": \"10.1.1.1\",\n      \"port\": \"443\",\n      \"netns\": \"configured-value\",\n      \"vrf\": \"default\",\n      \"extraIpPorts\": [\n        {}\n      ],\n      \"haPrimaryListen\": [\n        {}\n      ],\n      \"dscp\": \"46\",\n      \"useKeyboardInteractive\": true,\n      \"rcvPktSize\": \"configured-value\"\n    },\n    \"tcp\": {\n      \"enabled\": true,\n      \"ip\": \"10.1.1.1\",\n      \"port\": \"443\",\n      \"netns\": \"configured-value\",\n      \"vrf\": \"default\",\n      \"keepalive\": true,\n      \"extraIpPorts\": [\n        {}\n      ],\n      \"haPrimaryListen\": [\n        {}\n      ],\n      \"dscp\": \"46\"\n    }\n  },\n  \"extendedSessions\": true,\n  \"idleTimeout\": \"10:30:45\",\n  \"writeTimeout\": \"10:30:45\",\n  \"transactionReuseTimeout\": \"10:30:45\",\n  \"rpcErrors\": \"0\",\n  \"maxBatchProcesses\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete netconf",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf"
                  ]
                },
                "description": "Remove netconf from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get enabled",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "enabled"
                  ]
                },
                "description": "Retrieve enabled from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace enabled",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "enabled"
                  ]
                },
                "description": "Create or replace enabled on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update enabled",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "enabled"
                  ]
                },
                "description": "Partially update enabled on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete enabled",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/enabled",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "enabled"
                  ]
                },
                "description": "Remove enabled from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get transport",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport"
                  ]
                },
                "description": "Retrieve transport from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace transport",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport"
                  ]
                },
                "description": "Create or replace transport on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"sshCallHomeExecutable\": \"configured-value\",\n  \"sshCallHomeSourceAddress\": {\n    \"ipv4\": \"configured-value\",\n    \"ipv6\": \"2001:db8::1\"\n  },\n  \"ssh\": {\n    \"enabled\": true,\n    \"ip\": \"10.1.1.1\",\n    \"port\": \"443\",\n    \"netns\": \"configured-value\",\n    \"vrf\": \"default\",\n    \"extraIpPorts\": [\n      \"configured-value\"\n    ],\n    \"haPrimaryListen\": [\n      \"configured-value\"\n    ],\n    \"dscp\": \"46\",\n    \"useKeyboardInteractive\": true,\n    \"rcvPktSize\": \"configured-value\"\n  },\n  \"tcp\": {\n    \"enabled\": true,\n    \"ip\": \"10.1.1.1\",\n    \"port\": \"443\",\n    \"netns\": \"configured-value\",\n    \"vrf\": \"default\",\n    \"keepalive\": true,\n    \"extraIpPorts\": [\n      \"configured-value\"\n    ],\n    \"haPrimaryListen\": [\n      \"configured-value\"\n    ],\n    \"dscp\": \"46\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update transport",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport"
                  ]
                },
                "description": "Partially update transport on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"sshCallHomeExecutable\": \"configured-value\",\n  \"sshCallHomeSourceAddress\": {\n    \"ipv4\": \"configured-value\",\n    \"ipv6\": \"2001:db8::1\"\n  },\n  \"ssh\": {\n    \"enabled\": true,\n    \"ip\": \"10.1.1.1\",\n    \"port\": \"443\",\n    \"netns\": \"configured-value\",\n    \"vrf\": \"default\",\n    \"extraIpPorts\": [\n      \"configured-value\"\n    ],\n    \"haPrimaryListen\": [\n      \"configured-value\"\n    ],\n    \"dscp\": \"46\",\n    \"useKeyboardInteractive\": true,\n    \"rcvPktSize\": \"configured-value\"\n  },\n  \"tcp\": {\n    \"enabled\": true,\n    \"ip\": \"10.1.1.1\",\n    \"port\": \"443\",\n    \"netns\": \"configured-value\",\n    \"vrf\": \"default\",\n    \"keepalive\": true,\n    \"extraIpPorts\": [\n      \"configured-value\"\n    ],\n    \"haPrimaryListen\": [\n      \"configured-value\"\n    ],\n    \"dscp\": \"46\"\n  }\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete transport",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport"
                  ]
                },
                "description": "Remove transport from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sshCallHomeExecutable",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport/sshCallHomeExecutable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport",
                    "sshCallHomeExecutable"
                  ]
                },
                "description": "Retrieve sshCallHomeExecutable from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sshCallHomeExecutable",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport/sshCallHomeExecutable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport",
                    "sshCallHomeExecutable"
                  ]
                },
                "description": "Create or replace sshCallHomeExecutable on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sshCallHomeExecutable",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport/sshCallHomeExecutable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport",
                    "sshCallHomeExecutable"
                  ]
                },
                "description": "Partially update sshCallHomeExecutable on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sshCallHomeExecutable",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport/sshCallHomeExecutable",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport",
                    "sshCallHomeExecutable"
                  ]
                },
                "description": "Remove sshCallHomeExecutable from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get sshCallHomeSourceAddress",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport/sshCallHomeSourceAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport",
                    "sshCallHomeSourceAddress"
                  ]
                },
                "description": "Retrieve sshCallHomeSourceAddress from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace sshCallHomeSourceAddress",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport/sshCallHomeSourceAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport",
                    "sshCallHomeSourceAddress"
                  ]
                },
                "description": "Create or replace sshCallHomeSourceAddress on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv4\": \"configured-value\",\n  \"ipv6\": \"2001:db8::1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update sshCallHomeSourceAddress",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport/sshCallHomeSourceAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport",
                    "sshCallHomeSourceAddress"
                  ]
                },
                "description": "Partially update sshCallHomeSourceAddress on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"ipv4\": \"configured-value\",\n  \"ipv6\": \"2001:db8::1\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete sshCallHomeSourceAddress",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport/sshCallHomeSourceAddress",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport",
                    "sshCallHomeSourceAddress"
                  ]
                },
                "description": "Remove sshCallHomeSourceAddress from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get ssh",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport/ssh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport",
                    "ssh"
                  ]
                },
                "description": "Retrieve ssh from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace ssh",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport/ssh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport",
                    "ssh"
                  ]
                },
                "description": "Create or replace ssh on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"extraIpPorts\": [\n    \"configured-value\"\n  ],\n  \"haPrimaryListen\": [\n    \"configured-value\"\n  ],\n  \"dscp\": \"46\",\n  \"useKeyboardInteractive\": true,\n  \"rcvPktSize\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update ssh",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport/ssh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport",
                    "ssh"
                  ]
                },
                "description": "Partially update ssh on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"extraIpPorts\": [\n    \"configured-value\"\n  ],\n  \"haPrimaryListen\": [\n    \"configured-value\"\n  ],\n  \"dscp\": \"46\",\n  \"useKeyboardInteractive\": true,\n  \"rcvPktSize\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete ssh",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport/ssh",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport",
                    "ssh"
                  ]
                },
                "description": "Remove ssh from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get tcp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport",
                    "tcp"
                  ]
                },
                "description": "Retrieve tcp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace tcp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport",
                    "tcp"
                  ]
                },
                "description": "Create or replace tcp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"keepalive\": true,\n  \"extraIpPorts\": [\n    \"configured-value\"\n  ],\n  \"haPrimaryListen\": [\n    \"configured-value\"\n  ],\n  \"dscp\": \"46\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update tcp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport",
                    "tcp"
                  ]
                },
                "description": "Partially update tcp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"enabled\": true,\n  \"ip\": \"10.1.1.1\",\n  \"port\": \"443\",\n  \"netns\": \"configured-value\",\n  \"vrf\": \"default\",\n  \"keepalive\": true,\n  \"extraIpPorts\": [\n    \"configured-value\"\n  ],\n  \"haPrimaryListen\": [\n    \"configured-value\"\n  ],\n  \"dscp\": \"46\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete tcp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transport/tcp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transport",
                    "tcp"
                  ]
                },
                "description": "Remove tcp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get extendedSessions",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/extendedSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "extendedSessions"
                  ]
                },
                "description": "Retrieve extendedSessions from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace extendedSessions",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/extendedSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "extendedSessions"
                  ]
                },
                "description": "Create or replace extendedSessions on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update extendedSessions",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/extendedSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "extendedSessions"
                  ]
                },
                "description": "Partially update extendedSessions on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete extendedSessions",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/extendedSessions",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "extendedSessions"
                  ]
                },
                "description": "Remove extendedSessions from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get idleTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/idleTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "idleTimeout"
                  ]
                },
                "description": "Retrieve idleTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace idleTimeout",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/idleTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "idleTimeout"
                  ]
                },
                "description": "Create or replace idleTimeout on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update idleTimeout",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/idleTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "idleTimeout"
                  ]
                },
                "description": "Partially update idleTimeout on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete idleTimeout",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/idleTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "idleTimeout"
                  ]
                },
                "description": "Remove idleTimeout from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get writeTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/writeTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "writeTimeout"
                  ]
                },
                "description": "Retrieve writeTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace writeTimeout",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/writeTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "writeTimeout"
                  ]
                },
                "description": "Create or replace writeTimeout on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update writeTimeout",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/writeTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "writeTimeout"
                  ]
                },
                "description": "Partially update writeTimeout on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete writeTimeout",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/writeTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "writeTimeout"
                  ]
                },
                "description": "Remove writeTimeout from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get transactionReuseTimeout",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transactionReuseTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transactionReuseTimeout"
                  ]
                },
                "description": "Retrieve transactionReuseTimeout from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace transactionReuseTimeout",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transactionReuseTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transactionReuseTimeout"
                  ]
                },
                "description": "Create or replace transactionReuseTimeout on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update transactionReuseTimeout",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transactionReuseTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transactionReuseTimeout"
                  ]
                },
                "description": "Partially update transactionReuseTimeout on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"10:30:45\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete transactionReuseTimeout",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/transactionReuseTimeout",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "transactionReuseTimeout"
                  ]
                },
                "description": "Remove transactionReuseTimeout from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get rpcErrors",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/rpcErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "rpcErrors"
                  ]
                },
                "description": "Retrieve rpcErrors from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace rpcErrors",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/rpcErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "rpcErrors"
                  ]
                },
                "description": "Create or replace rpcErrors on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"0\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update rpcErrors",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/rpcErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "rpcErrors"
                  ]
                },
                "description": "Partially update rpcErrors on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"0\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete rpcErrors",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/rpcErrors",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "rpcErrors"
                  ]
                },
                "description": "Remove rpcErrors from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get maxBatchProcesses",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/maxBatchProcesses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "maxBatchProcesses"
                  ]
                },
                "description": "Retrieve maxBatchProcesses from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace maxBatchProcesses",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/maxBatchProcesses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "maxBatchProcesses"
                  ]
                },
                "description": "Create or replace maxBatchProcesses on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update maxBatchProcesses",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/maxBatchProcesses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "maxBatchProcesses"
                  ]
                },
                "description": "Partially update maxBatchProcesses on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete maxBatchProcesses",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/confd_dyncfg:confdConfig/netconf/maxBatchProcesses",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "confd_dyncfg:confdConfig",
                    "netconf",
                    "maxBatchProcesses"
                  ]
                },
                "description": "Remove maxBatchProcesses from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        },
        {
          "name": "nvo",
          "description": "Cisco IOS-XE - nvo\n\nData from `nvo` module.\n\n**Root containers:** 1 (nvo-instances)\n**Paths:** 14 | **Operations:** 56\n\nSupports CRUD for read-write nodes, GET for read-only nodes.\n\nEndpoints: 14 | Operations: 56",
          "item": [
            {
              "name": "GET Get nvo-instances",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances"
                  ]
                },
                "description": "Retrieve nvo-instances from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace nvo-instances",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances"
                  ]
                },
                "description": "Create or replace nvo-instances on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"nvo-instance\": [\n    {\n      \"nvo-id\": 1,\n      \"overlay-encapsulation\": \"configured-value\",\n      \"source-interface\": \"configured-value\",\n      \"virtual-network\": {\n        \"vni-start\": {},\n        \"vni-end\": {},\n        \"multicast\": {},\n        \"routing-instance\": {},\n        \"end-host-discovery\": {},\n        \"suppress-arp\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update nvo-instances",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances"
                  ]
                },
                "description": "Partially update nvo-instances on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"nvo-instance\": [\n    {\n      \"nvo-id\": 1,\n      \"overlay-encapsulation\": \"configured-value\",\n      \"source-interface\": \"configured-value\",\n      \"virtual-network\": {\n        \"vni-start\": {},\n        \"vni-end\": {},\n        \"multicast\": {},\n        \"routing-instance\": {},\n        \"end-host-discovery\": {},\n        \"suppress-arp\": {}\n      }\n    }\n  ]\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete nvo-instances",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances"
                  ]
                },
                "description": "Remove nvo-instances from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nvo-instance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance"
                  ]
                },
                "description": "Retrieve nvo-instance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace nvo-instance",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance"
                  ]
                },
                "description": "Create or replace nvo-instance on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"nvo-id\": 1,\n    \"overlay-encapsulation\": \"configured-value\",\n    \"source-interface\": \"configured-value\",\n    \"virtual-network\": {\n      \"vni-start\": \"configured-value\",\n      \"vni-end\": \"configured-value\",\n      \"multicast\": {\n        \"multicast-group-min\": {},\n        \"multicast-group-max\": {}\n      },\n      \"routing-instance\": \"configured-value\",\n      \"end-host-discovery\": \"configured-value\",\n      \"suppress-arp\": true\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update nvo-instance",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance"
                  ]
                },
                "description": "Partially update nvo-instance on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "[\n  {\n    \"nvo-id\": 1,\n    \"overlay-encapsulation\": \"configured-value\",\n    \"source-interface\": \"configured-value\",\n    \"virtual-network\": {\n      \"vni-start\": \"configured-value\",\n      \"vni-end\": \"configured-value\",\n      \"multicast\": {\n        \"multicast-group-min\": {},\n        \"multicast-group-max\": {}\n      },\n      \"routing-instance\": \"configured-value\",\n      \"end-host-discovery\": \"configured-value\",\n      \"suppress-arp\": true\n    }\n  }\n]",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete nvo-instance",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance"
                  ]
                },
                "description": "Remove nvo-instance from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get nvo-id",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/nvo-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "nvo-id"
                  ]
                },
                "description": "Retrieve nvo-id from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace nvo-id",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/nvo-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "nvo-id"
                  ]
                },
                "description": "Create or replace nvo-id on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update nvo-id",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/nvo-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "nvo-id"
                  ]
                },
                "description": "Partially update nvo-id on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "1",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete nvo-id",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/nvo-id",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "nvo-id"
                  ]
                },
                "description": "Remove nvo-id from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get overlay-encapsulation",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/overlay-encapsulation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "overlay-encapsulation"
                  ]
                },
                "description": "Retrieve overlay-encapsulation from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace overlay-encapsulation",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/overlay-encapsulation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "overlay-encapsulation"
                  ]
                },
                "description": "Create or replace overlay-encapsulation on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update overlay-encapsulation",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/overlay-encapsulation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "overlay-encapsulation"
                  ]
                },
                "description": "Partially update overlay-encapsulation on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete overlay-encapsulation",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/overlay-encapsulation",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "overlay-encapsulation"
                  ]
                },
                "description": "Remove overlay-encapsulation from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get source-interface",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/source-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "source-interface"
                  ]
                },
                "description": "Retrieve source-interface from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace source-interface",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/source-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "source-interface"
                  ]
                },
                "description": "Create or replace source-interface on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update source-interface",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/source-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "source-interface"
                  ]
                },
                "description": "Partially update source-interface on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete source-interface",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/source-interface",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "source-interface"
                  ]
                },
                "description": "Remove source-interface from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get virtual-network",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network"
                  ]
                },
                "description": "Retrieve virtual-network from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace virtual-network",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network"
                  ]
                },
                "description": "Create or replace virtual-network on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vni-start\": \"configured-value\",\n  \"vni-end\": \"configured-value\",\n  \"multicast\": {\n    \"multicast-group-min\": \"configured-value\",\n    \"multicast-group-max\": \"configured-value\"\n  },\n  \"routing-instance\": \"configured-value\",\n  \"end-host-discovery\": \"configured-value\",\n  \"suppress-arp\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update virtual-network",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network"
                  ]
                },
                "description": "Partially update virtual-network on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"vni-start\": \"configured-value\",\n  \"vni-end\": \"configured-value\",\n  \"multicast\": {\n    \"multicast-group-min\": \"configured-value\",\n    \"multicast-group-max\": \"configured-value\"\n  },\n  \"routing-instance\": \"configured-value\",\n  \"end-host-discovery\": \"configured-value\",\n  \"suppress-arp\": true\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete virtual-network",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network"
                  ]
                },
                "description": "Remove virtual-network from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vni-start",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/vni-start",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "vni-start"
                  ]
                },
                "description": "Retrieve vni-start from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vni-start",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/vni-start",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "vni-start"
                  ]
                },
                "description": "Create or replace vni-start on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vni-start",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/vni-start",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "vni-start"
                  ]
                },
                "description": "Partially update vni-start on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vni-start",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/vni-start",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "vni-start"
                  ]
                },
                "description": "Remove vni-start from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get vni-end",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/vni-end",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "vni-end"
                  ]
                },
                "description": "Retrieve vni-end from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace vni-end",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/vni-end",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "vni-end"
                  ]
                },
                "description": "Create or replace vni-end on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update vni-end",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/vni-end",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "vni-end"
                  ]
                },
                "description": "Partially update vni-end on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete vni-end",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/vni-end",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "vni-end"
                  ]
                },
                "description": "Remove vni-end from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get multicast",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/multicast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "multicast"
                  ]
                },
                "description": "Retrieve multicast from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace multicast",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/multicast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "multicast"
                  ]
                },
                "description": "Create or replace multicast on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"multicast-group-min\": \"configured-value\",\n  \"multicast-group-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update multicast",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/multicast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "multicast"
                  ]
                },
                "description": "Partially update multicast on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "{\n  \"multicast-group-min\": \"configured-value\",\n  \"multicast-group-max\": \"configured-value\"\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete multicast",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/multicast",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "multicast"
                  ]
                },
                "description": "Remove multicast from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get multicast-group-min",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/multicast/multicast-group-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "multicast",
                    "multicast-group-min"
                  ]
                },
                "description": "Retrieve multicast-group-min from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace multicast-group-min",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/multicast/multicast-group-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "multicast",
                    "multicast-group-min"
                  ]
                },
                "description": "Create or replace multicast-group-min on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update multicast-group-min",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/multicast/multicast-group-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "multicast",
                    "multicast-group-min"
                  ]
                },
                "description": "Partially update multicast-group-min on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete multicast-group-min",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/multicast/multicast-group-min",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "multicast",
                    "multicast-group-min"
                  ]
                },
                "description": "Remove multicast-group-min from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get multicast-group-max",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/multicast/multicast-group-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "multicast",
                    "multicast-group-max"
                  ]
                },
                "description": "Retrieve multicast-group-max from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace multicast-group-max",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/multicast/multicast-group-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "multicast",
                    "multicast-group-max"
                  ]
                },
                "description": "Create or replace multicast-group-max on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update multicast-group-max",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/multicast/multicast-group-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "multicast",
                    "multicast-group-max"
                  ]
                },
                "description": "Partially update multicast-group-max on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete multicast-group-max",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/multicast/multicast-group-max",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "multicast",
                    "multicast-group-max"
                  ]
                },
                "description": "Remove multicast-group-max from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get routing-instance",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/routing-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "routing-instance"
                  ]
                },
                "description": "Retrieve routing-instance from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace routing-instance",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/routing-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "routing-instance"
                  ]
                },
                "description": "Create or replace routing-instance on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update routing-instance",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/routing-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "routing-instance"
                  ]
                },
                "description": "Partially update routing-instance on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete routing-instance",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/routing-instance",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "routing-instance"
                  ]
                },
                "description": "Remove routing-instance from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get end-host-discovery",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/end-host-discovery",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "end-host-discovery"
                  ]
                },
                "description": "Retrieve end-host-discovery from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace end-host-discovery",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/end-host-discovery",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "end-host-discovery"
                  ]
                },
                "description": "Create or replace end-host-discovery on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update end-host-discovery",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/end-host-discovery",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "end-host-discovery"
                  ]
                },
                "description": "Partially update end-host-discovery on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "\"configured-value\"",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete end-host-discovery",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/end-host-discovery",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "end-host-discovery"
                  ]
                },
                "description": "Remove end-host-discovery from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "GET Get suppress-arp",
              "request": {
                "method": "GET",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/suppress-arp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "suppress-arp"
                  ]
                },
                "description": "Retrieve suppress-arp from the device via RESTCONF.\n\nReturns the current operational or configuration state of this resource."
              },
              "response": [
                {
                  "name": "200 Successful response",
                  "status": "Successful response",
                  "code": 200,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "401 Unauthorized",
                  "status": "Unauthorized",
                  "code": 401,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Resource not found",
                  "status": "Resource not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PUT Replace suppress-arp",
              "request": {
                "method": "PUT",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/suppress-arp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "suppress-arp"
                  ]
                },
                "description": "Create or replace suppress-arp on the device.\n\nThis replaces the entire resource — any fields not included will be removed.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "201 Created",
                  "status": "Created",
                  "code": 201,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "PATCH Update suppress-arp",
              "request": {
                "method": "PATCH",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  },
                  {
                    "key": "Content-Type",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/suppress-arp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "suppress-arp"
                  ]
                },
                "description": "Partially update suppress-arp on the device.\n\nOnly the fields included in the request body are modified; other fields remain unchanged.",
                "body": {
                  "mode": "raw",
                  "raw": "true",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                }
              },
              "response": [
                {
                  "name": "204 Updated",
                  "status": "Updated",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "400 Invalid input",
                  "status": "Invalid input",
                  "code": 400,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            },
            {
              "name": "DELETE Delete suppress-arp",
              "request": {
                "method": "DELETE",
                "header": [
                  {
                    "key": "Accept",
                    "value": "application/yang-data+json"
                  }
                ],
                "url": {
                  "raw": "{{baseUrl}}/data/nvo:nvo-instances/nvo-instance/virtual-network/suppress-arp",
                  "host": [
                    "{{baseUrl}}"
                  ],
                  "path": [
                    "data",
                    "nvo:nvo-instances",
                    "nvo-instance",
                    "virtual-network",
                    "suppress-arp"
                  ]
                },
                "description": "Remove suppress-arp from the device configuration.\n\nThis deletes the resource and all descendant data."
              },
              "response": [
                {
                  "name": "204 Deleted",
                  "status": "Deleted",
                  "code": 204,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                },
                {
                  "name": "404 Not found",
                  "status": "Not found",
                  "code": 404,
                  "_postman_previewlanguage": "json",
                  "header": [],
                  "body": ""
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}